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