llms-py 2.0.18__py3-none-any.whl → 2.0.33__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- llms/index.html +17 -1
- llms/llms.json +1132 -1075
- llms/main.py +561 -103
- llms/ui/Analytics.mjs +115 -104
- llms/ui/App.mjs +81 -4
- llms/ui/Avatar.mjs +61 -4
- llms/ui/Brand.mjs +29 -11
- llms/ui/ChatPrompt.mjs +163 -16
- llms/ui/Main.mjs +177 -94
- llms/ui/ModelSelector.mjs +28 -10
- llms/ui/OAuthSignIn.mjs +92 -0
- llms/ui/ProviderStatus.mjs +12 -12
- llms/ui/Recents.mjs +13 -13
- llms/ui/SettingsDialog.mjs +65 -65
- llms/ui/Sidebar.mjs +24 -19
- llms/ui/SystemPromptEditor.mjs +5 -5
- llms/ui/SystemPromptSelector.mjs +26 -6
- llms/ui/Welcome.mjs +2 -2
- llms/ui/ai.mjs +69 -5
- llms/ui/app.css +548 -34
- llms/ui/lib/servicestack-vue.mjs +9 -9
- llms/ui/markdown.mjs +8 -8
- llms/ui/tailwind.input.css +2 -0
- llms/ui/threadStore.mjs +39 -0
- llms/ui/typography.css +54 -36
- {llms_py-2.0.18.dist-info → llms_py-2.0.33.dist-info}/METADATA +403 -47
- llms_py-2.0.33.dist-info/RECORD +48 -0
- {llms_py-2.0.18.dist-info → llms_py-2.0.33.dist-info}/licenses/LICENSE +1 -2
- llms/__pycache__/__init__.cpython-312.pyc +0 -0
- llms/__pycache__/__init__.cpython-313.pyc +0 -0
- llms/__pycache__/__init__.cpython-314.pyc +0 -0
- llms/__pycache__/__main__.cpython-312.pyc +0 -0
- llms/__pycache__/__main__.cpython-314.pyc +0 -0
- llms/__pycache__/llms.cpython-312.pyc +0 -0
- llms/__pycache__/main.cpython-312.pyc +0 -0
- llms/__pycache__/main.cpython-313.pyc +0 -0
- llms/__pycache__/main.cpython-314.pyc +0 -0
- llms_py-2.0.18.dist-info/RECORD +0 -56
- {llms_py-2.0.18.dist-info → llms_py-2.0.33.dist-info}/WHEEL +0 -0
- {llms_py-2.0.18.dist-info → llms_py-2.0.33.dist-info}/entry_points.txt +0 -0
- {llms_py-2.0.18.dist-info → llms_py-2.0.33.dist-info}/top_level.txt +0 -0
llms/llms.json
CHANGED
|
@@ -1,1100 +1,1157 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"auth": {
|
|
3
|
+
"enabled": false,
|
|
4
|
+
"github": {
|
|
5
|
+
"client_id": "$GITHUB_CLIENT_ID",
|
|
6
|
+
"client_secret": "$GITHUB_CLIENT_SECRET",
|
|
7
|
+
"redirect_uri": "http://localhost:8000/auth/github/callback",
|
|
8
|
+
"restrict_to": "$GITHUB_USERS"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"defaults": {
|
|
12
|
+
"headers": {
|
|
13
|
+
"Content-Type": "application/json",
|
|
14
|
+
"User-Agent": "llms.py/1.0"
|
|
15
|
+
},
|
|
16
|
+
"text": {
|
|
17
|
+
"model": "kimi-k2",
|
|
18
|
+
"messages": [
|
|
19
|
+
{
|
|
20
|
+
"role": "user",
|
|
21
|
+
"content": [
|
|
22
|
+
{
|
|
23
|
+
"type": "text",
|
|
24
|
+
"text": ""
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"image": {
|
|
31
|
+
"model": "qwen2.5vl",
|
|
32
|
+
"messages": [
|
|
33
|
+
{
|
|
34
|
+
"role": "user",
|
|
35
|
+
"content": [
|
|
36
|
+
{
|
|
37
|
+
"type": "image_url",
|
|
38
|
+
"image_url": {
|
|
39
|
+
"url": ""
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"type": "text",
|
|
44
|
+
"text": "Describe the key features of the input image"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
},
|
|
50
|
+
"audio": {
|
|
51
|
+
"model": "gpt-4o-audio-preview",
|
|
52
|
+
"messages": [
|
|
53
|
+
{
|
|
54
|
+
"role": "user",
|
|
55
|
+
"content": [
|
|
56
|
+
{
|
|
57
|
+
"type": "input_audio",
|
|
58
|
+
"input_audio": {
|
|
59
|
+
"data": "",
|
|
60
|
+
"format": "mp3"
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"type": "text",
|
|
65
|
+
"text": "Please transcribe and summarize this audio file"
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
"file": {
|
|
72
|
+
"model": "qwen2.5vl",
|
|
73
|
+
"messages": [
|
|
74
|
+
{
|
|
75
|
+
"role": "user",
|
|
76
|
+
"content": [
|
|
77
|
+
{
|
|
78
|
+
"type": "file",
|
|
79
|
+
"file": {
|
|
80
|
+
"filename": "",
|
|
81
|
+
"file_data": ""
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": "text",
|
|
86
|
+
"text": "Please summarize this document"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"check": {
|
|
93
|
+
"messages": [
|
|
94
|
+
{
|
|
95
|
+
"role": "user",
|
|
96
|
+
"content": [
|
|
97
|
+
{
|
|
98
|
+
"type": "text",
|
|
99
|
+
"text": "1+1="
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"max_completion_tokens": 16,
|
|
105
|
+
"stream": false
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"limits": {
|
|
109
|
+
"client_max_size": 20971520
|
|
110
|
+
},
|
|
111
|
+
"convert": {
|
|
112
|
+
"image": {
|
|
113
|
+
"max_size": "1536x1024",
|
|
114
|
+
"max_length": 1572864
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"providers": {
|
|
118
|
+
"groq": {
|
|
119
|
+
"enabled": true,
|
|
120
|
+
"type": "OpenAiProvider",
|
|
121
|
+
"base_url": "https://api.groq.com/openai",
|
|
122
|
+
"api_key": "$GROQ_API_KEY",
|
|
123
|
+
"models": {
|
|
124
|
+
"allam-2-7b": "allam-2-7b",
|
|
125
|
+
"compound": "groq/compound",
|
|
126
|
+
"compound-mini": "groq/compound-mini",
|
|
127
|
+
"llama3.1:8b": "llama-3.1-8b-instant",
|
|
128
|
+
"llama3.3:70b": "llama-3.3-70b-versatile",
|
|
129
|
+
"llama4:109b": "meta-llama/llama-4-scout-17b-16e-instruct",
|
|
130
|
+
"llama4:400b": "meta-llama/llama-4-maverick-17b-128e-instruct",
|
|
131
|
+
"llama-guard-4:12b": "meta-llama/llama-guard-4-12b",
|
|
132
|
+
"llama-prompt-guard2:22m": "meta-llama/llama-prompt-guard-2-22m",
|
|
133
|
+
"llama-prompt-guard2:86m": "meta-llama/llama-prompt-guard-2-86m",
|
|
134
|
+
"kimi-k2": "moonshotai/kimi-k2-instruct-0905",
|
|
135
|
+
"gpt-oss:120b": "openai/gpt-oss-120b",
|
|
136
|
+
"gpt-oss:20b": "openai/gpt-oss-20b",
|
|
137
|
+
"qwen3:32b": "qwen/qwen3-32b"
|
|
138
|
+
},
|
|
139
|
+
"default_pricing": {
|
|
140
|
+
"input": "0",
|
|
141
|
+
"output": "0"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"google_free": {
|
|
145
|
+
"enabled": true,
|
|
146
|
+
"type": "GoogleProvider",
|
|
147
|
+
"api_key": "$GOOGLE_FREE_API_KEY",
|
|
148
|
+
"models": {
|
|
149
|
+
"gemini-flash-latest": "gemini-flash-latest",
|
|
150
|
+
"gemini-flash-lite-latest": "gemini-flash-lite-latest",
|
|
151
|
+
"gemini-2.5-pro": "gemini-2.5-pro",
|
|
152
|
+
"gemini-2.5-flash": "gemini-2.5-flash",
|
|
153
|
+
"gemini-2.5-flash-lite": "gemini-2.5-flash-lite"
|
|
154
|
+
},
|
|
155
|
+
"default_pricing": {
|
|
156
|
+
"input": "0",
|
|
157
|
+
"output": "0"
|
|
158
|
+
},
|
|
159
|
+
"safety_settings": [
|
|
160
|
+
{
|
|
161
|
+
"category": "HARM_CATEGORY_DANGEROUS_CONTENT",
|
|
162
|
+
"threshold": "BLOCK_ONLY_HIGH"
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"thinking_config": {
|
|
166
|
+
"thinkingBudget": 1024,
|
|
167
|
+
"includeThoughts": true
|
|
168
|
+
},
|
|
169
|
+
"check": {
|
|
170
|
+
"messages": [
|
|
171
|
+
{
|
|
172
|
+
"role": "user",
|
|
173
|
+
"content": [
|
|
174
|
+
{
|
|
175
|
+
"type": "text",
|
|
176
|
+
"text": "1+1="
|
|
177
|
+
}
|
|
19
178
|
]
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"max_completion_tokens": 512,
|
|
182
|
+
"reasoning": {
|
|
183
|
+
"max_tokens": 128,
|
|
184
|
+
"reasoning_effort": "low"
|
|
20
185
|
},
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
186
|
+
"stream": false
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"codestral": {
|
|
190
|
+
"enabled": true,
|
|
191
|
+
"type": "OpenAiProvider",
|
|
192
|
+
"base_url": "https://codestral.mistral.ai",
|
|
193
|
+
"api_key": "$CODESTRAL_API_KEY",
|
|
194
|
+
"models": {
|
|
195
|
+
"codestral:22b": "codestral-latest"
|
|
196
|
+
},
|
|
197
|
+
"default_pricing": {
|
|
198
|
+
"input": "0",
|
|
199
|
+
"output": "0"
|
|
200
|
+
},
|
|
201
|
+
"check": {
|
|
202
|
+
"messages": [
|
|
203
|
+
{
|
|
204
|
+
"role": "user",
|
|
205
|
+
"content": [
|
|
206
|
+
{
|
|
207
|
+
"type": "text",
|
|
208
|
+
"text": "1+1="
|
|
209
|
+
}
|
|
39
210
|
]
|
|
211
|
+
}
|
|
212
|
+
],
|
|
213
|
+
"stream": false
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"openrouter_free": {
|
|
217
|
+
"enabled": true,
|
|
218
|
+
"type": "OpenAiProvider",
|
|
219
|
+
"base_url": "https://openrouter.ai/api",
|
|
220
|
+
"api_key": "$OPENROUTER_API_KEY",
|
|
221
|
+
"models": {
|
|
222
|
+
"qwen2.5vl": "qwen/qwen2.5-vl-32b-instruct:free",
|
|
223
|
+
"llama4:109b": "meta-llama/llama-4-scout:free",
|
|
224
|
+
"llama4:400b": "meta-llama/llama-4-maverick:free",
|
|
225
|
+
"deepseek-v3.1:671b": "deepseek/deepseek-chat-v3.1:free",
|
|
226
|
+
"deepseek-r1:671b": "deepseek/deepseek-r1-0528:free",
|
|
227
|
+
"gemini-2.0-flash": "google/gemini-2.0-flash-exp:free",
|
|
228
|
+
"gemma3n:e2b": "google/gemma-3n-e2b-it:free",
|
|
229
|
+
"glm-4.5-air": "z-ai/glm-4.5-air:free",
|
|
230
|
+
"mai-ds-r1": "microsoft/mai-ds-r1:free",
|
|
231
|
+
"llama3.3:70b": "meta-llama/llama-3.3-70b-instruct:free",
|
|
232
|
+
"nemotron-nano:9b": "nvidia/nemotron-nano-9b-v2:free",
|
|
233
|
+
"nemotron-nano-vl:12b": "nvidia/nemotron-nano-12b-v2-vl:free",
|
|
234
|
+
"deepseek-r1-distill-llama:70b": "deepseek/deepseek-r1-distill-llama-70b:free",
|
|
235
|
+
"gpt-oss:20b": "openai/gpt-oss-20b:free",
|
|
236
|
+
"mistral-small3.2:24b": "mistralai/mistral-small-3.2-24b-instruct:free",
|
|
237
|
+
"mistral-nemo:12b": "mistralai/mistral-nemo:free",
|
|
238
|
+
"venice-uncensored:24b": "cognitivecomputations/dolphin-mistral-24b-venice-edition:free",
|
|
239
|
+
"llama3.3:8b": "meta-llama/llama-3.3-8b-instruct:free",
|
|
240
|
+
"gemma3:27b": "google/gemma-3-27b-it:free",
|
|
241
|
+
"qwen3-coder": "qwen/qwen3-coder:free",
|
|
242
|
+
"qwen3:235b": "qwen/qwen3-235b-a22b:free",
|
|
243
|
+
"qwen3:30b": "qwen/qwen3-30b-a3b:free",
|
|
244
|
+
"qwen3:4b": "qwen/qwen3-4b:free",
|
|
245
|
+
"qwen2.5vl:32b": "qwen/qwen2.5-vl-32b-instruct:free",
|
|
246
|
+
"qwen-2.5:72b": "qwen/qwen-2.5-72b-instruct:free",
|
|
247
|
+
"minimax-m2": "minimax/minimax-m2:free"
|
|
248
|
+
},
|
|
249
|
+
"default_pricing": {
|
|
250
|
+
"input": "0",
|
|
251
|
+
"output": "0"
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"ollama": {
|
|
255
|
+
"enabled": false,
|
|
256
|
+
"type": "OllamaProvider",
|
|
257
|
+
"base_url": "http://localhost:11434",
|
|
258
|
+
"models": {},
|
|
259
|
+
"all_models": true,
|
|
260
|
+
"default_pricing": {
|
|
261
|
+
"input": "0",
|
|
262
|
+
"output": "0"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"google": {
|
|
266
|
+
"enabled": true,
|
|
267
|
+
"type": "GoogleProvider",
|
|
268
|
+
"api_key": "$GOOGLE_API_KEY",
|
|
269
|
+
"models": {
|
|
270
|
+
"gemini-flash-latest": "gemini-flash-latest",
|
|
271
|
+
"gemini-flash-lite-latest": "gemini-flash-lite-latest",
|
|
272
|
+
"gemini-2.5-pro": "gemini-2.5-pro",
|
|
273
|
+
"gemini-2.5-flash": "gemini-2.5-flash",
|
|
274
|
+
"gemini-2.5-flash-lite": "gemini-2.5-flash-lite"
|
|
275
|
+
},
|
|
276
|
+
"pricing": {
|
|
277
|
+
"gemini-flash-latest": {
|
|
278
|
+
"input": "0.0000003",
|
|
279
|
+
"output": "0.0000025"
|
|
280
|
+
},
|
|
281
|
+
"gemini-flash-lite-latest": {
|
|
282
|
+
"input": "0.0000001",
|
|
283
|
+
"output": "0.0000004"
|
|
284
|
+
},
|
|
285
|
+
"gemini-2.5-pro": {
|
|
286
|
+
"input": "0.00000125",
|
|
287
|
+
"output": "0.00001"
|
|
288
|
+
},
|
|
289
|
+
"gemini-2.5-flash": {
|
|
290
|
+
"input": "0.0000003",
|
|
291
|
+
"output": "0.0000025"
|
|
40
292
|
},
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
293
|
+
"gemini-2.5-flash-lite": {
|
|
294
|
+
"input": "0.0000001",
|
|
295
|
+
"output": "0.0000004"
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
"safety_settings": [
|
|
299
|
+
{
|
|
300
|
+
"category": "HARM_CATEGORY_DANGEROUS_CONTENT",
|
|
301
|
+
"threshold": "BLOCK_ONLY_HIGH"
|
|
302
|
+
}
|
|
303
|
+
],
|
|
304
|
+
"thinking_config": {
|
|
305
|
+
"thinkingBudget": 1024,
|
|
306
|
+
"includeThoughts": true
|
|
307
|
+
},
|
|
308
|
+
"check": {
|
|
309
|
+
"messages": [
|
|
310
|
+
{
|
|
311
|
+
"role": "user",
|
|
312
|
+
"content": [
|
|
313
|
+
{
|
|
314
|
+
"type": "text",
|
|
315
|
+
"text": "1+1="
|
|
316
|
+
}
|
|
60
317
|
]
|
|
318
|
+
}
|
|
319
|
+
],
|
|
320
|
+
"max_completion_tokens": 512,
|
|
321
|
+
"reasoning": {
|
|
322
|
+
"max_tokens": 128,
|
|
323
|
+
"reasoning_effort": "low"
|
|
324
|
+
},
|
|
325
|
+
"stream": false
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"anthropic": {
|
|
329
|
+
"enabled": true,
|
|
330
|
+
"type": "OpenAiProvider",
|
|
331
|
+
"base_url": "https://api.anthropic.com",
|
|
332
|
+
"api_key": "$ANTHROPIC_API_KEY",
|
|
333
|
+
"models": {
|
|
334
|
+
"claude-sonnet-4-5": "claude-sonnet-4-5",
|
|
335
|
+
"claude-sonnet-4-0": "claude-sonnet-4-0",
|
|
336
|
+
"claude-3-7-sonnet": "claude-3-7-sonnet-latest",
|
|
337
|
+
"claude-haiku-4-5": "claude-haiku-4-5",
|
|
338
|
+
"claude-3-5-haiku": "claude-3-5-haiku-latest",
|
|
339
|
+
"claude-3-haiku": "claude-3-haiku-20240307"
|
|
340
|
+
},
|
|
341
|
+
"pricing": {
|
|
342
|
+
"claude-opus-4-1": {
|
|
343
|
+
"input": "0.000015",
|
|
344
|
+
"output": "0.000075"
|
|
345
|
+
},
|
|
346
|
+
"claude-opus-4": {
|
|
347
|
+
"input": "0.000015",
|
|
348
|
+
"output": "0.000075"
|
|
349
|
+
},
|
|
350
|
+
"claude-sonnet-4-5": {
|
|
351
|
+
"input": "0.000003",
|
|
352
|
+
"output": "0.000015"
|
|
353
|
+
},
|
|
354
|
+
"claude-sonnet-4-0": {
|
|
355
|
+
"input": "0.000003",
|
|
356
|
+
"output": "0.000015"
|
|
357
|
+
},
|
|
358
|
+
"claude-3-7-sonnet-latest": {
|
|
359
|
+
"input": "0.000003",
|
|
360
|
+
"output": "0.000015"
|
|
361
|
+
},
|
|
362
|
+
"claude-haiku-4-5": {
|
|
363
|
+
"input": "0.000001",
|
|
364
|
+
"output": "0.000005"
|
|
61
365
|
},
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
}
|
|
366
|
+
"claude-3-5-haiku-latest": {
|
|
367
|
+
"input": "0.0000008",
|
|
368
|
+
"output": "0.000004"
|
|
369
|
+
},
|
|
370
|
+
"claude-3-haiku-20240307": {
|
|
371
|
+
"input": "0.00000025",
|
|
372
|
+
"output": "0.00000125"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"check": {
|
|
376
|
+
"messages": [
|
|
377
|
+
{
|
|
378
|
+
"role": "user",
|
|
379
|
+
"content": [
|
|
380
|
+
{
|
|
381
|
+
"type": "text",
|
|
382
|
+
"text": "1+1="
|
|
383
|
+
}
|
|
81
384
|
]
|
|
385
|
+
}
|
|
386
|
+
],
|
|
387
|
+
"max_completion_tokens": 512,
|
|
388
|
+
"reasoning": {
|
|
389
|
+
"max_tokens": 128,
|
|
390
|
+
"reasoning_effort": "low"
|
|
391
|
+
},
|
|
392
|
+
"stream": false
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
"openai": {
|
|
396
|
+
"enabled": true,
|
|
397
|
+
"type": "OpenAiProvider",
|
|
398
|
+
"base_url": "https://api.openai.com",
|
|
399
|
+
"api_key": "$OPENAI_API_KEY",
|
|
400
|
+
"models": {
|
|
401
|
+
"gpt-5-nano": "gpt-5-nano",
|
|
402
|
+
"gpt-5-mini": "gpt-5-mini",
|
|
403
|
+
"gpt-5": "gpt-5",
|
|
404
|
+
"gpt-5-chat-latest": "gpt-5-chat-latest",
|
|
405
|
+
"gpt-4.1-nano": "gpt-4.1-nano",
|
|
406
|
+
"gpt-4.1-mini": "gpt-4.1-mini",
|
|
407
|
+
"gpt-4.1": "gpt-4.1",
|
|
408
|
+
"o4-mini": "o4-mini",
|
|
409
|
+
"o3": "o3",
|
|
410
|
+
"gpt-4o-mini-search-preview": "gpt-4o-mini-search-preview",
|
|
411
|
+
"gpt-4o-search-preview": "gpt-4o-search-preview",
|
|
412
|
+
"o3-mini": "o3-mini",
|
|
413
|
+
"o1-mini": "o1-mini",
|
|
414
|
+
"chatgpt-4o-latest": "chatgpt-4o-latest",
|
|
415
|
+
"gpt-4o-mini": "gpt-4o-mini",
|
|
416
|
+
"gpt-4o": "gpt-4o",
|
|
417
|
+
"gpt-3.5-turbo": "gpt-3.5-turbo"
|
|
418
|
+
},
|
|
419
|
+
"pricing": {
|
|
420
|
+
"gpt-5-nano": {
|
|
421
|
+
"input": "0.00000005",
|
|
422
|
+
"output": "0.0000004"
|
|
423
|
+
},
|
|
424
|
+
"gpt-5-mini": {
|
|
425
|
+
"input": "0.00000025",
|
|
426
|
+
"output": "0.000002"
|
|
427
|
+
},
|
|
428
|
+
"gpt-5": {
|
|
429
|
+
"input": "0.00000125",
|
|
430
|
+
"output": "0.00001"
|
|
431
|
+
},
|
|
432
|
+
"gpt-5-chat-latest": {
|
|
433
|
+
"input": "0.00000125",
|
|
434
|
+
"output": "0.00001"
|
|
435
|
+
},
|
|
436
|
+
"gpt-4.1-nano": {
|
|
437
|
+
"input": "0.0000001",
|
|
438
|
+
"output": "0.0000004"
|
|
439
|
+
},
|
|
440
|
+
"gpt-4.1-mini": {
|
|
441
|
+
"input": "0.0000004",
|
|
442
|
+
"output": "0.0000016"
|
|
443
|
+
},
|
|
444
|
+
"gpt-4.1": {
|
|
445
|
+
"input": "0.000002",
|
|
446
|
+
"output": "0.000008"
|
|
447
|
+
},
|
|
448
|
+
"o4-mini": {
|
|
449
|
+
"input": "0.0000011",
|
|
450
|
+
"output": "0.0000044"
|
|
451
|
+
},
|
|
452
|
+
"o3": {
|
|
453
|
+
"input": "0.000002",
|
|
454
|
+
"output": "0.000008"
|
|
82
455
|
},
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
456
|
+
"gpt-4o-mini-search-preview": {
|
|
457
|
+
"input": "0.00000015",
|
|
458
|
+
"output": "0.0000006"
|
|
459
|
+
},
|
|
460
|
+
"gpt-4o-search-preview": {
|
|
461
|
+
"input": "0.0000025",
|
|
462
|
+
"output": "0.00001"
|
|
463
|
+
},
|
|
464
|
+
"o3-mini": {
|
|
465
|
+
"input": "0.0000011",
|
|
466
|
+
"output": "0.0000044"
|
|
467
|
+
},
|
|
468
|
+
"o1-mini": {
|
|
469
|
+
"input": "0.0000011",
|
|
470
|
+
"output": "0.0000044"
|
|
471
|
+
},
|
|
472
|
+
"chatgpt-4o-latest": {
|
|
473
|
+
"input": "0.000005",
|
|
474
|
+
"output": "0.000015"
|
|
475
|
+
},
|
|
476
|
+
"gpt-4o-mini": {
|
|
477
|
+
"input": "0.00000015",
|
|
478
|
+
"output": "0.0000006"
|
|
479
|
+
},
|
|
480
|
+
"gpt-4o": {
|
|
481
|
+
"input": "0.0000025",
|
|
482
|
+
"output": "0.00001"
|
|
483
|
+
},
|
|
484
|
+
"gpt-3.5-turbo": {
|
|
485
|
+
"input": "0.000003",
|
|
486
|
+
"output": "0.000006"
|
|
97
487
|
}
|
|
488
|
+
}
|
|
98
489
|
},
|
|
99
|
-
"
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
"gpt-oss:20b": "openai/gpt-oss-20b:free",
|
|
118
|
-
"mistral-small3.2:24b": "mistralai/mistral-small-3.2-24b-instruct:free",
|
|
119
|
-
"mistral-nemo:12b": "mistralai/mistral-nemo:free",
|
|
120
|
-
"devstral-small": "mistralai/devstral-small-2505:free",
|
|
121
|
-
"venice-uncensored:24b": "cognitivecomputations/dolphin-mistral-24b-venice-edition:free",
|
|
122
|
-
"llama3.3:8b": "meta-llama/llama-3.3-8b-instruct:free",
|
|
123
|
-
"kimi-dev:72b": "moonshotai/kimi-dev-72b:free",
|
|
124
|
-
"gemma3:27b": "google/gemma-3-27b-it:free",
|
|
125
|
-
"qwen3-coder": "qwen/qwen3-coder:free",
|
|
126
|
-
"qwen3:235b": "qwen/qwen3-235b-a22b:free",
|
|
127
|
-
"qwen3:30b": "qwen/qwen3-30b-a3b:free",
|
|
128
|
-
"qwen3:8b": "qwen/qwen3-8b:free",
|
|
129
|
-
"qwen3:4b": "qwen/qwen3-4b:free",
|
|
130
|
-
"qwen2.5vl:32b": "qwen/qwen2.5-vl-32b-instruct:free",
|
|
131
|
-
"qwen-2.5:72b": "qwen/qwen-2.5-72b-instruct:free",
|
|
132
|
-
"minimax-m2": "minimax/minimax-m2:free"
|
|
133
|
-
},
|
|
134
|
-
"default_pricing": {
|
|
135
|
-
"input": "0",
|
|
136
|
-
"output": "0"
|
|
137
|
-
}
|
|
490
|
+
"grok": {
|
|
491
|
+
"enabled": true,
|
|
492
|
+
"type": "OpenAiProvider",
|
|
493
|
+
"base_url": "https://api.x.ai",
|
|
494
|
+
"api_key": "$GROK_API_KEY",
|
|
495
|
+
"models": {
|
|
496
|
+
"grok-4": "grok-4-0709",
|
|
497
|
+
"grok-code-fast-1": "grok-code-fast-1",
|
|
498
|
+
"grok-4-fast-reasoning": "grok-4-fast-reasoning",
|
|
499
|
+
"grok-4-fast-non-reasoning": "grok-4-fast-non-reasoning",
|
|
500
|
+
"grok-4-0709": "grok-4-0709",
|
|
501
|
+
"grok-3-mini": "grok-3-mini",
|
|
502
|
+
"grok-3": "grok-3"
|
|
503
|
+
},
|
|
504
|
+
"pricing": {
|
|
505
|
+
"grok-4": {
|
|
506
|
+
"input": "0.000003",
|
|
507
|
+
"output": "0.000015"
|
|
138
508
|
},
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"base_url": "https://api.groq.com/openai",
|
|
143
|
-
"api_key": "$GROQ_API_KEY",
|
|
144
|
-
"models": {
|
|
145
|
-
"allam-2-7b": "allam-2-7b",
|
|
146
|
-
"compound": "groq/compound",
|
|
147
|
-
"compound-mini": "groq/compound-mini",
|
|
148
|
-
"llama3.1:8b": "llama-3.1-8b-instant",
|
|
149
|
-
"llama3.3:70b": "llama-3.3-70b-versatile",
|
|
150
|
-
"llama4:109b": "meta-llama/llama-4-scout-17b-16e-instruct",
|
|
151
|
-
"llama4:400b": "meta-llama/llama-4-maverick-17b-128e-instruct",
|
|
152
|
-
"llama-guard-4:12b": "meta-llama/llama-guard-4-12b",
|
|
153
|
-
"llama-prompt-guard2:22m": "meta-llama/llama-prompt-guard-2-22m",
|
|
154
|
-
"llama-prompt-guard2:86m": "meta-llama/llama-prompt-guard-2-86m",
|
|
155
|
-
"kimi-k2": "moonshotai/kimi-k2-instruct-0905",
|
|
156
|
-
"gpt-oss:120b": "openai/gpt-oss-120b",
|
|
157
|
-
"gpt-oss:20b": "openai/gpt-oss-20b",
|
|
158
|
-
"qwen3:32b": "qwen/qwen3-32b"
|
|
159
|
-
},
|
|
160
|
-
"default_pricing": {
|
|
161
|
-
"input": "0",
|
|
162
|
-
"output": "0"
|
|
163
|
-
}
|
|
509
|
+
"grok-code-fast-1": {
|
|
510
|
+
"input": "0.0000002",
|
|
511
|
+
"output": "0.0000015"
|
|
164
512
|
},
|
|
165
|
-
"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
"api_key": "$GOOGLE_FREE_API_KEY",
|
|
169
|
-
"models": {
|
|
170
|
-
"gemini-flash-latest": "gemini-flash-latest",
|
|
171
|
-
"gemini-flash-lite-latest": "gemini-flash-lite-latest",
|
|
172
|
-
"gemini-2.5-pro": "gemini-2.5-pro",
|
|
173
|
-
"gemini-2.5-flash": "gemini-2.5-flash",
|
|
174
|
-
"gemini-2.5-flash-lite": "gemini-2.5-flash-lite"
|
|
175
|
-
},
|
|
176
|
-
"default_pricing": {
|
|
177
|
-
"input": "0",
|
|
178
|
-
"output": "0"
|
|
179
|
-
},
|
|
180
|
-
"safety_settings": [
|
|
181
|
-
{
|
|
182
|
-
"category": "HARM_CATEGORY_DANGEROUS_CONTENT",
|
|
183
|
-
"threshold": "BLOCK_ONLY_HIGH"
|
|
184
|
-
}
|
|
185
|
-
],
|
|
186
|
-
"thinking_config": {
|
|
187
|
-
"thinkingBudget": 1024,
|
|
188
|
-
"includeThoughts": true
|
|
189
|
-
},
|
|
190
|
-
"check": {
|
|
191
|
-
"messages": [
|
|
192
|
-
{
|
|
193
|
-
"role": "user",
|
|
194
|
-
"content": [
|
|
195
|
-
{
|
|
196
|
-
"type": "text",
|
|
197
|
-
"text": "1+1="
|
|
198
|
-
}
|
|
199
|
-
]
|
|
200
|
-
}
|
|
201
|
-
],
|
|
202
|
-
"max_completion_tokens": 512,
|
|
203
|
-
"reasoning": {
|
|
204
|
-
"max_tokens": 128,
|
|
205
|
-
"reasoning_effort": "low"
|
|
206
|
-
},
|
|
207
|
-
"stream": false
|
|
208
|
-
}
|
|
513
|
+
"grok-4-fast-reasoning": {
|
|
514
|
+
"input": "0.0000002",
|
|
515
|
+
"output": "0.0000005"
|
|
209
516
|
},
|
|
210
|
-
"
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
"base_url": "https://codestral.mistral.ai",
|
|
214
|
-
"api_key": "$CODESTRAL_API_KEY",
|
|
215
|
-
"models": {
|
|
216
|
-
"codestral:22b": "codestral-latest"
|
|
217
|
-
},
|
|
218
|
-
"default_pricing": {
|
|
219
|
-
"input": "0",
|
|
220
|
-
"output": "0"
|
|
221
|
-
},
|
|
222
|
-
"check": {
|
|
223
|
-
"messages": [
|
|
224
|
-
{
|
|
225
|
-
"role": "user",
|
|
226
|
-
"content": [
|
|
227
|
-
{
|
|
228
|
-
"type": "text",
|
|
229
|
-
"text": "1+1="
|
|
230
|
-
}
|
|
231
|
-
]
|
|
232
|
-
}
|
|
233
|
-
],
|
|
234
|
-
"stream": false
|
|
235
|
-
}
|
|
517
|
+
"grok-4-fast-non-reasoning": {
|
|
518
|
+
"input": "0.0000002",
|
|
519
|
+
"output": "0.0000005"
|
|
236
520
|
},
|
|
237
|
-
"
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
"base_url": "http://localhost:11434",
|
|
241
|
-
"models": {},
|
|
242
|
-
"all_models": true,
|
|
243
|
-
"default_pricing": {
|
|
244
|
-
"input": "0",
|
|
245
|
-
"output": "0"
|
|
246
|
-
}
|
|
521
|
+
"grok-4-0709": {
|
|
522
|
+
"input": "0.000003",
|
|
523
|
+
"output": "0.000015"
|
|
247
524
|
},
|
|
248
|
-
"
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
"base_url": "https://openrouter.ai/api",
|
|
252
|
-
"api_key": "$OPENROUTER_API_KEY",
|
|
253
|
-
"models": {
|
|
254
|
-
"llama3.1:70b": "meta-llama/llama-3.1-405b-instruct",
|
|
255
|
-
"llama3.3:70b": "meta-llama/llama-3.3-70b-instruct",
|
|
256
|
-
"phi-4:14b": "microsoft/phi-4",
|
|
257
|
-
"codestral:22b": "mistralai/codestral-2508",
|
|
258
|
-
"mistral-nemo:12b": "mistralai/mistral-nemo",
|
|
259
|
-
"mixtral:8x22b": "mistralai/mixtral-8x22b-instruct",
|
|
260
|
-
"mistral-small3.2:24b": "mistralai/mistral-small-3.2-24b-instruct",
|
|
261
|
-
"nova-micro": "amazon/nova-micro-v1",
|
|
262
|
-
"nova-lite": "amazon/nova-lite-v1",
|
|
263
|
-
"nova-pro": "amazon/nova-pro-v1",
|
|
264
|
-
"claude-opus-4-1": "anthropic/claude-opus-4.1",
|
|
265
|
-
"claude-sonnet-4-5": "anthropic/claude-sonnet-4.5",
|
|
266
|
-
"claude-sonnet-4-0": "anthropic/claude-sonnet-4",
|
|
267
|
-
"gpt-5": "openai/gpt-5",
|
|
268
|
-
"gpt-5-chat": "openai/gpt-5-chat",
|
|
269
|
-
"gpt-5-mini": "openai/gpt-5-mini",
|
|
270
|
-
"gpt-5-nano": "openai/gpt-5-nano",
|
|
271
|
-
"gpt-5-codex": "openai/gpt-5-codex",
|
|
272
|
-
"gpt-oss:120b": "openai/gpt-oss-120b",
|
|
273
|
-
"gpt-oss:20b": "openai/gpt-oss-20b",
|
|
274
|
-
"gpt-4o": "openai/gpt-4o",
|
|
275
|
-
"gpt-4o-mini": "openai/gpt-4o-mini",
|
|
276
|
-
"gpt-4.1": "openai/gpt-4.1",
|
|
277
|
-
"gpt-4.1-mini": "openai/gpt-4.1-mini",
|
|
278
|
-
"gpt-4.1-nano": "openai/gpt-4.1-nano",
|
|
279
|
-
"o4-mini": "openai/o4-mini",
|
|
280
|
-
"o4-mini-high": "openai/o4-mini-high",
|
|
281
|
-
"grok-4": "x-ai/grok-4",
|
|
282
|
-
"grok-4-fast": "x-ai/grok-4-fast",
|
|
283
|
-
"grok-code-fast-1": "x-ai/grok-code-fast-1",
|
|
284
|
-
"glm-4.6": "z-ai/glm-4.6",
|
|
285
|
-
"glm-4.5v": "z-ai/glm-4.5v",
|
|
286
|
-
"glm-4.5": "z-ai/glm-4.5",
|
|
287
|
-
"glm-4.5-air": "z-ai/glm-4.5-air",
|
|
288
|
-
"kimi-k2": "moonshotai/kimi-k2",
|
|
289
|
-
"deepseek-v3.1:671b": "deepseek/deepseek-chat",
|
|
290
|
-
"deepseek-v3.2-exp": "deepseek/deepseek-v3.2-exp",
|
|
291
|
-
"deepseek-chat-v3.1:671b": "deepseek/deepseek-chat-v3.1",
|
|
292
|
-
"deepseek-r1:671b": "deepseek/deepseek-r1",
|
|
293
|
-
"deepseek-v3.1-terminus": "deepseek/deepseek-v3.1-terminus",
|
|
294
|
-
"qwen3:8b": "qwen/qwen3-8b",
|
|
295
|
-
"qwen3:30b": "qwen/qwen3-30b-a3b",
|
|
296
|
-
"qwen3:32b": "qwen/qwen3-32b",
|
|
297
|
-
"qwen3:235b": "qwen/qwen3-235b-a22b",
|
|
298
|
-
"qwen3-coder": "qwen/qwen3-coder",
|
|
299
|
-
"qwen3-coder-flash": "qwen/qwen3-coder-flash",
|
|
300
|
-
"qwen3-coder-plus": "qwen/qwen3-coder-plus",
|
|
301
|
-
"qwen3-coder:30b": "qwen/qwen3-coder-30b-a3b-instruct",
|
|
302
|
-
"qwen3-max": "qwen/qwen3-max",
|
|
303
|
-
"qwen3-vl:235b": "qwen/qwen3-vl-235b-a22b-instruct",
|
|
304
|
-
"qwen3-vl-thinking:235b": "qwen/qwen3-vl-235b-a22b-thinking",
|
|
305
|
-
"ling-1t": "inclusionai/ling-1t",
|
|
306
|
-
"llama4:109b": "meta-llama/llama-4-scout",
|
|
307
|
-
"llama4:400b": "meta-llama/llama-4-maverick"
|
|
308
|
-
},
|
|
309
|
-
"pricing": {
|
|
310
|
-
"meta-llama/llama-3.1-405b-instruct": {
|
|
311
|
-
"input": "0.0000008",
|
|
312
|
-
"output": "0.0000008"
|
|
313
|
-
},
|
|
314
|
-
"meta-llama/llama-3.3-70b-instruct": {
|
|
315
|
-
"input": "0.00000013",
|
|
316
|
-
"output": "0.00000038"
|
|
317
|
-
},
|
|
318
|
-
"microsoft/phi-4": {
|
|
319
|
-
"input": "0.00000006",
|
|
320
|
-
"output": "0.00000014"
|
|
321
|
-
},
|
|
322
|
-
"mistralai/codestral-2508": {
|
|
323
|
-
"input": "0.0000003",
|
|
324
|
-
"output": "0.0000009"
|
|
325
|
-
},
|
|
326
|
-
"mistralai/mistral-nemo": {
|
|
327
|
-
"input": "0.00000002",
|
|
328
|
-
"output": "0.00000004"
|
|
329
|
-
},
|
|
330
|
-
"mistralai/mixtral-8x22b-instruct": {
|
|
331
|
-
"input": "0.000002",
|
|
332
|
-
"output": "0.000006"
|
|
333
|
-
},
|
|
334
|
-
"mistralai/mistral-small-3.2-24b-instruct": {
|
|
335
|
-
"input": "0.00000006",
|
|
336
|
-
"output": "0.00000018"
|
|
337
|
-
},
|
|
338
|
-
"amazon/nova-micro-v1": {
|
|
339
|
-
"input": "0.000000035",
|
|
340
|
-
"output": "0.00000014"
|
|
341
|
-
},
|
|
342
|
-
"amazon/nova-lite-v1": {
|
|
343
|
-
"input": "0.00000006",
|
|
344
|
-
"output": "0.00000024"
|
|
345
|
-
},
|
|
346
|
-
"amazon/nova-pro-v1": {
|
|
347
|
-
"input": "0.0000008",
|
|
348
|
-
"output": "0.0000032"
|
|
349
|
-
},
|
|
350
|
-
"anthropic/claude-opus-4.1": {
|
|
351
|
-
"input": "0.000015",
|
|
352
|
-
"output": "0.000075"
|
|
353
|
-
},
|
|
354
|
-
"anthropic/claude-sonnet-4.5": {
|
|
355
|
-
"input": "0.000003",
|
|
356
|
-
"output": "0.000015"
|
|
357
|
-
},
|
|
358
|
-
"anthropic/claude-sonnet-4": {
|
|
359
|
-
"input": "0.000003",
|
|
360
|
-
"output": "0.000015"
|
|
361
|
-
},
|
|
362
|
-
"openai/gpt-5": {
|
|
363
|
-
"input": "0.00000125",
|
|
364
|
-
"output": "0.00001"
|
|
365
|
-
},
|
|
366
|
-
"openai/gpt-5-chat": {
|
|
367
|
-
"input": "0.00000125",
|
|
368
|
-
"output": "0.00001"
|
|
369
|
-
},
|
|
370
|
-
"openai/gpt-5-mini": {
|
|
371
|
-
"input": "0.00000025",
|
|
372
|
-
"output": "0.000002"
|
|
373
|
-
},
|
|
374
|
-
"openai/gpt-5-nano": {
|
|
375
|
-
"input": "0.00000005",
|
|
376
|
-
"output": "0.0000004"
|
|
377
|
-
},
|
|
378
|
-
"openai/gpt-5-codex": {
|
|
379
|
-
"input": "0.00000125",
|
|
380
|
-
"output": "0.00001"
|
|
381
|
-
},
|
|
382
|
-
"openai/gpt-oss-120b": {
|
|
383
|
-
"input": "0.00000005",
|
|
384
|
-
"output": "0.00000024"
|
|
385
|
-
},
|
|
386
|
-
"openai/gpt-oss-20b": {
|
|
387
|
-
"input": "0.00000003",
|
|
388
|
-
"output": "0.00000014"
|
|
389
|
-
},
|
|
390
|
-
"openai/gpt-4o": {
|
|
391
|
-
"input": "0.000006",
|
|
392
|
-
"output": "0.000018"
|
|
393
|
-
},
|
|
394
|
-
"openai/gpt-4o-mini": {
|
|
395
|
-
"input": "0.00000015",
|
|
396
|
-
"output": "0.0000006"
|
|
397
|
-
},
|
|
398
|
-
"openai/gpt-4.1": {
|
|
399
|
-
"input": "0.000002",
|
|
400
|
-
"output": "0.000008"
|
|
401
|
-
},
|
|
402
|
-
"openai/gpt-4.1-mini": {
|
|
403
|
-
"input": "0.0000004",
|
|
404
|
-
"output": "0.0000016"
|
|
405
|
-
},
|
|
406
|
-
"openai/gpt-4.1-nano": {
|
|
407
|
-
"input": "0.0000001",
|
|
408
|
-
"output": "0.0000004"
|
|
409
|
-
},
|
|
410
|
-
"openai/o4-mini": {
|
|
411
|
-
"input": "0.0000011",
|
|
412
|
-
"output": "0.0000044"
|
|
413
|
-
},
|
|
414
|
-
"openai/o4-mini-high": {
|
|
415
|
-
"input": "0.0000011",
|
|
416
|
-
"output": "0.0000044"
|
|
417
|
-
},
|
|
418
|
-
"x-ai/grok-4": {
|
|
419
|
-
"input": "0.000003",
|
|
420
|
-
"output": "0.000015"
|
|
421
|
-
},
|
|
422
|
-
"x-ai/grok-4-fast": {
|
|
423
|
-
"input": "0.0000002",
|
|
424
|
-
"output": "0.0000005"
|
|
425
|
-
},
|
|
426
|
-
"x-ai/grok-code-fast-1": {
|
|
427
|
-
"input": "0.0000002",
|
|
428
|
-
"output": "0.0000015"
|
|
429
|
-
},
|
|
430
|
-
"z-ai/glm-4.6": {
|
|
431
|
-
"input": "0.0000006",
|
|
432
|
-
"output": "0.0000019"
|
|
433
|
-
},
|
|
434
|
-
"z-ai/glm-4.5v": {
|
|
435
|
-
"input": "0.0000006",
|
|
436
|
-
"output": "0.0000018"
|
|
437
|
-
},
|
|
438
|
-
"z-ai/glm-4.5": {
|
|
439
|
-
"input": "0.00000035",
|
|
440
|
-
"output": "0.00000155"
|
|
441
|
-
},
|
|
442
|
-
"z-ai/glm-4.5-air": {
|
|
443
|
-
"input": "0.00000013",
|
|
444
|
-
"output": "0.00000085"
|
|
445
|
-
},
|
|
446
|
-
"moonshotai/kimi-k2": {
|
|
447
|
-
"input": "0.00000014",
|
|
448
|
-
"output": "0.00000249"
|
|
449
|
-
},
|
|
450
|
-
"deepseek/deepseek-chat": {
|
|
451
|
-
"input": "0.0000003",
|
|
452
|
-
"output": "0.00000085"
|
|
453
|
-
},
|
|
454
|
-
"deepseek/deepseek-v3.2-exp": {
|
|
455
|
-
"input": "0.00000027",
|
|
456
|
-
"output": "0.0000004"
|
|
457
|
-
},
|
|
458
|
-
"deepseek/deepseek-chat-v3.1": {
|
|
459
|
-
"input": "0.00000027",
|
|
460
|
-
"output": "0.000001"
|
|
461
|
-
},
|
|
462
|
-
"deepseek/deepseek-r1": {
|
|
463
|
-
"input": "0.0000004",
|
|
464
|
-
"output": "0.000002"
|
|
465
|
-
},
|
|
466
|
-
"deepseek/deepseek-v3.1-terminus": {
|
|
467
|
-
"input": "0.00000027",
|
|
468
|
-
"output": "0.000001"
|
|
469
|
-
},
|
|
470
|
-
"qwen/qwen3-8b": {
|
|
471
|
-
"input": "0.000000035",
|
|
472
|
-
"output": "0.000000138"
|
|
473
|
-
},
|
|
474
|
-
"qwen/qwen3-30b-a3b": {
|
|
475
|
-
"input": "0.00000006",
|
|
476
|
-
"output": "0.00000022"
|
|
477
|
-
},
|
|
478
|
-
"qwen/qwen3-32b": {
|
|
479
|
-
"input": "0.00000005",
|
|
480
|
-
"output": "0.0000002"
|
|
481
|
-
},
|
|
482
|
-
"qwen/qwen3-235b-a22b": {
|
|
483
|
-
"input": "0.00000018",
|
|
484
|
-
"output": "0.00000054"
|
|
485
|
-
},
|
|
486
|
-
"qwen/qwen3-coder": {
|
|
487
|
-
"input": "0.00000038",
|
|
488
|
-
"output": "0.00000153"
|
|
489
|
-
},
|
|
490
|
-
"qwen/qwen3-coder-flash": {
|
|
491
|
-
"input": "0.0000003",
|
|
492
|
-
"output": "0.0000015"
|
|
493
|
-
},
|
|
494
|
-
"qwen/qwen3-coder-plus": {
|
|
495
|
-
"input": "0.000001",
|
|
496
|
-
"output": "0.000005"
|
|
497
|
-
},
|
|
498
|
-
"qwen/qwen3-coder-30b-a3b-instruct": {
|
|
499
|
-
"input": "0.00000006",
|
|
500
|
-
"output": "0.00000025"
|
|
501
|
-
},
|
|
502
|
-
"qwen/qwen3-max": {
|
|
503
|
-
"input": "0.0000012",
|
|
504
|
-
"output": "0.000006"
|
|
505
|
-
},
|
|
506
|
-
"qwen/qwen3-vl-235b-a22b-instruct": {
|
|
507
|
-
"input": "0.00000022",
|
|
508
|
-
"output": "0.00000088"
|
|
509
|
-
},
|
|
510
|
-
"qwen/qwen3-vl-235b-a22b-thinking": {
|
|
511
|
-
"input": "0.0000003",
|
|
512
|
-
"output": "0.0000012"
|
|
513
|
-
},
|
|
514
|
-
"inclusionai/ling-1t": {
|
|
515
|
-
"input": "0.00000057",
|
|
516
|
-
"output": "0.00000228"
|
|
517
|
-
},
|
|
518
|
-
"meta-llama/llama-4-scout": {
|
|
519
|
-
"input": "0.00000008",
|
|
520
|
-
"output": "0.0000003"
|
|
521
|
-
},
|
|
522
|
-
"meta-llama/llama-4-maverick": {
|
|
523
|
-
"input": "0.00000015",
|
|
524
|
-
"output": "0.0000006"
|
|
525
|
-
}
|
|
526
|
-
}
|
|
525
|
+
"grok-3-mini": {
|
|
526
|
+
"input": "0.0000003",
|
|
527
|
+
"output": "0.0000005"
|
|
527
528
|
},
|
|
528
|
-
"
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
"check": {
|
|
572
|
-
"messages": [
|
|
573
|
-
{
|
|
574
|
-
"role": "user",
|
|
575
|
-
"content": [
|
|
576
|
-
{
|
|
577
|
-
"type": "text",
|
|
578
|
-
"text": "1+1="
|
|
579
|
-
}
|
|
580
|
-
]
|
|
581
|
-
}
|
|
582
|
-
],
|
|
583
|
-
"max_completion_tokens": 512,
|
|
584
|
-
"reasoning": {
|
|
585
|
-
"max_tokens": 128,
|
|
586
|
-
"reasoning_effort": "low"
|
|
587
|
-
},
|
|
588
|
-
"stream": false
|
|
589
|
-
}
|
|
529
|
+
"grok-3": {
|
|
530
|
+
"input": "0.000003",
|
|
531
|
+
"output": "0.000015"
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
"qwen": {
|
|
536
|
+
"enabled": true,
|
|
537
|
+
"type": "OpenAiProvider",
|
|
538
|
+
"base_url": "https://dashscope-intl.aliyuncs.com/compatible-mode",
|
|
539
|
+
"api_key": "$DASHSCOPE_API_KEY",
|
|
540
|
+
"models": {
|
|
541
|
+
"qwen3-max": "qwen3-max",
|
|
542
|
+
"qwen-max": "qwen-max",
|
|
543
|
+
"qwen-plus": "qwen-plus",
|
|
544
|
+
"qwen-flash": "qwen-flash",
|
|
545
|
+
"qwq-plus": "qwq-plus",
|
|
546
|
+
"qwen-turbo": "qwen-turbo",
|
|
547
|
+
"qwen-omni-turbo": "qwen-omni-turbo",
|
|
548
|
+
"qwen3-omni-flash": "qwen3-omni-flash",
|
|
549
|
+
"qwen3-coder-plus": "qwen3-coder-plus",
|
|
550
|
+
"qwen3-coder-flash": "qwen3-coder-flash",
|
|
551
|
+
"qwen3-next:80b": "qwen3-next-80b-a3b-instruct",
|
|
552
|
+
"qwen3:235b": "qwen3-235b-a22b",
|
|
553
|
+
"qwen3:32b": "qwen3-32b",
|
|
554
|
+
"qwen3:30b": "qwen3-30b-a3b",
|
|
555
|
+
"qwen3:14b": "qwen3-14b",
|
|
556
|
+
"qwen3:8b": "qwen3-8b",
|
|
557
|
+
"qwen3:4b": "qwen3-4b",
|
|
558
|
+
"qwen3:1.7b": "qwen3-1.7b",
|
|
559
|
+
"qwen3:0.6b": "qwen3-0.6b",
|
|
560
|
+
"qwen3-coder": "qwen3-coder-480b-a35b-instruct",
|
|
561
|
+
"qwen3-coder:30b": "qwen3-coder-30b-a3b-instruct",
|
|
562
|
+
"qwen3-vl-plus": "qwen3-vl-plus",
|
|
563
|
+
"qwen3-vl-thinking:235b": "qwen3-vl-235b-a22b-thinking",
|
|
564
|
+
"qwen3-vl:235b": "qwen3-vl-235b-a22b-instruct",
|
|
565
|
+
"qwen3-vl:30b": "qwen3-vl-30b-a3b-instruct",
|
|
566
|
+
"qwen2.5-omni:7b": "qwen2.5-omni-7b"
|
|
567
|
+
},
|
|
568
|
+
"pricing": {
|
|
569
|
+
"qwen3-max": {
|
|
570
|
+
"input": "0.0000012",
|
|
571
|
+
"output": "0.000006"
|
|
590
572
|
},
|
|
591
|
-
"
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
"base_url": "https://api.anthropic.com",
|
|
595
|
-
"api_key": "$ANTHROPIC_API_KEY",
|
|
596
|
-
"models": {
|
|
597
|
-
"claude-sonnet-4-5": "claude-sonnet-4-5",
|
|
598
|
-
"claude-sonnet-4-0": "claude-sonnet-4-0",
|
|
599
|
-
"claude-3-7-sonnet": "claude-3-7-sonnet-latest",
|
|
600
|
-
"claude-haiku-4-5": "claude-haiku-4-5",
|
|
601
|
-
"claude-3-5-haiku": "claude-3-5-haiku-latest",
|
|
602
|
-
"claude-3-haiku": "claude-3-haiku-20240307"
|
|
603
|
-
},
|
|
604
|
-
"pricing": {
|
|
605
|
-
"claude-opus-4-1": {
|
|
606
|
-
"input": "0.000015",
|
|
607
|
-
"output": "0.000075"
|
|
608
|
-
},
|
|
609
|
-
"claude-opus-4": {
|
|
610
|
-
"input": "0.000015",
|
|
611
|
-
"output": "0.000075"
|
|
612
|
-
},
|
|
613
|
-
"claude-sonnet-4-5": {
|
|
614
|
-
"input": "0.000003",
|
|
615
|
-
"output": "0.000015"
|
|
616
|
-
},
|
|
617
|
-
"claude-sonnet-4-0": {
|
|
618
|
-
"input": "0.000003",
|
|
619
|
-
"output": "0.000015"
|
|
620
|
-
},
|
|
621
|
-
"claude-3-7-sonnet-latest": {
|
|
622
|
-
"input": "0.000003",
|
|
623
|
-
"output": "0.000015"
|
|
624
|
-
},
|
|
625
|
-
"claude-haiku-4-5": {
|
|
626
|
-
"input": "0.000001",
|
|
627
|
-
"output": "0.000005"
|
|
628
|
-
},
|
|
629
|
-
"claude-3-5-haiku-latest": {
|
|
630
|
-
"input": "0.0000008",
|
|
631
|
-
"output": "0.000004"
|
|
632
|
-
},
|
|
633
|
-
"claude-3-haiku-20240307": {
|
|
634
|
-
"input": "0.00000025",
|
|
635
|
-
"output": "0.00000125"
|
|
636
|
-
}
|
|
637
|
-
},
|
|
638
|
-
"check": {
|
|
639
|
-
"messages": [
|
|
640
|
-
{
|
|
641
|
-
"role": "user",
|
|
642
|
-
"content": [
|
|
643
|
-
{
|
|
644
|
-
"type": "text",
|
|
645
|
-
"text": "1+1="
|
|
646
|
-
}
|
|
647
|
-
]
|
|
648
|
-
}
|
|
649
|
-
],
|
|
650
|
-
"max_completion_tokens": 512,
|
|
651
|
-
"reasoning": {
|
|
652
|
-
"max_tokens": 128,
|
|
653
|
-
"reasoning_effort": "low"
|
|
654
|
-
},
|
|
655
|
-
"stream": false
|
|
656
|
-
}
|
|
573
|
+
"qwen-max": {
|
|
574
|
+
"input": "0.0000012",
|
|
575
|
+
"output": "0.000006"
|
|
657
576
|
},
|
|
658
|
-
"
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
"base_url": "https://api.openai.com",
|
|
662
|
-
"api_key": "$OPENAI_API_KEY",
|
|
663
|
-
"models": {
|
|
664
|
-
"gpt-5-nano": "gpt-5-nano",
|
|
665
|
-
"gpt-5-mini": "gpt-5-mini",
|
|
666
|
-
"gpt-5": "gpt-5",
|
|
667
|
-
"gpt-5-chat-latest": "gpt-5-chat-latest",
|
|
668
|
-
"gpt-4.1-nano": "gpt-4.1-nano",
|
|
669
|
-
"gpt-4.1-mini": "gpt-4.1-mini",
|
|
670
|
-
"gpt-4.1": "gpt-4.1",
|
|
671
|
-
"o4-mini": "o4-mini",
|
|
672
|
-
"o3": "o3",
|
|
673
|
-
"gpt-4o-mini-search-preview": "gpt-4o-mini-search-preview",
|
|
674
|
-
"gpt-4o-search-preview": "gpt-4o-search-preview",
|
|
675
|
-
"o3-mini": "o3-mini",
|
|
676
|
-
"o1-mini": "o1-mini",
|
|
677
|
-
"chatgpt-4o-latest": "chatgpt-4o-latest",
|
|
678
|
-
"gpt-4o-mini": "gpt-4o-mini",
|
|
679
|
-
"gpt-4o": "gpt-4o",
|
|
680
|
-
"gpt-3.5-turbo": "gpt-3.5-turbo"
|
|
681
|
-
},
|
|
682
|
-
"pricing": {
|
|
683
|
-
"gpt-5-nano": {
|
|
684
|
-
"input": "0.00000005",
|
|
685
|
-
"output": "0.0000004"
|
|
686
|
-
},
|
|
687
|
-
"gpt-5-mini": {
|
|
688
|
-
"input": "0.00000025",
|
|
689
|
-
"output": "0.000002"
|
|
690
|
-
},
|
|
691
|
-
"gpt-5": {
|
|
692
|
-
"input": "0.00000125",
|
|
693
|
-
"output": "0.00001"
|
|
694
|
-
},
|
|
695
|
-
"gpt-5-chat-latest": {
|
|
696
|
-
"input": "0.00000125",
|
|
697
|
-
"output": "0.00001"
|
|
698
|
-
},
|
|
699
|
-
"gpt-4.1-nano": {
|
|
700
|
-
"input": "0.0000001",
|
|
701
|
-
"output": "0.0000004"
|
|
702
|
-
},
|
|
703
|
-
"gpt-4.1-mini": {
|
|
704
|
-
"input": "0.0000004",
|
|
705
|
-
"output": "0.0000016"
|
|
706
|
-
},
|
|
707
|
-
"gpt-4.1": {
|
|
708
|
-
"input": "0.000002",
|
|
709
|
-
"output": "0.000008"
|
|
710
|
-
},
|
|
711
|
-
"o4-mini": {
|
|
712
|
-
"input": "0.0000011",
|
|
713
|
-
"output": "0.0000044"
|
|
714
|
-
},
|
|
715
|
-
"o3": {
|
|
716
|
-
"input": "0.000002",
|
|
717
|
-
"output": "0.000008"
|
|
718
|
-
},
|
|
719
|
-
"gpt-4o-mini-search-preview": {
|
|
720
|
-
"input": "0.00000015",
|
|
721
|
-
"output": "0.0000006"
|
|
722
|
-
},
|
|
723
|
-
"gpt-4o-search-preview": {
|
|
724
|
-
"input": "0.0000025",
|
|
725
|
-
"output": "0.00001"
|
|
726
|
-
},
|
|
727
|
-
"o3-mini": {
|
|
728
|
-
"input": "0.0000011",
|
|
729
|
-
"output": "0.0000044"
|
|
730
|
-
},
|
|
731
|
-
"o1-mini": {
|
|
732
|
-
"input": "0.0000011",
|
|
733
|
-
"output": "0.0000044"
|
|
734
|
-
},
|
|
735
|
-
"chatgpt-4o-latest": {
|
|
736
|
-
"input": "0.000005",
|
|
737
|
-
"output": "0.000015"
|
|
738
|
-
},
|
|
739
|
-
"gpt-4o-mini": {
|
|
740
|
-
"input": "0.00000015",
|
|
741
|
-
"output": "0.0000006"
|
|
742
|
-
},
|
|
743
|
-
"gpt-4o": {
|
|
744
|
-
"input": "0.0000025",
|
|
745
|
-
"output": "0.00001"
|
|
746
|
-
},
|
|
747
|
-
"gpt-3.5-turbo": {
|
|
748
|
-
"input": "0.000003",
|
|
749
|
-
"output": "0.000006"
|
|
750
|
-
}
|
|
751
|
-
}
|
|
577
|
+
"qwen-plus": {
|
|
578
|
+
"input": "0.0000004",
|
|
579
|
+
"output": "0.0000012"
|
|
752
580
|
},
|
|
753
|
-
"
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
"base_url": "https://api.x.ai",
|
|
757
|
-
"api_key": "$GROK_API_KEY",
|
|
758
|
-
"models": {
|
|
759
|
-
"grok-4": "grok-4-0709",
|
|
760
|
-
"grok-code-fast-1": "grok-code-fast-1",
|
|
761
|
-
"grok-4-fast-reasoning": "grok-4-fast-reasoning",
|
|
762
|
-
"grok-4-fast-non-reasoning": "grok-4-fast-non-reasoning",
|
|
763
|
-
"grok-4-0709": "grok-4-0709",
|
|
764
|
-
"grok-3-mini": "grok-3-mini",
|
|
765
|
-
"grok-3": "grok-3"
|
|
766
|
-
},
|
|
767
|
-
"pricing": {
|
|
768
|
-
"grok-4": {
|
|
769
|
-
"input": "0.000003",
|
|
770
|
-
"output": "0.000015"
|
|
771
|
-
},
|
|
772
|
-
"grok-code-fast-1": {
|
|
773
|
-
"input": "0.0000002",
|
|
774
|
-
"output": "0.0000015"
|
|
775
|
-
},
|
|
776
|
-
"grok-4-fast-reasoning": {
|
|
777
|
-
"input": "0.0000002",
|
|
778
|
-
"output": "0.0000005"
|
|
779
|
-
},
|
|
780
|
-
"grok-4-fast-non-reasoning": {
|
|
781
|
-
"input": "0.0000002",
|
|
782
|
-
"output": "0.0000005"
|
|
783
|
-
},
|
|
784
|
-
"grok-4-0709": {
|
|
785
|
-
"input": "0.000003",
|
|
786
|
-
"output": "0.000015"
|
|
787
|
-
},
|
|
788
|
-
"grok-3-mini": {
|
|
789
|
-
"input": "0.0000003",
|
|
790
|
-
"output": "0.0000005"
|
|
791
|
-
},
|
|
792
|
-
"grok-3": {
|
|
793
|
-
"input": "0.000003",
|
|
794
|
-
"output": "0.000015"
|
|
795
|
-
}
|
|
796
|
-
}
|
|
581
|
+
"qwen-flash": {
|
|
582
|
+
"input": "0.00000005",
|
|
583
|
+
"output": "0.0000004"
|
|
797
584
|
},
|
|
798
|
-
"
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
"base_url": "https://dashscope-intl.aliyuncs.com/compatible-mode",
|
|
802
|
-
"api_key": "$DASHSCOPE_API_KEY",
|
|
803
|
-
"models": {
|
|
804
|
-
"qwen3-max": "qwen3-max",
|
|
805
|
-
"qwen-max": "qwen-max",
|
|
806
|
-
"qwen-plus": "qwen-plus",
|
|
807
|
-
"qwen-flash": "qwen-flash",
|
|
808
|
-
"qwq-plus": "qwq-plus",
|
|
809
|
-
"qwen-turbo": "qwen-turbo",
|
|
810
|
-
"qwen-omni-turbo": "qwen-omni-turbo",
|
|
811
|
-
"qwen3-omni-flash": "qwen3-omni-flash",
|
|
812
|
-
"qwen3-coder-plus": "qwen3-coder-plus",
|
|
813
|
-
"qwen3-coder-flash": "qwen3-coder-flash",
|
|
814
|
-
"qwen3-next:80b": "qwen3-next-80b-a3b-instruct",
|
|
815
|
-
"qwen3:235b": "qwen3-235b-a22b",
|
|
816
|
-
"qwen3:32b": "qwen3-32b",
|
|
817
|
-
"qwen3:30b": "qwen3-30b-a3b",
|
|
818
|
-
"qwen3:14b": "qwen3-14b",
|
|
819
|
-
"qwen3:8b": "qwen3-8b",
|
|
820
|
-
"qwen3:4b": "qwen3-4b",
|
|
821
|
-
"qwen3:1.7b": "qwen3-1.7b",
|
|
822
|
-
"qwen3:0.6b": "qwen3-0.6b",
|
|
823
|
-
"qwen3-coder": "qwen3-coder-480b-a35b-instruct",
|
|
824
|
-
"qwen3-coder:30b": "qwen3-coder-30b-a3b-instruct",
|
|
825
|
-
"qwen3-vl-plus": "qwen3-vl-plus",
|
|
826
|
-
"qwen3-vl-thinking:235b": "qwen3-vl-235b-a22b-thinking",
|
|
827
|
-
"qwen3-vl:235b": "qwen3-vl-235b-a22b-instruct",
|
|
828
|
-
"qwen3-vl:30b": "qwen3-vl-30b-a3b-instruct",
|
|
829
|
-
"qwen2.5-omni:7b": "qwen2.5-omni-7b"
|
|
830
|
-
},
|
|
831
|
-
"pricing": {
|
|
832
|
-
"qwen3-max": {
|
|
833
|
-
"input": "0.0000012",
|
|
834
|
-
"output": "0.000006"
|
|
835
|
-
},
|
|
836
|
-
"qwen-max": {
|
|
837
|
-
"input": "0.0000012",
|
|
838
|
-
"output": "0.000006"
|
|
839
|
-
},
|
|
840
|
-
"qwen-plus": {
|
|
841
|
-
"input": "0.0000004",
|
|
842
|
-
"output": "0.0000012"
|
|
843
|
-
},
|
|
844
|
-
"qwen-flash": {
|
|
845
|
-
"input": "0.00000005",
|
|
846
|
-
"output": "0.0000004"
|
|
847
|
-
},
|
|
848
|
-
"qwq-plus": {
|
|
849
|
-
"input": "0.0000008",
|
|
850
|
-
"output": "0.0000024"
|
|
851
|
-
},
|
|
852
|
-
"qwen-turbo": {
|
|
853
|
-
"input": "0.00000005",
|
|
854
|
-
"output": "0.0000005"
|
|
855
|
-
},
|
|
856
|
-
"qwen-omni-turbo": {
|
|
857
|
-
"input": "0.00000007",
|
|
858
|
-
"output": "0.00000027"
|
|
859
|
-
},
|
|
860
|
-
"qwen3-omni-flash": {
|
|
861
|
-
"input": "0.00000043",
|
|
862
|
-
"output": "0.00000166"
|
|
863
|
-
},
|
|
864
|
-
"qwen3-coder-plus": {
|
|
865
|
-
"input": "0.000001",
|
|
866
|
-
"output": "0.000005"
|
|
867
|
-
},
|
|
868
|
-
"qwen3-coder-flash": {
|
|
869
|
-
"input": "0.0000003",
|
|
870
|
-
"output": "0.0000015"
|
|
871
|
-
},
|
|
872
|
-
"qwen3-next-80b-a3b-instruct": {
|
|
873
|
-
"input": "0.0000005",
|
|
874
|
-
"output": "0.000002"
|
|
875
|
-
},
|
|
876
|
-
"qwen3-235b-a22b": {
|
|
877
|
-
"input": "0.0000007",
|
|
878
|
-
"output": "0.0000028"
|
|
879
|
-
},
|
|
880
|
-
"qwen3-32b": {
|
|
881
|
-
"input": "0.0000007",
|
|
882
|
-
"output": "0.0000028"
|
|
883
|
-
},
|
|
884
|
-
"qwen3-30b-a3b": {
|
|
885
|
-
"input": "0.0000002",
|
|
886
|
-
"output": "0.0000008"
|
|
887
|
-
},
|
|
888
|
-
"qwen3-14b": {
|
|
889
|
-
"input": "0.00000035",
|
|
890
|
-
"output": "0.0000014"
|
|
891
|
-
},
|
|
892
|
-
"qwen3-8b": {
|
|
893
|
-
"input": "0.00000018",
|
|
894
|
-
"output": "0.0000007"
|
|
895
|
-
},
|
|
896
|
-
"qwen3-4b": {
|
|
897
|
-
"input": "0.00000011",
|
|
898
|
-
"output": "0.00000042"
|
|
899
|
-
},
|
|
900
|
-
"qwen3-1.7b": {
|
|
901
|
-
"input": "0.00000011",
|
|
902
|
-
"output": "0.00000042"
|
|
903
|
-
},
|
|
904
|
-
"qwen3-0.6b": {
|
|
905
|
-
"input": "0.00000011",
|
|
906
|
-
"output": "0.00000042"
|
|
907
|
-
},
|
|
908
|
-
"qwen3-coder-480b-a35b-instruct": {
|
|
909
|
-
"input": "0.0000015",
|
|
910
|
-
"output": "0.0000075"
|
|
911
|
-
},
|
|
912
|
-
"qwen3-coder-30b-a3b-instruct": {
|
|
913
|
-
"input": "0.00000045",
|
|
914
|
-
"output": "0.00000225"
|
|
915
|
-
},
|
|
916
|
-
"qwen3-vl-plus": {
|
|
917
|
-
"input": "0.0000002",
|
|
918
|
-
"output": "0.0000016"
|
|
919
|
-
},
|
|
920
|
-
"qwen3-vl-235b-a22b-thinking": {
|
|
921
|
-
"input": "0.0000007",
|
|
922
|
-
"output": "0.0000084"
|
|
923
|
-
},
|
|
924
|
-
"qwen3-vl-235b-a22b-instruct": {
|
|
925
|
-
"input": "0.0000007",
|
|
926
|
-
"output": "0.0000084"
|
|
927
|
-
},
|
|
928
|
-
"qwen3-vl-30b-a3b-instruct": {
|
|
929
|
-
"input": "0.0000002",
|
|
930
|
-
"output": "0.0000024"
|
|
931
|
-
},
|
|
932
|
-
"qwen2.5-omni-7b": {
|
|
933
|
-
"input": "0.0000001",
|
|
934
|
-
"output": "0.0000004"
|
|
935
|
-
}
|
|
936
|
-
},
|
|
937
|
-
"enable_thinking": false
|
|
938
|
-
},
|
|
939
|
-
"z.ai": {
|
|
940
|
-
"enabled": true,
|
|
941
|
-
"type": "OpenAiProvider",
|
|
942
|
-
"base_url": "https://api.z.ai/api/paas/v4",
|
|
943
|
-
"api_key": "$ZAI_API_KEY",
|
|
944
|
-
"models": {
|
|
945
|
-
"glm-4.6": "glm-4.6",
|
|
946
|
-
"glm-4.5": "glm-4.5",
|
|
947
|
-
"glm-4.5-air": "glm-4.5-air",
|
|
948
|
-
"glm-4.5-x": "glm-4.5-x",
|
|
949
|
-
"glm-4.5-airx": "glm-4.5-airx",
|
|
950
|
-
"glm-4.5-flash": "glm-4.5-flash",
|
|
951
|
-
"glm-4:32b": "glm-4-32b-0414-128k"
|
|
952
|
-
},
|
|
953
|
-
"temperature": 0.7,
|
|
954
|
-
"pricing": {
|
|
955
|
-
"glm-4.6": {
|
|
956
|
-
"input": "0.0000006",
|
|
957
|
-
"output": "0.00000022"
|
|
958
|
-
},
|
|
959
|
-
"glm-4.5": {
|
|
960
|
-
"input": "0.0000006",
|
|
961
|
-
"output": "0.00000022"
|
|
962
|
-
},
|
|
963
|
-
"glm-4.5-air": {
|
|
964
|
-
"input": "0.0000002",
|
|
965
|
-
"output": "0.00000011"
|
|
966
|
-
},
|
|
967
|
-
"glm-4.5-x": {
|
|
968
|
-
"input": "0.00000022",
|
|
969
|
-
"output": "0.00000089"
|
|
970
|
-
},
|
|
971
|
-
"glm-4.5-airx": {
|
|
972
|
-
"input": "0.0000011",
|
|
973
|
-
"output": "0.00000045"
|
|
974
|
-
},
|
|
975
|
-
"glm-4.5-flash": {
|
|
976
|
-
"input": "0",
|
|
977
|
-
"output": "0"
|
|
978
|
-
},
|
|
979
|
-
"glm-4-32b-0414-128k": {
|
|
980
|
-
"input": "0.0000001",
|
|
981
|
-
"output": "0.0000001"
|
|
982
|
-
}
|
|
983
|
-
}
|
|
585
|
+
"qwq-plus": {
|
|
586
|
+
"input": "0.0000008",
|
|
587
|
+
"output": "0.0000024"
|
|
984
588
|
},
|
|
985
|
-
"
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
589
|
+
"qwen-turbo": {
|
|
590
|
+
"input": "0.00000005",
|
|
591
|
+
"output": "0.0000005"
|
|
592
|
+
},
|
|
593
|
+
"qwen-omni-turbo": {
|
|
594
|
+
"input": "0.00000007",
|
|
595
|
+
"output": "0.00000027"
|
|
596
|
+
},
|
|
597
|
+
"qwen3-omni-flash": {
|
|
598
|
+
"input": "0.00000043",
|
|
599
|
+
"output": "0.00000166"
|
|
600
|
+
},
|
|
601
|
+
"qwen3-coder-plus": {
|
|
602
|
+
"input": "0.000001",
|
|
603
|
+
"output": "0.000005"
|
|
604
|
+
},
|
|
605
|
+
"qwen3-coder-flash": {
|
|
606
|
+
"input": "0.0000003",
|
|
607
|
+
"output": "0.0000015"
|
|
608
|
+
},
|
|
609
|
+
"qwen3-next-80b-a3b-instruct": {
|
|
610
|
+
"input": "0.0000005",
|
|
611
|
+
"output": "0.000002"
|
|
612
|
+
},
|
|
613
|
+
"qwen3-235b-a22b": {
|
|
614
|
+
"input": "0.0000007",
|
|
615
|
+
"output": "0.0000028"
|
|
616
|
+
},
|
|
617
|
+
"qwen3-32b": {
|
|
618
|
+
"input": "0.0000007",
|
|
619
|
+
"output": "0.0000028"
|
|
620
|
+
},
|
|
621
|
+
"qwen3-30b-a3b": {
|
|
622
|
+
"input": "0.0000002",
|
|
623
|
+
"output": "0.0000008"
|
|
624
|
+
},
|
|
625
|
+
"qwen3-14b": {
|
|
626
|
+
"input": "0.00000035",
|
|
627
|
+
"output": "0.0000014"
|
|
628
|
+
},
|
|
629
|
+
"qwen3-8b": {
|
|
630
|
+
"input": "0.00000018",
|
|
631
|
+
"output": "0.0000007"
|
|
632
|
+
},
|
|
633
|
+
"qwen3-4b": {
|
|
634
|
+
"input": "0.00000011",
|
|
635
|
+
"output": "0.00000042"
|
|
636
|
+
},
|
|
637
|
+
"qwen3-1.7b": {
|
|
638
|
+
"input": "0.00000011",
|
|
639
|
+
"output": "0.00000042"
|
|
640
|
+
},
|
|
641
|
+
"qwen3-0.6b": {
|
|
642
|
+
"input": "0.00000011",
|
|
643
|
+
"output": "0.00000042"
|
|
644
|
+
},
|
|
645
|
+
"qwen3-coder-480b-a35b-instruct": {
|
|
646
|
+
"input": "0.0000015",
|
|
647
|
+
"output": "0.0000075"
|
|
648
|
+
},
|
|
649
|
+
"qwen3-coder-30b-a3b-instruct": {
|
|
650
|
+
"input": "0.00000045",
|
|
651
|
+
"output": "0.00000225"
|
|
652
|
+
},
|
|
653
|
+
"qwen3-vl-plus": {
|
|
654
|
+
"input": "0.0000002",
|
|
655
|
+
"output": "0.0000016"
|
|
656
|
+
},
|
|
657
|
+
"qwen3-vl-235b-a22b-thinking": {
|
|
658
|
+
"input": "0.0000007",
|
|
659
|
+
"output": "0.0000084"
|
|
660
|
+
},
|
|
661
|
+
"qwen3-vl-235b-a22b-instruct": {
|
|
662
|
+
"input": "0.0000007",
|
|
663
|
+
"output": "0.0000084"
|
|
664
|
+
},
|
|
665
|
+
"qwen3-vl-30b-a3b-instruct": {
|
|
666
|
+
"input": "0.0000002",
|
|
667
|
+
"output": "0.0000024"
|
|
668
|
+
},
|
|
669
|
+
"qwen2.5-omni-7b": {
|
|
670
|
+
"input": "0.0000001",
|
|
671
|
+
"output": "0.0000004"
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
"enable_thinking": false
|
|
675
|
+
},
|
|
676
|
+
"z.ai": {
|
|
677
|
+
"enabled": true,
|
|
678
|
+
"type": "OpenAiProvider",
|
|
679
|
+
"base_url": "https://api.z.ai/api/paas/v4",
|
|
680
|
+
"api_key": "$ZAI_API_KEY",
|
|
681
|
+
"models": {
|
|
682
|
+
"glm-4.6": "glm-4.6",
|
|
683
|
+
"glm-4.5": "glm-4.5",
|
|
684
|
+
"glm-4.5-air": "glm-4.5-air",
|
|
685
|
+
"glm-4.5-x": "glm-4.5-x",
|
|
686
|
+
"glm-4.5-airx": "glm-4.5-airx",
|
|
687
|
+
"glm-4.5-flash": "glm-4.5-flash",
|
|
688
|
+
"glm-4:32b": "glm-4-32b-0414-128k"
|
|
689
|
+
},
|
|
690
|
+
"temperature": 0.7,
|
|
691
|
+
"pricing": {
|
|
692
|
+
"glm-4.6": {
|
|
693
|
+
"input": "0.0000006",
|
|
694
|
+
"output": "0.0000022"
|
|
695
|
+
},
|
|
696
|
+
"glm-4.5": {
|
|
697
|
+
"input": "0.0000006",
|
|
698
|
+
"output": "0.0000022"
|
|
699
|
+
},
|
|
700
|
+
"glm-4.5-air": {
|
|
701
|
+
"input": "0.0000002",
|
|
702
|
+
"output": "0.0000011"
|
|
703
|
+
},
|
|
704
|
+
"glm-4.5-x": {
|
|
705
|
+
"input": "0.0000022",
|
|
706
|
+
"output": "0.0000089"
|
|
707
|
+
},
|
|
708
|
+
"glm-4.5-airx": {
|
|
709
|
+
"input": "0.0000011",
|
|
710
|
+
"output": "0.0000045"
|
|
711
|
+
},
|
|
712
|
+
"glm-4.5-flash": {
|
|
713
|
+
"input": "0",
|
|
714
|
+
"output": "0"
|
|
715
|
+
},
|
|
716
|
+
"glm-4-32b-0414-128k": {
|
|
717
|
+
"input": "0.0000001",
|
|
718
|
+
"output": "0.0000001"
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
"mistral": {
|
|
723
|
+
"enabled": true,
|
|
724
|
+
"type": "OpenAiProvider",
|
|
725
|
+
"base_url": "https://api.mistral.ai",
|
|
726
|
+
"api_key": "$MISTRAL_API_KEY",
|
|
727
|
+
"models": {
|
|
728
|
+
"mistral-medium": "mistral-medium-latest",
|
|
729
|
+
"magistral-medium": "magistral-medium-latest",
|
|
730
|
+
"devstral-medium": "devstral-medium-2507",
|
|
731
|
+
"codestral:22b": "codestral-latest",
|
|
732
|
+
"mistral-small3.2:24b": "mistral-small-latest",
|
|
733
|
+
"magistral-small": "magistral-small-latest",
|
|
734
|
+
"devstral-small": "devstral-small-2507",
|
|
735
|
+
"voxtral-small": "voxtral-small-latest",
|
|
736
|
+
"voxtral-mini": "voxtral-mini-latest",
|
|
737
|
+
"mistral-large:123b": "mistral-large-latest",
|
|
738
|
+
"pixtral-large:124b": "pixtral-large-latest",
|
|
739
|
+
"pixtral:12b": "pixtral-12b",
|
|
740
|
+
"mistral-nemo:12b": "open-mistral-nemo",
|
|
741
|
+
"mistral:7b": "open-mistral-7b",
|
|
742
|
+
"mixtral:8x7b": "open-mixtral-8x7b",
|
|
743
|
+
"mixtral:8x22b": "open-mixtral-8x22b",
|
|
744
|
+
"ministral:8b": "ministral-8b-latest",
|
|
745
|
+
"ministral:3b": "ministral-3b-latest"
|
|
746
|
+
},
|
|
747
|
+
"pricing": {
|
|
748
|
+
"mistral-medium-latest": {
|
|
749
|
+
"input": "0.0000004",
|
|
750
|
+
"output": "0.000002"
|
|
751
|
+
},
|
|
752
|
+
"magistral-medium-latest": {
|
|
753
|
+
"input": "0.000002",
|
|
754
|
+
"output": "0.000005"
|
|
755
|
+
},
|
|
756
|
+
"devstral-medium-2507": {
|
|
757
|
+
"input": "0.0000004",
|
|
758
|
+
"output": "0.000002"
|
|
759
|
+
},
|
|
760
|
+
"codestral-latest": {
|
|
761
|
+
"input": "0.0000003",
|
|
762
|
+
"output": "0.0000003"
|
|
763
|
+
},
|
|
764
|
+
"mistral-small-latest": {
|
|
765
|
+
"input": "0.0000001",
|
|
766
|
+
"output": "0.0000003"
|
|
767
|
+
},
|
|
768
|
+
"magistral-small-latest": {
|
|
769
|
+
"input": "0.0000005",
|
|
770
|
+
"output": "0.0000015"
|
|
771
|
+
},
|
|
772
|
+
"devstral-small-2507": {
|
|
773
|
+
"input": "0.0000001",
|
|
774
|
+
"output": "0.0000003"
|
|
775
|
+
},
|
|
776
|
+
"voxtral-small-latest": {
|
|
777
|
+
"input": "0.0000001",
|
|
778
|
+
"output": "0.0000003"
|
|
779
|
+
},
|
|
780
|
+
"voxtral-mini-latest": {
|
|
781
|
+
"input": "0.00000004",
|
|
782
|
+
"output": "0.00000004"
|
|
783
|
+
},
|
|
784
|
+
"mistral-large-latest": {
|
|
785
|
+
"input": "0.000002",
|
|
786
|
+
"output": "0.000006"
|
|
787
|
+
},
|
|
788
|
+
"pixtral-large-latest": {
|
|
789
|
+
"input": "0.000002",
|
|
790
|
+
"output": "0.000006"
|
|
791
|
+
},
|
|
792
|
+
"pixtral-12b": {
|
|
793
|
+
"input": "0.00000015",
|
|
794
|
+
"output": "0.00000015"
|
|
795
|
+
},
|
|
796
|
+
"open-mistral-nemo": {
|
|
797
|
+
"input": "0.00000015",
|
|
798
|
+
"output": "0.00000015"
|
|
799
|
+
},
|
|
800
|
+
"open-mistral-7b": {
|
|
801
|
+
"input": "0.00000025",
|
|
802
|
+
"output": "0.00000025"
|
|
803
|
+
},
|
|
804
|
+
"open-mixtral-8x7b": {
|
|
805
|
+
"input": "0.0000007",
|
|
806
|
+
"output": "0.0000007"
|
|
807
|
+
},
|
|
808
|
+
"open-mixtral-8x22b": {
|
|
809
|
+
"input": "0.000002",
|
|
810
|
+
"output": "0.000006"
|
|
811
|
+
},
|
|
812
|
+
"ministral-8b-latest": {
|
|
813
|
+
"input": "0.0000001",
|
|
814
|
+
"output": "0.0000001"
|
|
815
|
+
},
|
|
816
|
+
"ministral-3b-latest": {
|
|
817
|
+
"input": "0.00000004",
|
|
818
|
+
"output": "0.00000004"
|
|
819
|
+
}
|
|
820
|
+
},
|
|
821
|
+
"check": {
|
|
822
|
+
"messages": [
|
|
823
|
+
{
|
|
824
|
+
"role": "user",
|
|
825
|
+
"content": [
|
|
826
|
+
{
|
|
827
|
+
"type": "text",
|
|
828
|
+
"text": "1+1="
|
|
829
|
+
}
|
|
830
|
+
]
|
|
831
|
+
}
|
|
832
|
+
],
|
|
833
|
+
"stream": false
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"openrouter": {
|
|
837
|
+
"enabled": true,
|
|
838
|
+
"type": "OpenAiProvider",
|
|
839
|
+
"base_url": "https://openrouter.ai/api",
|
|
840
|
+
"api_key": "$OPENROUTER_API_KEY",
|
|
841
|
+
"models": {
|
|
842
|
+
"llama3.1:70b": "meta-llama/llama-3.1-405b-instruct",
|
|
843
|
+
"llama3.3:70b": "meta-llama/llama-3.3-70b-instruct",
|
|
844
|
+
"phi-4:14b": "microsoft/phi-4",
|
|
845
|
+
"codestral:22b": "mistralai/codestral-2508",
|
|
846
|
+
"mistral-nemo:12b": "mistralai/mistral-nemo",
|
|
847
|
+
"mixtral:8x22b": "mistralai/mixtral-8x22b-instruct",
|
|
848
|
+
"mistral-small3.2:24b": "mistralai/mistral-small-3.2-24b-instruct",
|
|
849
|
+
"nova-premier": "amazon/nova-premier-v1",
|
|
850
|
+
"nova-micro": "amazon/nova-micro-v1",
|
|
851
|
+
"nova-lite": "amazon/nova-lite-v1",
|
|
852
|
+
"nova-pro": "amazon/nova-pro-v1",
|
|
853
|
+
"nemotron-nano-vl:12b": "nvidia/nemotron-nano-12b-v2-vl",
|
|
854
|
+
"claude-sonnet-4-5": "anthropic/claude-sonnet-4.5",
|
|
855
|
+
"claude-sonnet-4-0": "anthropic/claude-sonnet-4",
|
|
856
|
+
"gemini-flash-latest": "google/gemini-2.5-flash",
|
|
857
|
+
"gemini-flash-lite-latest": "google/gemini-2.5-flash-lite",
|
|
858
|
+
"gemini-2.5-pro": "google/gemini-2.5-pro",
|
|
859
|
+
"gemma3:4b": "google/gemma-3-4b-it",
|
|
860
|
+
"gemma3:12b": "google/gemma-3-12b-it",
|
|
861
|
+
"gemma3:27b": "google/gemma-3-27b-it",
|
|
862
|
+
"gpt-5": "openai/gpt-5",
|
|
863
|
+
"gpt-5-chat": "openai/gpt-5-chat",
|
|
864
|
+
"gpt-5-mini": "openai/gpt-5-mini",
|
|
865
|
+
"gpt-5-nano": "openai/gpt-5-nano",
|
|
866
|
+
"gpt-5-codex": "openai/gpt-5-codex",
|
|
867
|
+
"gpt-oss:120b": "openai/gpt-oss-120b",
|
|
868
|
+
"gpt-oss:20b": "openai/gpt-oss-20b",
|
|
869
|
+
"gpt-4o": "openai/gpt-4o",
|
|
870
|
+
"gpt-4o-mini": "openai/gpt-4o-mini",
|
|
871
|
+
"gpt-4.1": "openai/gpt-4.1",
|
|
872
|
+
"gpt-4.1-mini": "openai/gpt-4.1-mini",
|
|
873
|
+
"gpt-4.1-nano": "openai/gpt-4.1-nano",
|
|
874
|
+
"o4-mini": "openai/o4-mini",
|
|
875
|
+
"o4-mini-high": "openai/o4-mini-high",
|
|
876
|
+
"grok-4": "x-ai/grok-4",
|
|
877
|
+
"grok-4-fast": "x-ai/grok-4-fast",
|
|
878
|
+
"grok-code-fast-1": "x-ai/grok-code-fast-1",
|
|
879
|
+
"glm-4.6": "z-ai/glm-4.6",
|
|
880
|
+
"glm-4.5v": "z-ai/glm-4.5v",
|
|
881
|
+
"glm-4.5": "z-ai/glm-4.5",
|
|
882
|
+
"glm-4.5-air": "z-ai/glm-4.5-air",
|
|
883
|
+
"minimax-m2": "minimax/minimax-m2",
|
|
884
|
+
"kimi-k2": "moonshotai/kimi-k2",
|
|
885
|
+
"deepseek-v3.1:671b": "deepseek/deepseek-chat",
|
|
886
|
+
"deepseek-v3.2-exp": "deepseek/deepseek-v3.2-exp",
|
|
887
|
+
"deepseek-chat-v3.1:671b": "deepseek/deepseek-chat-v3.1",
|
|
888
|
+
"deepseek-r1:671b": "deepseek/deepseek-r1",
|
|
889
|
+
"deepseek-v3.1-terminus": "deepseek/deepseek-v3.1-terminus",
|
|
890
|
+
"qwen3:8b": "qwen/qwen3-8b",
|
|
891
|
+
"qwen3:30b": "qwen/qwen3-30b-a3b",
|
|
892
|
+
"qwen3:32b": "qwen/qwen3-32b",
|
|
893
|
+
"qwen3:235b": "qwen/qwen3-235b-a22b",
|
|
894
|
+
"qwen3-coder": "qwen/qwen3-coder",
|
|
895
|
+
"qwen3-coder-flash": "qwen/qwen3-coder-flash",
|
|
896
|
+
"qwen3-coder-plus": "qwen/qwen3-coder-plus",
|
|
897
|
+
"qwen3-coder:30b": "qwen/qwen3-coder-30b-a3b-instruct",
|
|
898
|
+
"qwen3-max": "qwen/qwen3-max",
|
|
899
|
+
"qwen3-vl:235b": "qwen/qwen3-vl-235b-a22b-instruct",
|
|
900
|
+
"qwen3-vl-thinking:235b": "qwen/qwen3-vl-235b-a22b-thinking",
|
|
901
|
+
"ling-1t": "inclusionai/ling-1t",
|
|
902
|
+
"llama4:109b": "meta-llama/llama-4-scout",
|
|
903
|
+
"llama4:400b": "meta-llama/llama-4-maverick"
|
|
904
|
+
},
|
|
905
|
+
"pricing": {
|
|
906
|
+
"meta-llama/llama-3.1-405b-instruct": {
|
|
907
|
+
"input": "0.0000008",
|
|
908
|
+
"output": "0.0000008"
|
|
909
|
+
},
|
|
910
|
+
"meta-llama/llama-3.3-70b-instruct": {
|
|
911
|
+
"input": "0.00000013",
|
|
912
|
+
"output": "0.00000038"
|
|
913
|
+
},
|
|
914
|
+
"microsoft/phi-4": {
|
|
915
|
+
"input": "0.00000006",
|
|
916
|
+
"output": "0.00000014"
|
|
917
|
+
},
|
|
918
|
+
"mistralai/codestral-2508": {
|
|
919
|
+
"input": "0.0000003",
|
|
920
|
+
"output": "0.0000009"
|
|
921
|
+
},
|
|
922
|
+
"mistralai/mistral-nemo": {
|
|
923
|
+
"input": "0.00000002",
|
|
924
|
+
"output": "0.00000004"
|
|
925
|
+
},
|
|
926
|
+
"mistralai/mixtral-8x22b-instruct": {
|
|
927
|
+
"input": "0.000002",
|
|
928
|
+
"output": "0.000006"
|
|
929
|
+
},
|
|
930
|
+
"mistralai/mistral-small-3.2-24b-instruct": {
|
|
931
|
+
"input": "0.00000006",
|
|
932
|
+
"output": "0.00000018"
|
|
933
|
+
},
|
|
934
|
+
"amazon/nova-premier-v1": {
|
|
935
|
+
"input": "0.0000025",
|
|
936
|
+
"output": "0.0000125"
|
|
937
|
+
},
|
|
938
|
+
"amazon/nova-micro-v1": {
|
|
939
|
+
"input": "0.000000035",
|
|
940
|
+
"output": "0.00000014"
|
|
941
|
+
},
|
|
942
|
+
"amazon/nova-lite-v1": {
|
|
943
|
+
"input": "0.00000006",
|
|
944
|
+
"output": "0.00000024"
|
|
945
|
+
},
|
|
946
|
+
"amazon/nova-pro-v1": {
|
|
947
|
+
"input": "0.0000008",
|
|
948
|
+
"output": "0.0000032"
|
|
949
|
+
},
|
|
950
|
+
"nvidia/nemotron-nano-12b-v2-vl": {
|
|
951
|
+
"input": "0.0000002",
|
|
952
|
+
"output": "0.0000006"
|
|
953
|
+
},
|
|
954
|
+
"anthropic/claude-sonnet-4.5": {
|
|
955
|
+
"input": "0.000003",
|
|
956
|
+
"output": "0.000015"
|
|
957
|
+
},
|
|
958
|
+
"anthropic/claude-sonnet-4": {
|
|
959
|
+
"input": "0.000003",
|
|
960
|
+
"output": "0.000015"
|
|
961
|
+
},
|
|
962
|
+
"google/gemini-2.5-flash": {
|
|
963
|
+
"input": "0.0000003",
|
|
964
|
+
"output": "0.0000025"
|
|
965
|
+
},
|
|
966
|
+
"google/gemini-2.5-flash-lite": {
|
|
967
|
+
"input": "0.0000001",
|
|
968
|
+
"output": "0.0000004"
|
|
969
|
+
},
|
|
970
|
+
"google/gemini-2.5-pro": {
|
|
971
|
+
"input": "0.00000125",
|
|
972
|
+
"output": "0.00001"
|
|
973
|
+
},
|
|
974
|
+
"google/gemma-3-4b-it": {
|
|
975
|
+
"input": "0.00000001703012",
|
|
976
|
+
"output": "0.0000000681536"
|
|
977
|
+
},
|
|
978
|
+
"google/gemma-3-12b-it": {
|
|
979
|
+
"input": "0.00000003",
|
|
980
|
+
"output": "0.0000001"
|
|
981
|
+
},
|
|
982
|
+
"google/gemma-3-27b-it": {
|
|
983
|
+
"input": "0.00000009",
|
|
984
|
+
"output": "0.00000016"
|
|
985
|
+
},
|
|
986
|
+
"openai/gpt-5": {
|
|
987
|
+
"input": "0.00000125",
|
|
988
|
+
"output": "0.00001"
|
|
989
|
+
},
|
|
990
|
+
"openai/gpt-5-chat": {
|
|
991
|
+
"input": "0.00000125",
|
|
992
|
+
"output": "0.00001"
|
|
993
|
+
},
|
|
994
|
+
"openai/gpt-5-mini": {
|
|
995
|
+
"input": "0.00000025",
|
|
996
|
+
"output": "0.000002"
|
|
997
|
+
},
|
|
998
|
+
"openai/gpt-5-nano": {
|
|
999
|
+
"input": "0.00000005",
|
|
1000
|
+
"output": "0.0000004"
|
|
1001
|
+
},
|
|
1002
|
+
"openai/gpt-5-codex": {
|
|
1003
|
+
"input": "0.00000125",
|
|
1004
|
+
"output": "0.00001"
|
|
1005
|
+
},
|
|
1006
|
+
"openai/gpt-oss-120b": {
|
|
1007
|
+
"input": "0.00000005",
|
|
1008
|
+
"output": "0.00000024"
|
|
1009
|
+
},
|
|
1010
|
+
"openai/gpt-oss-20b": {
|
|
1011
|
+
"input": "0.00000003",
|
|
1012
|
+
"output": "0.00000014"
|
|
1013
|
+
},
|
|
1014
|
+
"openai/gpt-4o": {
|
|
1015
|
+
"input": "0.000006",
|
|
1016
|
+
"output": "0.000018"
|
|
1017
|
+
},
|
|
1018
|
+
"openai/gpt-4o-mini": {
|
|
1019
|
+
"input": "0.00000015",
|
|
1020
|
+
"output": "0.0000006"
|
|
1021
|
+
},
|
|
1022
|
+
"openai/gpt-4.1": {
|
|
1023
|
+
"input": "0.000002",
|
|
1024
|
+
"output": "0.000008"
|
|
1025
|
+
},
|
|
1026
|
+
"openai/gpt-4.1-mini": {
|
|
1027
|
+
"input": "0.0000004",
|
|
1028
|
+
"output": "0.0000016"
|
|
1029
|
+
},
|
|
1030
|
+
"openai/gpt-4.1-nano": {
|
|
1031
|
+
"input": "0.0000001",
|
|
1032
|
+
"output": "0.0000004"
|
|
1033
|
+
},
|
|
1034
|
+
"openai/o4-mini": {
|
|
1035
|
+
"input": "0.0000011",
|
|
1036
|
+
"output": "0.0000044"
|
|
1037
|
+
},
|
|
1038
|
+
"openai/o4-mini-high": {
|
|
1039
|
+
"input": "0.0000011",
|
|
1040
|
+
"output": "0.0000044"
|
|
1041
|
+
},
|
|
1042
|
+
"x-ai/grok-4": {
|
|
1043
|
+
"input": "0.000003",
|
|
1044
|
+
"output": "0.000015"
|
|
1045
|
+
},
|
|
1046
|
+
"x-ai/grok-4-fast": {
|
|
1047
|
+
"input": "0.0000002",
|
|
1048
|
+
"output": "0.0000005"
|
|
1049
|
+
},
|
|
1050
|
+
"x-ai/grok-code-fast-1": {
|
|
1051
|
+
"input": "0.0000002",
|
|
1052
|
+
"output": "0.0000015"
|
|
1053
|
+
},
|
|
1054
|
+
"z-ai/glm-4.6": {
|
|
1055
|
+
"input": "0.00000045",
|
|
1056
|
+
"output": "0.0000019"
|
|
1057
|
+
},
|
|
1058
|
+
"z-ai/glm-4.5v": {
|
|
1059
|
+
"input": "0.0000006",
|
|
1060
|
+
"output": "0.0000018"
|
|
1061
|
+
},
|
|
1062
|
+
"z-ai/glm-4.5": {
|
|
1063
|
+
"input": "0.00000035",
|
|
1064
|
+
"output": "0.00000155"
|
|
1065
|
+
},
|
|
1066
|
+
"z-ai/glm-4.5-air": {
|
|
1067
|
+
"input": "0.00000013",
|
|
1068
|
+
"output": "0.00000085"
|
|
1069
|
+
},
|
|
1070
|
+
"minimax/minimax-m2": {
|
|
1071
|
+
"input": "0.00000015",
|
|
1072
|
+
"output": "0.00000045"
|
|
1073
|
+
},
|
|
1074
|
+
"moonshotai/kimi-k2": {
|
|
1075
|
+
"input": "0.00000014",
|
|
1076
|
+
"output": "0.00000249"
|
|
1077
|
+
},
|
|
1078
|
+
"deepseek/deepseek-chat": {
|
|
1079
|
+
"input": "0.0000003",
|
|
1080
|
+
"output": "0.00000085"
|
|
1081
|
+
},
|
|
1082
|
+
"deepseek/deepseek-v3.2-exp": {
|
|
1083
|
+
"input": "0.00000027",
|
|
1084
|
+
"output": "0.0000004"
|
|
1085
|
+
},
|
|
1086
|
+
"deepseek/deepseek-chat-v3.1": {
|
|
1087
|
+
"input": "0.0000002",
|
|
1088
|
+
"output": "0.0000008"
|
|
1089
|
+
},
|
|
1090
|
+
"deepseek/deepseek-r1": {
|
|
1091
|
+
"input": "0.0000003",
|
|
1092
|
+
"output": "0.0000012"
|
|
1093
|
+
},
|
|
1094
|
+
"deepseek/deepseek-v3.1-terminus": {
|
|
1095
|
+
"input": "0.00000027",
|
|
1096
|
+
"output": "0.000001"
|
|
1097
|
+
},
|
|
1098
|
+
"qwen/qwen3-8b": {
|
|
1099
|
+
"input": "0.000000035",
|
|
1100
|
+
"output": "0.000000138"
|
|
1101
|
+
},
|
|
1102
|
+
"qwen/qwen3-30b-a3b": {
|
|
1103
|
+
"input": "0.00000006",
|
|
1104
|
+
"output": "0.00000022"
|
|
1105
|
+
},
|
|
1106
|
+
"qwen/qwen3-32b": {
|
|
1107
|
+
"input": "0.00000005",
|
|
1108
|
+
"output": "0.0000002"
|
|
1109
|
+
},
|
|
1110
|
+
"qwen/qwen3-235b-a22b": {
|
|
1111
|
+
"input": "0.00000018",
|
|
1112
|
+
"output": "0.00000054"
|
|
1113
|
+
},
|
|
1114
|
+
"qwen/qwen3-coder": {
|
|
1115
|
+
"input": "0.00000038",
|
|
1116
|
+
"output": "0.00000153"
|
|
1117
|
+
},
|
|
1118
|
+
"qwen/qwen3-coder-flash": {
|
|
1119
|
+
"input": "0.0000003",
|
|
1120
|
+
"output": "0.0000015"
|
|
1121
|
+
},
|
|
1122
|
+
"qwen/qwen3-coder-plus": {
|
|
1123
|
+
"input": "0.000001",
|
|
1124
|
+
"output": "0.000005"
|
|
1125
|
+
},
|
|
1126
|
+
"qwen/qwen3-coder-30b-a3b-instruct": {
|
|
1127
|
+
"input": "0.00000006",
|
|
1128
|
+
"output": "0.00000025"
|
|
1129
|
+
},
|
|
1130
|
+
"qwen/qwen3-max": {
|
|
1131
|
+
"input": "0.0000012",
|
|
1132
|
+
"output": "0.000006"
|
|
1133
|
+
},
|
|
1134
|
+
"qwen/qwen3-vl-235b-a22b-instruct": {
|
|
1135
|
+
"input": "0.00000022",
|
|
1136
|
+
"output": "0.00000088"
|
|
1137
|
+
},
|
|
1138
|
+
"qwen/qwen3-vl-235b-a22b-thinking": {
|
|
1139
|
+
"input": "0.0000003",
|
|
1140
|
+
"output": "0.0000012"
|
|
1141
|
+
},
|
|
1142
|
+
"inclusionai/ling-1t": {
|
|
1143
|
+
"input": "0.00000057",
|
|
1144
|
+
"output": "0.00000228"
|
|
1145
|
+
},
|
|
1146
|
+
"meta-llama/llama-4-scout": {
|
|
1147
|
+
"input": "0.00000008",
|
|
1148
|
+
"output": "0.0000003"
|
|
1149
|
+
},
|
|
1150
|
+
"meta-llama/llama-4-maverick": {
|
|
1151
|
+
"input": "0.00000015",
|
|
1152
|
+
"output": "0.0000006"
|
|
1098
1153
|
}
|
|
1154
|
+
}
|
|
1099
1155
|
}
|
|
1156
|
+
}
|
|
1100
1157
|
}
|