llm.rb 11.3.1 → 12.1.0

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.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +354 -2
  3. data/LICENSE +93 -17
  4. data/README.md +226 -616
  5. data/data/anthropic.json +322 -426
  6. data/data/bedrock.json +2634 -1144
  7. data/data/deepinfra.json +1513 -0
  8. data/data/deepseek.json +57 -28
  9. data/data/google.json +411 -771
  10. data/data/openai.json +1104 -771
  11. data/data/xai.json +141 -292
  12. data/data/zai.json +263 -141
  13. data/lib/llm/active_record/acts_as_agent.rb +3 -41
  14. data/lib/llm/active_record/acts_as_llm.rb +18 -0
  15. data/lib/llm/active_record.rb +3 -3
  16. data/lib/llm/agent.rb +25 -1
  17. data/lib/llm/context.rb +17 -5
  18. data/lib/llm/contract/completion.rb +2 -2
  19. data/lib/llm/json_adapter.rb +29 -3
  20. data/lib/llm/provider.rb +3 -3
  21. data/lib/llm/providers/deepinfra/audio.rb +66 -0
  22. data/lib/llm/providers/deepinfra/images.rb +90 -0
  23. data/lib/llm/providers/deepinfra/response_adapter.rb +36 -0
  24. data/lib/llm/providers/deepinfra.rb +100 -0
  25. data/lib/llm/providers/deepseek/images.rb +109 -0
  26. data/lib/llm/providers/deepseek/request_adapter.rb +32 -0
  27. data/lib/llm/providers/deepseek/response_adapter/image.rb +9 -0
  28. data/lib/llm/providers/deepseek/response_adapter.rb +29 -0
  29. data/lib/llm/providers/deepseek.rb +4 -2
  30. data/lib/llm/providers/google/request_adapter.rb +22 -5
  31. data/lib/llm/providers/google.rb +4 -4
  32. data/lib/llm/providers/llamacpp.rb +5 -5
  33. data/lib/llm/providers/openai/audio.rb +6 -2
  34. data/lib/llm/providers/openai/images.rb +9 -50
  35. data/lib/llm/providers/openai/request_adapter/respond.rb +38 -4
  36. data/lib/llm/providers/openai/response_adapter/audio.rb +5 -1
  37. data/lib/llm/providers/openai/response_adapter/completion.rb +1 -1
  38. data/lib/llm/providers/openai/response_adapter/image.rb +0 -4
  39. data/lib/llm/providers/openai/responses.rb +1 -0
  40. data/lib/llm/providers/openai/stream_parser.rb +5 -6
  41. data/lib/llm/providers/openai.rb +2 -2
  42. data/lib/llm/providers/xai/images.rb +49 -26
  43. data/lib/llm/providers/xai.rb +2 -2
  44. data/lib/llm/repl/input.rb +64 -0
  45. data/lib/llm/repl/status.rb +30 -0
  46. data/lib/llm/repl/stream.rb +46 -0
  47. data/lib/llm/repl/transcript.rb +61 -0
  48. data/lib/llm/repl/window.rb +107 -0
  49. data/lib/llm/repl.rb +78 -0
  50. data/lib/llm/response.rb +10 -0
  51. data/lib/llm/schema/leaf.rb +7 -1
  52. data/lib/llm/schema/renderer.rb +121 -0
  53. data/lib/llm/schema.rb +30 -0
  54. data/lib/llm/sequel/agent.rb +2 -43
  55. data/lib/llm/sequel/plugin.rb +25 -7
  56. data/lib/llm/tools/chdir.rb +23 -0
  57. data/lib/llm/tools/git.rb +41 -0
  58. data/lib/llm/tools/mkdir.rb +32 -0
  59. data/lib/llm/tools/pwd.rb +20 -0
  60. data/lib/llm/tools/read_file.rb +40 -0
  61. data/lib/llm/tools/rg.rb +46 -0
  62. data/lib/llm/tools/shell.rb +48 -0
  63. data/lib/llm/tools/swap_text.rb +25 -0
  64. data/lib/llm/tools/write_file.rb +24 -0
  65. data/lib/llm/tools.rb +5 -0
  66. data/lib/llm/tracer/telemetry.rb +4 -6
  67. data/lib/llm/tracer.rb +9 -21
  68. data/lib/llm/transport/execution.rb +16 -1
  69. data/lib/llm/transport/net_http_adapter.rb +1 -1
  70. data/lib/llm/uridata.rb +16 -0
  71. data/lib/llm/version.rb +1 -1
  72. data/lib/llm.rb +9 -0
  73. data/llm.gemspec +5 -18
  74. data/resources/deepdive.md +829 -263
  75. metadata +31 -18
  76. data/lib/llm/tracer/langsmith.rb +0 -144
@@ -0,0 +1,1513 @@
1
+ {
2
+ "id": "deepinfra",
3
+ "env": [
4
+ "DEEPINFRA_API_KEY"
5
+ ],
6
+ "npm": "@ai-sdk/deepinfra",
7
+ "name": "Deep Infra",
8
+ "doc": "https://deepinfra.com/models",
9
+ "models": {
10
+ "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8": {
11
+ "id": "meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8",
12
+ "name": "Llama 4 Maverick 17B FP8",
13
+ "description": "Open multimodal Llama model for strong reasoning and fast responses",
14
+ "family": "llama",
15
+ "attachment": true,
16
+ "reasoning": false,
17
+ "tool_call": false,
18
+ "structured_output": true,
19
+ "release_date": "2025-04-05",
20
+ "last_updated": "2025-04-05",
21
+ "modalities": {
22
+ "input": [
23
+ "text",
24
+ "image"
25
+ ],
26
+ "output": [
27
+ "text"
28
+ ]
29
+ },
30
+ "open_weights": true,
31
+ "limit": {
32
+ "context": 1048576,
33
+ "output": 16384
34
+ },
35
+ "cost": {
36
+ "input": 0.15,
37
+ "output": 0.6
38
+ }
39
+ },
40
+ "meta-llama/Llama-4-Scout-17B-16E-Instruct": {
41
+ "id": "meta-llama/Llama-4-Scout-17B-16E-Instruct",
42
+ "name": "Llama 4 Scout 17B",
43
+ "description": "Open multimodal Llama model for long-context analysis and efficient agents",
44
+ "family": "llama",
45
+ "attachment": true,
46
+ "reasoning": false,
47
+ "tool_call": true,
48
+ "structured_output": true,
49
+ "release_date": "2025-04-05",
50
+ "last_updated": "2025-04-05",
51
+ "modalities": {
52
+ "input": [
53
+ "text",
54
+ "image"
55
+ ],
56
+ "output": [
57
+ "text"
58
+ ]
59
+ },
60
+ "open_weights": true,
61
+ "limit": {
62
+ "context": 327680,
63
+ "output": 16384
64
+ },
65
+ "cost": {
66
+ "input": 0.1,
67
+ "output": 0.3
68
+ }
69
+ },
70
+ "meta-llama/Llama-3.3-70B-Instruct-Turbo": {
71
+ "id": "meta-llama/Llama-3.3-70B-Instruct-Turbo",
72
+ "name": "Llama 3.3 70B Turbo",
73
+ "description": "Compact Llama instruction model for fast chat and local deployment",
74
+ "family": "llama",
75
+ "attachment": false,
76
+ "reasoning": false,
77
+ "tool_call": true,
78
+ "structured_output": true,
79
+ "release_date": "2024-12-06",
80
+ "last_updated": "2024-12-06",
81
+ "modalities": {
82
+ "input": [
83
+ "text"
84
+ ],
85
+ "output": [
86
+ "text"
87
+ ]
88
+ },
89
+ "open_weights": true,
90
+ "limit": {
91
+ "context": 131072,
92
+ "output": 16384
93
+ },
94
+ "cost": {
95
+ "input": 0.1,
96
+ "output": 0.32
97
+ }
98
+ },
99
+ "moonshotai/Kimi-K2.6": {
100
+ "id": "moonshotai/Kimi-K2.6",
101
+ "name": "Kimi K2.6",
102
+ "description": "Kimi multimodal agent model for visual understanding, coding, and planning",
103
+ "family": "kimi-k2",
104
+ "attachment": true,
105
+ "reasoning": true,
106
+ "reasoning_options": [
107
+ {
108
+ "type": "toggle"
109
+ }
110
+ ],
111
+ "tool_call": true,
112
+ "interleaved": {
113
+ "field": "reasoning_content"
114
+ },
115
+ "structured_output": true,
116
+ "temperature": true,
117
+ "knowledge": "2024-04",
118
+ "release_date": "2026-04-21",
119
+ "last_updated": "2026-04-21",
120
+ "modalities": {
121
+ "input": [
122
+ "text",
123
+ "image",
124
+ "video"
125
+ ],
126
+ "output": [
127
+ "text"
128
+ ]
129
+ },
130
+ "open_weights": true,
131
+ "limit": {
132
+ "context": 262144,
133
+ "output": 16384
134
+ },
135
+ "cost": {
136
+ "input": 0.75,
137
+ "output": 3.5,
138
+ "cache_read": 0.15
139
+ }
140
+ },
141
+ "moonshotai/Kimi-K2.5": {
142
+ "id": "moonshotai/Kimi-K2.5",
143
+ "name": "Kimi K2.5",
144
+ "description": "Kimi multimodal agent model for visual understanding, coding, and planning",
145
+ "family": "kimi-k2",
146
+ "attachment": true,
147
+ "reasoning": true,
148
+ "reasoning_options": [
149
+ {
150
+ "type": "toggle"
151
+ }
152
+ ],
153
+ "tool_call": true,
154
+ "interleaved": {
155
+ "field": "reasoning_content"
156
+ },
157
+ "structured_output": true,
158
+ "temperature": true,
159
+ "knowledge": "2025-01",
160
+ "release_date": "2026-01-27",
161
+ "last_updated": "2026-01-27",
162
+ "modalities": {
163
+ "input": [
164
+ "text",
165
+ "image",
166
+ "video"
167
+ ],
168
+ "output": [
169
+ "text"
170
+ ]
171
+ },
172
+ "open_weights": true,
173
+ "limit": {
174
+ "context": 262144,
175
+ "output": 32768
176
+ },
177
+ "cost": {
178
+ "input": 0.45,
179
+ "output": 2.25,
180
+ "cache_read": 0.07
181
+ }
182
+ },
183
+ "moonshotai/Kimi-K2.7-Code": {
184
+ "id": "moonshotai/Kimi-K2.7-Code",
185
+ "name": "Kimi K2.7 Code",
186
+ "description": "Coding-focused Kimi model, stronger on long-horizon repo work with less overthinking",
187
+ "family": "kimi-k2",
188
+ "attachment": true,
189
+ "reasoning": true,
190
+ "reasoning_options": [
191
+ {
192
+ "type": "toggle"
193
+ }
194
+ ],
195
+ "tool_call": true,
196
+ "interleaved": {
197
+ "field": "reasoning_content"
198
+ },
199
+ "structured_output": true,
200
+ "temperature": false,
201
+ "knowledge": "2025-01",
202
+ "release_date": "2026-06-12",
203
+ "last_updated": "2026-06-12",
204
+ "modalities": {
205
+ "input": [
206
+ "text",
207
+ "image",
208
+ "video"
209
+ ],
210
+ "output": [
211
+ "text"
212
+ ]
213
+ },
214
+ "open_weights": true,
215
+ "limit": {
216
+ "context": 262144,
217
+ "output": 262144
218
+ },
219
+ "cost": {
220
+ "input": 0.74,
221
+ "output": 3.5,
222
+ "cache_read": 0.15
223
+ }
224
+ },
225
+ "google/gemma-4-31B-it": {
226
+ "id": "google/gemma-4-31B-it",
227
+ "name": "Gemma 4 31B IT",
228
+ "description": "Largest Gemma 4 instruction model for open, self-hosted chat and reasoning",
229
+ "family": "gemma",
230
+ "attachment": true,
231
+ "reasoning": true,
232
+ "reasoning_options": [
233
+ {
234
+ "type": "toggle"
235
+ }
236
+ ],
237
+ "tool_call": true,
238
+ "structured_output": true,
239
+ "temperature": true,
240
+ "release_date": "2026-04-02",
241
+ "last_updated": "2026-04-02",
242
+ "modalities": {
243
+ "input": [
244
+ "text",
245
+ "image",
246
+ "video"
247
+ ],
248
+ "output": [
249
+ "text"
250
+ ]
251
+ },
252
+ "open_weights": true,
253
+ "limit": {
254
+ "context": 262144,
255
+ "output": 32768
256
+ },
257
+ "cost": {
258
+ "input": 0.13,
259
+ "output": 0.38
260
+ }
261
+ },
262
+ "google/gemma-4-26B-A4B-it": {
263
+ "id": "google/gemma-4-26B-A4B-it",
264
+ "name": "Gemma 4 26B A4B IT",
265
+ "description": "Open Gemma instruction model for efficient chat and self-hosted deployments",
266
+ "family": "gemma",
267
+ "attachment": true,
268
+ "reasoning": true,
269
+ "reasoning_options": [
270
+ {
271
+ "type": "toggle"
272
+ }
273
+ ],
274
+ "tool_call": true,
275
+ "structured_output": true,
276
+ "temperature": true,
277
+ "release_date": "2026-04-02",
278
+ "last_updated": "2026-04-02",
279
+ "modalities": {
280
+ "input": [
281
+ "text",
282
+ "image"
283
+ ],
284
+ "output": [
285
+ "text"
286
+ ]
287
+ },
288
+ "open_weights": true,
289
+ "limit": {
290
+ "context": 262144,
291
+ "output": 32768
292
+ },
293
+ "cost": {
294
+ "input": 0.07,
295
+ "output": 0.34
296
+ }
297
+ },
298
+ "Qwen/Qwen3.6-35B-A3B": {
299
+ "id": "Qwen/Qwen3.6-35B-A3B",
300
+ "name": "Qwen3.6 35B A3B",
301
+ "description": "Qwen vision-language model for visual reasoning, documents, and agent tasks",
302
+ "family": "qwen",
303
+ "attachment": true,
304
+ "reasoning": true,
305
+ "reasoning_options": [],
306
+ "tool_call": true,
307
+ "structured_output": true,
308
+ "temperature": true,
309
+ "release_date": "2026-04-01",
310
+ "last_updated": "2026-04-01",
311
+ "modalities": {
312
+ "input": [
313
+ "text",
314
+ "image",
315
+ "video"
316
+ ],
317
+ "output": [
318
+ "text"
319
+ ]
320
+ },
321
+ "open_weights": true,
322
+ "limit": {
323
+ "context": 262144,
324
+ "output": 81920
325
+ },
326
+ "cost": {
327
+ "input": 0.15,
328
+ "output": 0.95
329
+ }
330
+ },
331
+ "Qwen/Qwen3.7-Max": {
332
+ "id": "Qwen/Qwen3.7-Max",
333
+ "name": "Qwen3.7 Max",
334
+ "description": "Qwen frontier model tuned for agent frameworks, coding assistants, and long tasks",
335
+ "family": "qwen",
336
+ "attachment": false,
337
+ "reasoning": false,
338
+ "tool_call": true,
339
+ "structured_output": true,
340
+ "temperature": true,
341
+ "release_date": "2026-05-21",
342
+ "last_updated": "2026-05-21",
343
+ "modalities": {
344
+ "input": [
345
+ "text"
346
+ ],
347
+ "output": [
348
+ "text"
349
+ ]
350
+ },
351
+ "open_weights": false,
352
+ "limit": {
353
+ "context": 256000,
354
+ "output": 65536
355
+ },
356
+ "cost": {
357
+ "input": 2.5,
358
+ "output": 7.5,
359
+ "cache_read": 0.5,
360
+ "tiers": [
361
+ {
362
+ "input": 5,
363
+ "output": 15,
364
+ "cache_read": 1,
365
+ "tier": {
366
+ "type": "context",
367
+ "size": 32000
368
+ }
369
+ },
370
+ {
371
+ "input": 6.25,
372
+ "output": 18.5,
373
+ "cache_read": 1.25,
374
+ "tier": {
375
+ "type": "context",
376
+ "size": 128000
377
+ }
378
+ }
379
+ ]
380
+ }
381
+ },
382
+ "Qwen/Qwen3.6-27B": {
383
+ "id": "Qwen/Qwen3.6-27B",
384
+ "name": "Qwen3.6 27B",
385
+ "description": "Qwen vision-language model for visual reasoning, documents, and agent tasks",
386
+ "family": "qwen",
387
+ "attachment": true,
388
+ "reasoning": true,
389
+ "reasoning_options": [],
390
+ "tool_call": true,
391
+ "structured_output": true,
392
+ "temperature": true,
393
+ "release_date": "2026-04-22",
394
+ "last_updated": "2026-04-22",
395
+ "modalities": {
396
+ "input": [
397
+ "text",
398
+ "image",
399
+ "video",
400
+ "audio"
401
+ ],
402
+ "output": [
403
+ "text"
404
+ ]
405
+ },
406
+ "open_weights": true,
407
+ "limit": {
408
+ "context": 262144,
409
+ "output": 65536
410
+ },
411
+ "cost": {
412
+ "input": 0.32,
413
+ "output": 3.2
414
+ }
415
+ },
416
+ "Qwen/Qwen3-Next-80B-A3B-Instruct": {
417
+ "id": "Qwen/Qwen3-Next-80B-A3B-Instruct",
418
+ "name": "Qwen3-Next 80B-A3B Instruct",
419
+ "description": "Qwen instruction model for multilingual chat, reasoning, and tool use",
420
+ "family": "qwen",
421
+ "attachment": false,
422
+ "reasoning": false,
423
+ "tool_call": true,
424
+ "structured_output": true,
425
+ "temperature": true,
426
+ "knowledge": "2025-04",
427
+ "release_date": "2025-09",
428
+ "last_updated": "2025-09",
429
+ "modalities": {
430
+ "input": [
431
+ "text"
432
+ ],
433
+ "output": [
434
+ "text"
435
+ ]
436
+ },
437
+ "open_weights": true,
438
+ "limit": {
439
+ "context": 262144,
440
+ "output": 32768
441
+ },
442
+ "cost": {
443
+ "input": 0.09,
444
+ "output": 1.1
445
+ }
446
+ },
447
+ "Qwen/Qwen3-Max": {
448
+ "id": "Qwen/Qwen3-Max",
449
+ "name": "Qwen3 Max",
450
+ "description": "Flagship Qwen3 model for coding agents, complex reasoning, and tool use",
451
+ "family": "qwen",
452
+ "attachment": false,
453
+ "reasoning": false,
454
+ "tool_call": true,
455
+ "structured_output": true,
456
+ "temperature": true,
457
+ "knowledge": "2025-04",
458
+ "release_date": "2025-09-23",
459
+ "last_updated": "2025-09-23",
460
+ "modalities": {
461
+ "input": [
462
+ "text"
463
+ ],
464
+ "output": [
465
+ "text"
466
+ ]
467
+ },
468
+ "open_weights": false,
469
+ "limit": {
470
+ "context": 256000,
471
+ "output": 65536
472
+ },
473
+ "cost": {
474
+ "input": 1.2,
475
+ "output": 6,
476
+ "cache_read": 0.24,
477
+ "tiers": [
478
+ {
479
+ "input": 2.4,
480
+ "output": 12,
481
+ "cache_read": 0.48,
482
+ "tier": {
483
+ "type": "context",
484
+ "size": 32000
485
+ }
486
+ },
487
+ {
488
+ "input": 3,
489
+ "output": 15,
490
+ "cache_read": 0.6,
491
+ "tier": {
492
+ "type": "context",
493
+ "size": 128000
494
+ }
495
+ }
496
+ ]
497
+ }
498
+ },
499
+ "Qwen/Qwen3.5-397B-A17B": {
500
+ "id": "Qwen/Qwen3.5-397B-A17B",
501
+ "name": "Qwen 3.5 397B A17B",
502
+ "description": "Qwen vision-language model for visual reasoning, documents, and agent tasks",
503
+ "family": "qwen",
504
+ "attachment": true,
505
+ "reasoning": true,
506
+ "reasoning_options": [],
507
+ "tool_call": true,
508
+ "structured_output": true,
509
+ "temperature": true,
510
+ "knowledge": "2025-01",
511
+ "release_date": "2026-02-01",
512
+ "last_updated": "2026-04-20",
513
+ "modalities": {
514
+ "input": [
515
+ "text",
516
+ "image",
517
+ "video"
518
+ ],
519
+ "output": [
520
+ "text"
521
+ ]
522
+ },
523
+ "open_weights": true,
524
+ "limit": {
525
+ "context": 262144,
526
+ "output": 81920
527
+ },
528
+ "cost": {
529
+ "input": 0.45,
530
+ "output": 3,
531
+ "cache_read": 0.22
532
+ }
533
+ },
534
+ "Qwen/Qwen3.5-122B-A10B": {
535
+ "id": "Qwen/Qwen3.5-122B-A10B",
536
+ "name": "Qwen3.5 122B-A10B",
537
+ "description": "Qwen vision-language model for visual reasoning, documents, and agent tasks",
538
+ "family": "qwen",
539
+ "attachment": true,
540
+ "reasoning": true,
541
+ "reasoning_options": [],
542
+ "tool_call": true,
543
+ "structured_output": true,
544
+ "temperature": true,
545
+ "release_date": "2026-02-23",
546
+ "last_updated": "2026-02-23",
547
+ "modalities": {
548
+ "input": [
549
+ "text",
550
+ "image",
551
+ "video",
552
+ "audio"
553
+ ],
554
+ "output": [
555
+ "text"
556
+ ]
557
+ },
558
+ "open_weights": true,
559
+ "limit": {
560
+ "context": 16384,
561
+ "output": 65536
562
+ },
563
+ "cost": {
564
+ "input": 0.29,
565
+ "output": 2.4
566
+ }
567
+ },
568
+ "Qwen/Qwen3.5-27B": {
569
+ "id": "Qwen/Qwen3.5-27B",
570
+ "name": "Qwen3.5 27B",
571
+ "description": "Qwen vision-language model for visual reasoning, documents, and agent tasks",
572
+ "family": "qwen",
573
+ "attachment": true,
574
+ "reasoning": true,
575
+ "reasoning_options": [],
576
+ "tool_call": true,
577
+ "structured_output": true,
578
+ "temperature": true,
579
+ "release_date": "2026-02-23",
580
+ "last_updated": "2026-02-23",
581
+ "modalities": {
582
+ "input": [
583
+ "text",
584
+ "image",
585
+ "video",
586
+ "audio"
587
+ ],
588
+ "output": [
589
+ "text"
590
+ ]
591
+ },
592
+ "open_weights": true,
593
+ "limit": {
594
+ "context": 262144,
595
+ "output": 65536
596
+ },
597
+ "cost": {
598
+ "input": 0.26,
599
+ "output": 2.6
600
+ }
601
+ },
602
+ "Qwen/Qwen3.5-9B": {
603
+ "id": "Qwen/Qwen3.5-9B",
604
+ "name": "Qwen3.5 9B",
605
+ "description": "Qwen instruction model for multilingual chat, reasoning, and tool use",
606
+ "family": "qwen",
607
+ "attachment": true,
608
+ "reasoning": true,
609
+ "reasoning_options": [],
610
+ "tool_call": true,
611
+ "structured_output": true,
612
+ "temperature": true,
613
+ "release_date": "2026-02-23",
614
+ "last_updated": "2026-02-23",
615
+ "modalities": {
616
+ "input": [
617
+ "text",
618
+ "image",
619
+ "video"
620
+ ],
621
+ "output": [
622
+ "text"
623
+ ]
624
+ },
625
+ "open_weights": true,
626
+ "limit": {
627
+ "context": 262144,
628
+ "output": 65536
629
+ },
630
+ "cost": {
631
+ "input": 0.1,
632
+ "output": 0.15
633
+ }
634
+ },
635
+ "Qwen/Qwen3-32B": {
636
+ "id": "Qwen/Qwen3-32B",
637
+ "name": "Qwen3 32B",
638
+ "description": "Dense open Qwen model for self-hosted chat, reasoning, and coding",
639
+ "family": "qwen",
640
+ "attachment": false,
641
+ "reasoning": true,
642
+ "reasoning_options": [],
643
+ "tool_call": true,
644
+ "structured_output": true,
645
+ "temperature": true,
646
+ "knowledge": "2025-04",
647
+ "release_date": "2025-04",
648
+ "last_updated": "2025-04",
649
+ "modalities": {
650
+ "input": [
651
+ "text"
652
+ ],
653
+ "output": [
654
+ "text"
655
+ ]
656
+ },
657
+ "open_weights": true,
658
+ "limit": {
659
+ "context": 40960,
660
+ "output": 16384
661
+ },
662
+ "cost": {
663
+ "input": 0.08,
664
+ "output": 0.28
665
+ }
666
+ },
667
+ "Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo": {
668
+ "id": "Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo",
669
+ "name": "Qwen3 Coder 480B A35B Instruct Turbo",
670
+ "description": "Qwen coding model for software agents, repository edits, and code reasoning",
671
+ "family": "qwen",
672
+ "attachment": false,
673
+ "reasoning": false,
674
+ "tool_call": true,
675
+ "structured_output": true,
676
+ "temperature": true,
677
+ "knowledge": "2025-04",
678
+ "release_date": "2025-07-23",
679
+ "last_updated": "2025-07-23",
680
+ "modalities": {
681
+ "input": [
682
+ "text"
683
+ ],
684
+ "output": [
685
+ "text"
686
+ ]
687
+ },
688
+ "open_weights": true,
689
+ "limit": {
690
+ "context": 262144,
691
+ "output": 66536
692
+ },
693
+ "cost": {
694
+ "input": 0.3,
695
+ "output": 1,
696
+ "cache_read": 0.1
697
+ }
698
+ },
699
+ "Qwen/Qwen3.5-35B-A3B": {
700
+ "id": "Qwen/Qwen3.5-35B-A3B",
701
+ "name": "Qwen 3.5 35B A3B",
702
+ "description": "Qwen vision-language model for visual reasoning, documents, and agent tasks",
703
+ "family": "qwen",
704
+ "attachment": true,
705
+ "reasoning": true,
706
+ "reasoning_options": [],
707
+ "tool_call": true,
708
+ "structured_output": true,
709
+ "temperature": true,
710
+ "knowledge": "2025-01",
711
+ "release_date": "2026-02-01",
712
+ "last_updated": "2026-04-20",
713
+ "modalities": {
714
+ "input": [
715
+ "text",
716
+ "image",
717
+ "video"
718
+ ],
719
+ "output": [
720
+ "text"
721
+ ]
722
+ },
723
+ "open_weights": true,
724
+ "limit": {
725
+ "context": 262144,
726
+ "output": 81920
727
+ },
728
+ "cost": {
729
+ "input": 0.14,
730
+ "output": 1,
731
+ "cache_read": 0.05
732
+ }
733
+ },
734
+ "openai/gpt-oss-120b": {
735
+ "id": "openai/gpt-oss-120b",
736
+ "name": "GPT OSS 120B",
737
+ "description": "Open-weight GPT model for self-hosted reasoning and instruction-following workloads",
738
+ "family": "gpt-oss",
739
+ "attachment": false,
740
+ "reasoning": true,
741
+ "reasoning_options": [
742
+ {
743
+ "type": "effort",
744
+ "values": [
745
+ "low",
746
+ "medium",
747
+ "high"
748
+ ]
749
+ }
750
+ ],
751
+ "tool_call": true,
752
+ "structured_output": true,
753
+ "temperature": true,
754
+ "release_date": "2025-08-05",
755
+ "last_updated": "2025-08-05",
756
+ "modalities": {
757
+ "input": [
758
+ "text"
759
+ ],
760
+ "output": [
761
+ "text"
762
+ ]
763
+ },
764
+ "open_weights": true,
765
+ "limit": {
766
+ "context": 131072,
767
+ "output": 16384
768
+ },
769
+ "cost": {
770
+ "input": 0.039,
771
+ "output": 0.17
772
+ }
773
+ },
774
+ "openai/gpt-oss-20b": {
775
+ "id": "openai/gpt-oss-20b",
776
+ "name": "GPT OSS 20B",
777
+ "description": "Open-weight GPT model for self-hosted reasoning and instruction-following workloads",
778
+ "family": "gpt-oss",
779
+ "attachment": false,
780
+ "reasoning": true,
781
+ "reasoning_options": [
782
+ {
783
+ "type": "effort",
784
+ "values": [
785
+ "low",
786
+ "medium",
787
+ "high"
788
+ ]
789
+ }
790
+ ],
791
+ "tool_call": true,
792
+ "structured_output": true,
793
+ "temperature": true,
794
+ "release_date": "2025-08-05",
795
+ "last_updated": "2025-08-05",
796
+ "modalities": {
797
+ "input": [
798
+ "text"
799
+ ],
800
+ "output": [
801
+ "text"
802
+ ]
803
+ },
804
+ "open_weights": true,
805
+ "limit": {
806
+ "context": 131072,
807
+ "output": 16384
808
+ },
809
+ "cost": {
810
+ "input": 0.03,
811
+ "output": 0.14
812
+ }
813
+ },
814
+ "XiaomiMiMo/MiMo-V2.5": {
815
+ "id": "XiaomiMiMo/MiMo-V2.5",
816
+ "name": "MiMo-V2.5",
817
+ "description": "Open MiMo model for multimodal coding agents and long-context automation",
818
+ "family": "mimo",
819
+ "attachment": true,
820
+ "reasoning": true,
821
+ "reasoning_options": [
822
+ {
823
+ "type": "toggle"
824
+ }
825
+ ],
826
+ "tool_call": true,
827
+ "interleaved": {
828
+ "field": "reasoning_content"
829
+ },
830
+ "structured_output": true,
831
+ "temperature": true,
832
+ "knowledge": "2024-12",
833
+ "release_date": "2026-04-22",
834
+ "last_updated": "2026-04-22",
835
+ "modalities": {
836
+ "input": [
837
+ "text",
838
+ "image",
839
+ "audio",
840
+ "video"
841
+ ],
842
+ "output": [
843
+ "text"
844
+ ]
845
+ },
846
+ "open_weights": true,
847
+ "limit": {
848
+ "context": 262144,
849
+ "output": 16384
850
+ },
851
+ "cost": {
852
+ "input": 0.4,
853
+ "output": 2,
854
+ "cache_read": 0.08
855
+ }
856
+ },
857
+ "XiaomiMiMo/MiMo-V2.5-Pro": {
858
+ "id": "XiaomiMiMo/MiMo-V2.5-Pro",
859
+ "name": "MiMo-V2.5-Pro",
860
+ "description": "Stronger MiMo Pro tier for multimodal reasoning and coding-agent execution",
861
+ "family": "mimo",
862
+ "attachment": true,
863
+ "reasoning": true,
864
+ "reasoning_options": [
865
+ {
866
+ "type": "toggle"
867
+ }
868
+ ],
869
+ "tool_call": true,
870
+ "interleaved": {
871
+ "field": "reasoning_content"
872
+ },
873
+ "structured_output": true,
874
+ "temperature": true,
875
+ "knowledge": "2024-12",
876
+ "release_date": "2026-04-22",
877
+ "last_updated": "2026-04-22",
878
+ "modalities": {
879
+ "input": [
880
+ "text",
881
+ "audio"
882
+ ],
883
+ "output": [
884
+ "text"
885
+ ]
886
+ },
887
+ "open_weights": true,
888
+ "limit": {
889
+ "context": 1048576,
890
+ "output": 16384
891
+ },
892
+ "cost": {
893
+ "input": 1,
894
+ "output": 3,
895
+ "cache_read": 0.2
896
+ }
897
+ },
898
+ "nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning": {
899
+ "id": "nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning",
900
+ "name": "Nemotron 3 Nano Omni 30B A3B Reasoning",
901
+ "description": "Open Nemotron omni model combining reasoning with text, vision, and audio",
902
+ "family": "nemotron",
903
+ "attachment": true,
904
+ "reasoning": true,
905
+ "reasoning_options": [],
906
+ "tool_call": true,
907
+ "structured_output": true,
908
+ "temperature": true,
909
+ "release_date": "2026-04-28",
910
+ "last_updated": "2026-04-28",
911
+ "modalities": {
912
+ "input": [
913
+ "text",
914
+ "image",
915
+ "video",
916
+ "audio"
917
+ ],
918
+ "output": [
919
+ "text"
920
+ ]
921
+ },
922
+ "open_weights": true,
923
+ "limit": {
924
+ "context": 262144,
925
+ "output": 65536
926
+ },
927
+ "cost": {
928
+ "input": 0.2,
929
+ "output": 0.8
930
+ }
931
+ },
932
+ "nvidia/Nemotron-3-Nano-30B-A3B": {
933
+ "id": "nvidia/Nemotron-3-Nano-30B-A3B",
934
+ "name": "Nemotron 3 Nano 30B A3B",
935
+ "description": "Small Nemotron 3 MoE for efficient coding, math, and long-context agents",
936
+ "family": "nemotron",
937
+ "attachment": false,
938
+ "reasoning": true,
939
+ "reasoning_options": [
940
+ {
941
+ "type": "toggle"
942
+ }
943
+ ],
944
+ "tool_call": true,
945
+ "temperature": true,
946
+ "release_date": "2025-12-15",
947
+ "last_updated": "2025-12-15",
948
+ "modalities": {
949
+ "input": [
950
+ "text"
951
+ ],
952
+ "output": [
953
+ "text"
954
+ ]
955
+ },
956
+ "open_weights": true,
957
+ "limit": {
958
+ "context": 262144,
959
+ "output": 262144
960
+ },
961
+ "cost": {
962
+ "input": 0.05,
963
+ "output": 0.2
964
+ }
965
+ },
966
+ "nvidia/Llama-3.3-Nemotron-Super-49B-v1.5": {
967
+ "id": "nvidia/Llama-3.3-Nemotron-Super-49B-v1.5",
968
+ "name": "Llama 3.3 Nemotron Super 49B v1.5",
969
+ "description": "Nemotron model for efficient reasoning, coding, and specialized AI agents",
970
+ "family": "nemotron",
971
+ "attachment": false,
972
+ "reasoning": true,
973
+ "reasoning_options": [],
974
+ "tool_call": true,
975
+ "structured_output": true,
976
+ "temperature": true,
977
+ "release_date": "2025-07-25",
978
+ "last_updated": "2025-07-25",
979
+ "modalities": {
980
+ "input": [
981
+ "text"
982
+ ],
983
+ "output": [
984
+ "text"
985
+ ]
986
+ },
987
+ "open_weights": true,
988
+ "limit": {
989
+ "context": 131072,
990
+ "output": 131072
991
+ },
992
+ "cost": {
993
+ "input": 0.4,
994
+ "output": 0.4
995
+ }
996
+ },
997
+ "zai-org/GLM-4.7-Flash": {
998
+ "id": "zai-org/GLM-4.7-Flash",
999
+ "name": "GLM-4.7-Flash",
1000
+ "description": "Efficient GLM model for fast reasoning, coding, and agent workflows",
1001
+ "family": "glm-flash",
1002
+ "attachment": false,
1003
+ "reasoning": true,
1004
+ "reasoning_options": [],
1005
+ "tool_call": true,
1006
+ "interleaved": {
1007
+ "field": "reasoning_content"
1008
+ },
1009
+ "structured_output": true,
1010
+ "temperature": true,
1011
+ "knowledge": "2025-04",
1012
+ "release_date": "2026-01-19",
1013
+ "last_updated": "2026-01-19",
1014
+ "modalities": {
1015
+ "input": [
1016
+ "text"
1017
+ ],
1018
+ "output": [
1019
+ "text"
1020
+ ]
1021
+ },
1022
+ "open_weights": true,
1023
+ "limit": {
1024
+ "context": 202752,
1025
+ "output": 16384
1026
+ },
1027
+ "cost": {
1028
+ "input": 0.06,
1029
+ "output": 0.4,
1030
+ "cache_read": 0.01
1031
+ }
1032
+ },
1033
+ "zai-org/GLM-4.6": {
1034
+ "id": "zai-org/GLM-4.6",
1035
+ "name": "GLM-4.6",
1036
+ "description": "Flagship GLM model for hybrid reasoning, coding, and agentic engineering",
1037
+ "family": "glm",
1038
+ "attachment": false,
1039
+ "reasoning": true,
1040
+ "reasoning_options": [
1041
+ {
1042
+ "type": "toggle"
1043
+ }
1044
+ ],
1045
+ "tool_call": true,
1046
+ "interleaved": {
1047
+ "field": "reasoning_content"
1048
+ },
1049
+ "structured_output": true,
1050
+ "temperature": true,
1051
+ "knowledge": "2025-04",
1052
+ "release_date": "2025-09-30",
1053
+ "last_updated": "2025-09-30",
1054
+ "modalities": {
1055
+ "input": [
1056
+ "text"
1057
+ ],
1058
+ "output": [
1059
+ "text"
1060
+ ]
1061
+ },
1062
+ "open_weights": true,
1063
+ "limit": {
1064
+ "context": 202752,
1065
+ "output": 131072
1066
+ },
1067
+ "cost": {
1068
+ "input": 0.43,
1069
+ "output": 1.74,
1070
+ "cache_read": 0.08
1071
+ }
1072
+ },
1073
+ "zai-org/GLM-5": {
1074
+ "id": "zai-org/GLM-5",
1075
+ "name": "GLM-5",
1076
+ "description": "Flagship GLM model for hybrid reasoning, coding, and agentic engineering",
1077
+ "family": "glm",
1078
+ "attachment": false,
1079
+ "reasoning": true,
1080
+ "reasoning_options": [
1081
+ {
1082
+ "type": "toggle"
1083
+ }
1084
+ ],
1085
+ "tool_call": true,
1086
+ "interleaved": {
1087
+ "field": "reasoning_content"
1088
+ },
1089
+ "structured_output": true,
1090
+ "temperature": true,
1091
+ "knowledge": "2025-12",
1092
+ "release_date": "2026-02-12",
1093
+ "last_updated": "2026-02-12",
1094
+ "modalities": {
1095
+ "input": [
1096
+ "text"
1097
+ ],
1098
+ "output": [
1099
+ "text"
1100
+ ]
1101
+ },
1102
+ "open_weights": true,
1103
+ "limit": {
1104
+ "context": 202752,
1105
+ "output": 16384
1106
+ },
1107
+ "cost": {
1108
+ "input": 0.6,
1109
+ "output": 2.08,
1110
+ "cache_read": 0.12
1111
+ }
1112
+ },
1113
+ "zai-org/GLM-4.7": {
1114
+ "id": "zai-org/GLM-4.7",
1115
+ "name": "GLM-4.7",
1116
+ "description": "Flagship GLM model for hybrid reasoning, coding, and agentic engineering",
1117
+ "family": "glm",
1118
+ "attachment": false,
1119
+ "reasoning": true,
1120
+ "reasoning_options": [
1121
+ {
1122
+ "type": "toggle"
1123
+ }
1124
+ ],
1125
+ "tool_call": true,
1126
+ "interleaved": {
1127
+ "field": "reasoning_content"
1128
+ },
1129
+ "structured_output": true,
1130
+ "temperature": true,
1131
+ "knowledge": "2025-04",
1132
+ "release_date": "2025-12-22",
1133
+ "last_updated": "2025-12-22",
1134
+ "modalities": {
1135
+ "input": [
1136
+ "text"
1137
+ ],
1138
+ "output": [
1139
+ "text"
1140
+ ]
1141
+ },
1142
+ "open_weights": true,
1143
+ "limit": {
1144
+ "context": 202752,
1145
+ "output": 16384
1146
+ },
1147
+ "cost": {
1148
+ "input": 0.4,
1149
+ "output": 1.75,
1150
+ "cache_read": 0.08
1151
+ }
1152
+ },
1153
+ "zai-org/GLM-5.2": {
1154
+ "id": "zai-org/GLM-5.2",
1155
+ "name": "GLM-5.2",
1156
+ "description": "Open flagship GLM for long-horizon coding agents and million-token context work",
1157
+ "family": "glm",
1158
+ "attachment": false,
1159
+ "reasoning": true,
1160
+ "reasoning_options": [
1161
+ {
1162
+ "type": "toggle"
1163
+ },
1164
+ {
1165
+ "type": "effort",
1166
+ "values": [
1167
+ "low",
1168
+ "medium",
1169
+ "high",
1170
+ "xhigh"
1171
+ ]
1172
+ }
1173
+ ],
1174
+ "tool_call": true,
1175
+ "interleaved": {
1176
+ "field": "reasoning_content"
1177
+ },
1178
+ "structured_output": true,
1179
+ "temperature": true,
1180
+ "release_date": "2026-06-13",
1181
+ "last_updated": "2026-06-13",
1182
+ "modalities": {
1183
+ "input": [
1184
+ "text"
1185
+ ],
1186
+ "output": [
1187
+ "text"
1188
+ ]
1189
+ },
1190
+ "open_weights": true,
1191
+ "limit": {
1192
+ "context": 1048576,
1193
+ "output": 32768
1194
+ },
1195
+ "cost": {
1196
+ "input": 0.93,
1197
+ "output": 3,
1198
+ "cache_read": 0.18
1199
+ }
1200
+ },
1201
+ "zai-org/GLM-5.1": {
1202
+ "id": "zai-org/GLM-5.1",
1203
+ "name": "GLM-5.1",
1204
+ "description": "Flagship GLM model for hybrid reasoning, coding, and agentic engineering",
1205
+ "family": "glm",
1206
+ "attachment": false,
1207
+ "reasoning": true,
1208
+ "reasoning_options": [
1209
+ {
1210
+ "type": "toggle"
1211
+ }
1212
+ ],
1213
+ "tool_call": true,
1214
+ "interleaved": {
1215
+ "field": "reasoning_content"
1216
+ },
1217
+ "structured_output": true,
1218
+ "temperature": true,
1219
+ "knowledge": "2025-04",
1220
+ "release_date": "2026-04-07",
1221
+ "last_updated": "2026-04-07",
1222
+ "modalities": {
1223
+ "input": [
1224
+ "text"
1225
+ ],
1226
+ "output": [
1227
+ "text"
1228
+ ]
1229
+ },
1230
+ "open_weights": true,
1231
+ "limit": {
1232
+ "context": 202752,
1233
+ "output": 16384
1234
+ },
1235
+ "cost": {
1236
+ "input": 1.05,
1237
+ "output": 3.5,
1238
+ "cache_read": 0.205
1239
+ }
1240
+ },
1241
+ "deepseek-ai/DeepSeek-R1-0528": {
1242
+ "id": "deepseek-ai/DeepSeek-R1-0528",
1243
+ "name": "DeepSeek-R1-0528",
1244
+ "description": "DeepSeek reasoning model for multi-step analysis, math, coding, and tools",
1245
+ "attachment": false,
1246
+ "reasoning": true,
1247
+ "reasoning_options": [],
1248
+ "tool_call": true,
1249
+ "interleaved": {
1250
+ "field": "reasoning_content"
1251
+ },
1252
+ "structured_output": true,
1253
+ "temperature": true,
1254
+ "knowledge": "2024-07",
1255
+ "release_date": "2025-05-28",
1256
+ "last_updated": "2025-05-28",
1257
+ "modalities": {
1258
+ "input": [
1259
+ "text"
1260
+ ],
1261
+ "output": [
1262
+ "text"
1263
+ ]
1264
+ },
1265
+ "open_weights": false,
1266
+ "limit": {
1267
+ "context": 163840,
1268
+ "output": 64000
1269
+ },
1270
+ "cost": {
1271
+ "input": 0.5,
1272
+ "output": 2.15,
1273
+ "cache_read": 0.35
1274
+ }
1275
+ },
1276
+ "deepseek-ai/DeepSeek-V4-Flash": {
1277
+ "id": "deepseek-ai/DeepSeek-V4-Flash",
1278
+ "name": "DeepSeek V4 Flash",
1279
+ "description": "Fast DeepSeek V4 lane for economical reasoning, coding, and long-context work",
1280
+ "family": "deepseek-flash",
1281
+ "attachment": false,
1282
+ "reasoning": true,
1283
+ "reasoning_options": [
1284
+ {
1285
+ "type": "toggle"
1286
+ },
1287
+ {
1288
+ "type": "effort",
1289
+ "values": [
1290
+ "low",
1291
+ "medium",
1292
+ "high",
1293
+ "xhigh"
1294
+ ]
1295
+ }
1296
+ ],
1297
+ "tool_call": true,
1298
+ "interleaved": {
1299
+ "field": "reasoning_content"
1300
+ },
1301
+ "structured_output": true,
1302
+ "temperature": true,
1303
+ "knowledge": "2025-05",
1304
+ "release_date": "2026-04-24",
1305
+ "last_updated": "2026-04-24",
1306
+ "modalities": {
1307
+ "input": [
1308
+ "text"
1309
+ ],
1310
+ "output": [
1311
+ "text"
1312
+ ]
1313
+ },
1314
+ "open_weights": true,
1315
+ "limit": {
1316
+ "context": 1048576,
1317
+ "output": 16384
1318
+ },
1319
+ "cost": {
1320
+ "input": 0.09,
1321
+ "output": 0.18,
1322
+ "cache_read": 0.018
1323
+ }
1324
+ },
1325
+ "deepseek-ai/DeepSeek-V4-Pro": {
1326
+ "id": "deepseek-ai/DeepSeek-V4-Pro",
1327
+ "name": "DeepSeek V4 Pro",
1328
+ "description": "Open MoE flagship with million-token context for coding and long agent runs",
1329
+ "family": "deepseek-thinking",
1330
+ "attachment": false,
1331
+ "reasoning": true,
1332
+ "reasoning_options": [
1333
+ {
1334
+ "type": "toggle"
1335
+ },
1336
+ {
1337
+ "type": "effort",
1338
+ "values": [
1339
+ "low",
1340
+ "medium",
1341
+ "high",
1342
+ "xhigh"
1343
+ ]
1344
+ }
1345
+ ],
1346
+ "tool_call": true,
1347
+ "interleaved": {
1348
+ "field": "reasoning_content"
1349
+ },
1350
+ "structured_output": true,
1351
+ "temperature": true,
1352
+ "knowledge": "2025-05",
1353
+ "release_date": "2026-04-24",
1354
+ "last_updated": "2026-04-24",
1355
+ "modalities": {
1356
+ "input": [
1357
+ "text"
1358
+ ],
1359
+ "output": [
1360
+ "text"
1361
+ ]
1362
+ },
1363
+ "open_weights": true,
1364
+ "limit": {
1365
+ "context": 1048576,
1366
+ "output": 16384
1367
+ },
1368
+ "cost": {
1369
+ "input": 1.3,
1370
+ "output": 2.6,
1371
+ "cache_read": 0.1
1372
+ }
1373
+ },
1374
+ "deepseek-ai/DeepSeek-V3.2": {
1375
+ "id": "deepseek-ai/DeepSeek-V3.2",
1376
+ "name": "DeepSeek-V3.2",
1377
+ "description": "DeepSeek chat model for instruction following, coding, and analysis",
1378
+ "attachment": false,
1379
+ "reasoning": true,
1380
+ "reasoning_options": [
1381
+ {
1382
+ "type": "toggle"
1383
+ }
1384
+ ],
1385
+ "tool_call": true,
1386
+ "interleaved": {
1387
+ "field": "reasoning_content"
1388
+ },
1389
+ "structured_output": true,
1390
+ "temperature": true,
1391
+ "knowledge": "2024-12",
1392
+ "release_date": "2025-12-02",
1393
+ "last_updated": "2025-12-02",
1394
+ "modalities": {
1395
+ "input": [
1396
+ "text"
1397
+ ],
1398
+ "output": [
1399
+ "text"
1400
+ ]
1401
+ },
1402
+ "open_weights": false,
1403
+ "limit": {
1404
+ "context": 163840,
1405
+ "output": 64000
1406
+ },
1407
+ "cost": {
1408
+ "input": 0.26,
1409
+ "output": 0.38,
1410
+ "cache_read": 0.13
1411
+ }
1412
+ },
1413
+ "MiniMaxAI/MiniMax-M2.5": {
1414
+ "id": "MiniMaxAI/MiniMax-M2.5",
1415
+ "name": "MiniMax M2.5",
1416
+ "description": "MiniMax model for chat, coding, office work, and agentic tasks",
1417
+ "family": "minimax",
1418
+ "attachment": false,
1419
+ "reasoning": true,
1420
+ "reasoning_options": [],
1421
+ "tool_call": true,
1422
+ "interleaved": {
1423
+ "field": "reasoning_content"
1424
+ },
1425
+ "temperature": true,
1426
+ "knowledge": "2025-06",
1427
+ "release_date": "2026-02-12",
1428
+ "last_updated": "2026-02-12",
1429
+ "modalities": {
1430
+ "input": [
1431
+ "text"
1432
+ ],
1433
+ "output": [
1434
+ "text"
1435
+ ]
1436
+ },
1437
+ "open_weights": true,
1438
+ "limit": {
1439
+ "context": 196608,
1440
+ "output": 131072
1441
+ },
1442
+ "cost": {
1443
+ "input": 0.15,
1444
+ "output": 1.15,
1445
+ "cache_read": 0.03
1446
+ }
1447
+ },
1448
+ "MiniMaxAI/MiniMax-M3": {
1449
+ "id": "MiniMaxAI/MiniMax-M3",
1450
+ "name": "MiniMax-M3",
1451
+ "description": "MiniMax multimodal model for long-context coding, perception, and agent planning",
1452
+ "family": "minimax",
1453
+ "attachment": true,
1454
+ "reasoning": true,
1455
+ "reasoning_options": [],
1456
+ "tool_call": true,
1457
+ "temperature": true,
1458
+ "release_date": "2026-06-01",
1459
+ "last_updated": "2026-06-01",
1460
+ "modalities": {
1461
+ "input": [
1462
+ "text",
1463
+ "image",
1464
+ "video"
1465
+ ],
1466
+ "output": [
1467
+ "text"
1468
+ ]
1469
+ },
1470
+ "open_weights": true,
1471
+ "limit": {
1472
+ "context": 524288,
1473
+ "output": 128000
1474
+ },
1475
+ "cost": {
1476
+ "input": 0.3,
1477
+ "output": 1.2,
1478
+ "cache_read": 0.06
1479
+ }
1480
+ },
1481
+ "MiniMaxAI/MiniMax-M2.7": {
1482
+ "id": "MiniMaxAI/MiniMax-M2.7",
1483
+ "name": "MiniMax-M2.7",
1484
+ "description": "Open MiniMax flagship for coding agents, office automation, and complex environments",
1485
+ "family": "minimax",
1486
+ "attachment": false,
1487
+ "reasoning": true,
1488
+ "reasoning_options": [],
1489
+ "tool_call": true,
1490
+ "temperature": true,
1491
+ "release_date": "2026-03-18",
1492
+ "last_updated": "2026-03-18",
1493
+ "modalities": {
1494
+ "input": [
1495
+ "text"
1496
+ ],
1497
+ "output": [
1498
+ "text"
1499
+ ]
1500
+ },
1501
+ "open_weights": true,
1502
+ "limit": {
1503
+ "context": 196608,
1504
+ "output": 131072
1505
+ },
1506
+ "cost": {
1507
+ "input": 0.25,
1508
+ "output": 1,
1509
+ "cache_read": 0.05
1510
+ }
1511
+ }
1512
+ }
1513
+ }