Skip to content

Commit 750c856

Browse files
authored
Merge pull request anomalyco#3224 from leszek3737/zenmux-gbt-5.6_grok-4.5
feat(zenmux): Add OpenAI GPT-5.6 (Luna, Sol, Terra) and xAI Grok-4.5 models
2 parents 14ea63d + f79cd8b commit 750c856

4 files changed

Lines changed: 64 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
base_model = "openai/gpt-5.6-luna"
2+
reasoning_options = [{ type = "effort", values = ["none", "low", "medium", "high", "xhigh", "max"] }]
3+
4+
[cost]
5+
input = 1.00
6+
output = 6.00
7+
cache_read = 0.10
8+
cache_write = 1.25
9+
10+
[[cost.tiers]]
11+
tier = { size = 272_000 }
12+
input = 2.00
13+
output = 9.00
14+
cache_read = 0.20
15+
cache_write = 2.50
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
base_model = "openai/gpt-5.6-sol"
2+
reasoning_options = [{ type = "effort", values = ["none", "low", "medium", "high", "xhigh", "max"] }]
3+
4+
[cost]
5+
input = 5.00
6+
output = 30.00
7+
cache_read = 0.50
8+
cache_write = 6.25
9+
10+
[[cost.tiers]]
11+
tier = { size = 272_000 }
12+
input = 10.00
13+
output = 45.00
14+
cache_read = 1.00
15+
cache_write = 12.50
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
base_model = "openai/gpt-5.6-terra"
2+
reasoning_options = [{ type = "effort", values = ["none", "low", "medium", "high", "xhigh", "max"] }]
3+
4+
[cost]
5+
input = 2.50
6+
output = 15.00
7+
cache_read = 0.25
8+
cache_write = 3.125
9+
10+
[[cost.tiers]]
11+
tier = { size = 272_000 }
12+
input = 5.00
13+
output = 22.50
14+
cache_read = 0.50
15+
cache_write = 6.25
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
base_model = "xai/grok-4.5"
2+
3+
[[reasoning_options]]
4+
type = "effort"
5+
values = ["low", "medium", "high"]
6+
7+
[cost]
8+
input = 2
9+
output = 6
10+
cache_read = 0.5
11+
12+
[[cost.tiers]]
13+
tier = { type = "context", size = 200_000 }
14+
input = 4
15+
output = 12
16+
cache_read = 1
17+
18+
[modalities]
19+
input = ["text", "image", "pdf"]

0 commit comments

Comments
 (0)