Skip to content

Commit f1330d3

Browse files
Aculnajclaude
andcommitted
feat: expand AetherAPI model lineup with real pricing
Adds 15 additional models to AetherAPI using live pricing from https://api.aetherapi.dev/v1/models: - Claude: opus-4-7, opus-4-6, sonnet-4-6 - OpenAI: gpt-5.5, gpt-5.4, gpt-5.4-mini, gpt-5.4-nano, gpt-4.1, gpt-4.1-mini - DeepSeek: v4-flash, v4-pro - MiniMax: m2.7, m2.5 - Qwen: 3.6-plus - Z.ai: glm-5.1 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 915fdf9 commit f1330d3

1 file changed

Lines changed: 197 additions & 0 deletions

File tree

packages/types/src/providers/aetherapi.ts

Lines changed: 197 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,201 @@ export const aetherapiModels = {
1515
description:
1616
"Kimi K2.6 is a state-of-the-art multimodal language model with vision and tool calling capabilities, featuring a 262K context window.",
1717
},
18+
"claude-opus-4-7": {
19+
maxTokens: 128_000,
20+
contextWindow: 200_000,
21+
supportsImages: true,
22+
supportsPromptCache: true,
23+
inputPrice: 3.5,
24+
outputPrice: 17.5,
25+
cacheWritesPrice: 3.5,
26+
cacheReadsPrice: 0.5,
27+
supportsReasoningBudget: true,
28+
description:
29+
"Claude Opus 4.7 — Anthropic's most capable model with 200K context window, advanced reasoning, and agentic capabilities.",
30+
},
31+
"claude-opus-4-6": {
32+
maxTokens: 128_000,
33+
contextWindow: 200_000,
34+
supportsImages: true,
35+
supportsPromptCache: true,
36+
inputPrice: 3.5,
37+
outputPrice: 17.5,
38+
cacheWritesPrice: 3.5,
39+
cacheReadsPrice: 0.5,
40+
supportsReasoningBudget: true,
41+
description:
42+
"Claude Opus 4.6 — Anthropic's high-capability model with exceptional reasoning, coding, and agentic performance.",
43+
},
44+
"claude-sonnet-4-6": {
45+
maxTokens: 64_000,
46+
contextWindow: 200_000,
47+
supportsImages: true,
48+
supportsPromptCache: true,
49+
inputPrice: 2.1,
50+
outputPrice: 10.5,
51+
cacheWritesPrice: 2.1,
52+
cacheReadsPrice: 0.3,
53+
supportsReasoningBudget: true,
54+
description:
55+
"Claude Sonnet 4.6 — Anthropic's balanced model with strong reasoning, vision, and tool calling at efficient pricing.",
56+
},
57+
"gpt-5.5": {
58+
maxTokens: 128_000,
59+
contextWindow: 1_050_000,
60+
supportsImages: true,
61+
supportsPromptCache: true,
62+
supportsReasoningEffort: ["none", "low", "medium", "high", "xhigh"],
63+
reasoningEffort: "none",
64+
inputPrice: 3.5,
65+
outputPrice: 21.0,
66+
cacheReadsPrice: 0.3,
67+
supportsTemperature: true,
68+
description:
69+
"GPT-5.5 — OpenAI's advanced multimodal model with 1M+ context, vision, and configurable reasoning effort.",
70+
},
71+
"gpt-5.4": {
72+
maxTokens: 128_000,
73+
contextWindow: 1_000_000,
74+
supportsImages: true,
75+
supportsPromptCache: true,
76+
supportsReasoningEffort: ["none", "low", "medium", "high", "xhigh"],
77+
reasoningEffort: "none",
78+
inputPrice: 1.7,
79+
outputPrice: 10.0,
80+
cacheReadsPrice: 0.25,
81+
supportsTemperature: true,
82+
description:
83+
"GPT-5.4 — OpenAI's powerful multimodal model with 1M context window, vision support, and reasoning capabilities.",
84+
},
85+
"gpt-5.4-mini": {
86+
maxTokens: 128_000,
87+
contextWindow: 400_000,
88+
supportsImages: true,
89+
supportsPromptCache: true,
90+
supportsReasoningEffort: ["none", "low", "medium", "high", "xhigh"],
91+
reasoningEffort: "none",
92+
inputPrice: 0.5,
93+
outputPrice: 3.0,
94+
cacheReadsPrice: 0.075,
95+
supportsTemperature: true,
96+
description:
97+
"GPT-5.4 Mini — Cost-efficient variant of GPT-5.4 with strong performance and 400K context window.",
98+
},
99+
"gpt-5.4-nano": {
100+
maxTokens: 128_000,
101+
contextWindow: 400_000,
102+
supportsImages: true,
103+
supportsPromptCache: true,
104+
supportsReasoningEffort: ["none", "low", "medium", "high", "xhigh"],
105+
reasoningEffort: "none",
106+
inputPrice: 0.14,
107+
outputPrice: 0.84,
108+
cacheReadsPrice: 0.02,
109+
supportsTemperature: true,
110+
description:
111+
"GPT-5.4 Nano — Ultra-fast, cost-effective model for lightweight tasks with 400K context window.",
112+
},
113+
"gpt-4.1": {
114+
maxTokens: 32_768,
115+
contextWindow: 1_047_576,
116+
supportsImages: true,
117+
supportsPromptCache: true,
118+
inputPrice: 1.4,
119+
outputPrice: 5.6,
120+
cacheReadsPrice: 0.5,
121+
supportsTemperature: true,
122+
description:
123+
"GPT-4.1 — OpenAI's reliable multimodal model with 1M context window and strong tool calling.",
124+
},
125+
"gpt-4.1-mini": {
126+
maxTokens: 32_768,
127+
contextWindow: 1_047_576,
128+
supportsImages: true,
129+
supportsPromptCache: true,
130+
inputPrice: 0.28,
131+
outputPrice: 1.12,
132+
cacheReadsPrice: 0.1,
133+
supportsTemperature: true,
134+
description:
135+
"GPT-4.1 Mini — Efficient variant of GPT-4.1 with 1M context and excellent cost-performance.",
136+
},
137+
"qwen3.6-plus": {
138+
maxTokens: 65_536,
139+
contextWindow: 262_144,
140+
supportsImages: false,
141+
supportsPromptCache: false,
142+
inputPrice: 0.5,
143+
outputPrice: 2.1,
144+
description:
145+
"Qwen 3.6 Plus — Alibaba's high-performance coding and reasoning model with 262K context window.",
146+
},
147+
"deepseek-v4-flash": {
148+
maxTokens: 384_000,
149+
contextWindow: 1_047_576,
150+
supportsImages: false,
151+
supportsPromptCache: true,
152+
supportsReasoningEffort: ["disable", "low", "medium", "high", "xhigh"],
153+
preserveReasoning: true,
154+
reasoningEffort: "high",
155+
inputPrice: 0.1,
156+
outputPrice: 0.19,
157+
cacheWritesPrice: 0.1,
158+
cacheReadsPrice: 0.028,
159+
description:
160+
"DeepSeek V4 Flash — Ultra-fast reasoning model with 1M context and efficient MoE architecture.",
161+
},
162+
"deepseek-v4-pro": {
163+
maxTokens: 384_000,
164+
contextWindow: 1_047_576,
165+
supportsImages: false,
166+
supportsPromptCache: true,
167+
supportsReasoningEffort: ["disable", "low", "medium", "high", "xhigh"],
168+
preserveReasoning: true,
169+
reasoningEffort: "high",
170+
inputPrice: 0.304,
171+
outputPrice: 0.6,
172+
cacheWritesPrice: 0.304,
173+
cacheReadsPrice: 0.087,
174+
description:
175+
"DeepSeek V4 Pro — Full-capability reasoning model with 1M context and advanced agentic performance.",
176+
},
177+
"minimax-m2.7": {
178+
maxTokens: 16_384,
179+
contextWindow: 204_800,
180+
supportsImages: false,
181+
supportsPromptCache: true,
182+
inputPrice: 0.21,
183+
outputPrice: 0.84,
184+
cacheWritesPrice: 0.21,
185+
preserveReasoning: true,
186+
description:
187+
"MiniMax M2.7 — Agent-optimized model with recursive self-improvement and strong coding capabilities.",
188+
},
189+
"minimax-m2.5": {
190+
maxTokens: 16_384,
191+
contextWindow: 204_800,
192+
supportsImages: false,
193+
supportsPromptCache: true,
194+
inputPrice: 0.21,
195+
outputPrice: 0.84,
196+
cacheWritesPrice: 0.21,
197+
preserveReasoning: true,
198+
description:
199+
"MiniMax M2.5 — Balanced agentic model with enhanced coding and cost-effective performance.",
200+
},
201+
"glm-5.1": {
202+
maxTokens: 131_072,
203+
contextWindow: 202_752,
204+
supportsImages: false,
205+
supportsPromptCache: true,
206+
supportsReasoningEffort: ["disable", "medium"],
207+
reasoningEffort: "medium",
208+
preserveReasoning: true,
209+
inputPrice: 1.1,
210+
outputPrice: 3.5,
211+
cacheWritesPrice: 0,
212+
description:
213+
"GLM-5.1 — Z.AI's most capable model with 202K context, 128K max output, and built-in thinking capabilities.",
214+
},
18215
} as const satisfies Record<string, ModelInfo>

0 commit comments

Comments
 (0)