llm.rb 11.3.1 → 12.0.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 (57) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +242 -1
  3. data/LICENSE +92 -17
  4. data/README.md +204 -623
  5. data/data/anthropic.json +433 -249
  6. data/data/bedrock.json +2097 -1055
  7. data/data/deepinfra.json +993 -0
  8. data/data/deepseek.json +53 -28
  9. data/data/google.json +389 -771
  10. data/data/openai.json +1053 -771
  11. data/data/xai.json +133 -292
  12. data/data/zai.json +249 -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/context.rb +9 -5
  17. data/lib/llm/contract/completion.rb +2 -2
  18. data/lib/llm/provider.rb +2 -2
  19. data/lib/llm/providers/deepinfra/audio.rb +66 -0
  20. data/lib/llm/providers/deepinfra/images.rb +90 -0
  21. data/lib/llm/providers/deepinfra/response_adapter.rb +36 -0
  22. data/lib/llm/providers/deepinfra.rb +100 -0
  23. data/lib/llm/providers/deepseek/images.rb +109 -0
  24. data/lib/llm/providers/deepseek/request_adapter.rb +32 -0
  25. data/lib/llm/providers/deepseek/response_adapter/image.rb +9 -0
  26. data/lib/llm/providers/deepseek/response_adapter.rb +29 -0
  27. data/lib/llm/providers/deepseek.rb +4 -2
  28. data/lib/llm/providers/google/request_adapter.rb +22 -5
  29. data/lib/llm/providers/google.rb +4 -4
  30. data/lib/llm/providers/openai/audio.rb +6 -2
  31. data/lib/llm/providers/openai/images.rb +9 -50
  32. data/lib/llm/providers/openai/request_adapter/respond.rb +38 -4
  33. data/lib/llm/providers/openai/response_adapter/audio.rb +5 -1
  34. data/lib/llm/providers/openai/response_adapter/completion.rb +1 -1
  35. data/lib/llm/providers/openai/response_adapter/image.rb +0 -4
  36. data/lib/llm/providers/openai/responses.rb +1 -0
  37. data/lib/llm/providers/openai/stream_parser.rb +5 -6
  38. data/lib/llm/providers/openai.rb +2 -2
  39. data/lib/llm/providers/xai/images.rb +49 -26
  40. data/lib/llm/providers/xai.rb +2 -2
  41. data/lib/llm/response.rb +10 -0
  42. data/lib/llm/schema/leaf.rb +7 -1
  43. data/lib/llm/schema/renderer.rb +121 -0
  44. data/lib/llm/schema.rb +30 -0
  45. data/lib/llm/sequel/agent.rb +2 -43
  46. data/lib/llm/sequel/plugin.rb +25 -7
  47. data/lib/llm/tracer/telemetry.rb +4 -6
  48. data/lib/llm/tracer.rb +9 -21
  49. data/lib/llm/transport/execution.rb +16 -1
  50. data/lib/llm/transport/net_http_adapter.rb +1 -1
  51. data/lib/llm/uridata.rb +16 -0
  52. data/lib/llm/version.rb +1 -1
  53. data/lib/llm.rb +9 -0
  54. data/llm.gemspec +5 -18
  55. data/resources/deepdive.md +798 -264
  56. metadata +15 -18
  57. data/lib/llm/tracer/langsmith.rb +0 -144
data/data/bedrock.json CHANGED
@@ -10,37 +10,44 @@
10
10
  "name": "Amazon Bedrock",
11
11
  "doc": "https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html",
12
12
  "models": {
13
- "zai.glm-4.7": {
14
- "id": "zai.glm-4.7",
15
- "name": "GLM-4.7",
16
- "family": "glm",
17
- "attachment": false,
13
+ "global.anthropic.claude-haiku-4-5-20251001-v1:0": {
14
+ "id": "global.anthropic.claude-haiku-4-5-20251001-v1:0",
15
+ "name": "Claude Haiku 4.5 (Global)",
16
+ "family": "claude-haiku",
17
+ "attachment": true,
18
18
  "reasoning": true,
19
+ "reasoning_options": [
20
+ {
21
+ "type": "budget_tokens",
22
+ "min": 1024
23
+ }
24
+ ],
19
25
  "tool_call": true,
20
- "interleaved": {
21
- "field": "reasoning_content"
22
- },
23
26
  "structured_output": true,
24
27
  "temperature": true,
25
- "knowledge": "2025-04",
26
- "release_date": "2025-12-22",
27
- "last_updated": "2025-12-22",
28
+ "knowledge": "2025-02-28",
29
+ "release_date": "2025-10-15",
30
+ "last_updated": "2025-10-15",
28
31
  "modalities": {
29
32
  "input": [
30
- "text"
33
+ "text",
34
+ "image",
35
+ "pdf"
31
36
  ],
32
37
  "output": [
33
38
  "text"
34
39
  ]
35
40
  },
36
- "open_weights": true,
41
+ "open_weights": false,
37
42
  "limit": {
38
- "context": 204800,
39
- "output": 131072
43
+ "context": 200000,
44
+ "output": 64000
40
45
  },
41
46
  "cost": {
42
- "input": 0.6,
43
- "output": 2.2
47
+ "input": 1,
48
+ "output": 5,
49
+ "cache_read": 0.1,
50
+ "cache_write": 1.25
44
51
  }
45
52
  },
46
53
  "global.anthropic.claude-sonnet-4-5-20250929-v1:0": {
@@ -49,6 +56,12 @@
49
56
  "family": "claude-sonnet",
50
57
  "attachment": true,
51
58
  "reasoning": true,
59
+ "reasoning_options": [
60
+ {
61
+ "type": "budget_tokens",
62
+ "min": 1024
63
+ }
64
+ ],
52
65
  "tool_call": true,
53
66
  "structured_output": true,
54
67
  "temperature": true,
@@ -77,21 +90,21 @@
77
90
  "cache_write": 3.75
78
91
  }
79
92
  },
80
- "qwen.qwen3-235b-a22b-2507-v1:0": {
81
- "id": "qwen.qwen3-235b-a22b-2507-v1:0",
82
- "name": "Qwen3 235B A22B 2507",
83
- "family": "qwen",
84
- "attachment": false,
93
+ "us.meta.llama4-scout-17b-instruct-v1:0": {
94
+ "id": "us.meta.llama4-scout-17b-instruct-v1:0",
95
+ "name": "Llama 4 Scout 17B Instruct (US)",
96
+ "family": "llama",
97
+ "attachment": true,
85
98
  "reasoning": false,
86
99
  "tool_call": true,
87
- "structured_output": true,
88
100
  "temperature": true,
89
- "knowledge": "2024-04",
90
- "release_date": "2025-09-18",
91
- "last_updated": "2025-09-18",
101
+ "knowledge": "2024-08",
102
+ "release_date": "2025-04-05",
103
+ "last_updated": "2025-04-05",
92
104
  "modalities": {
93
105
  "input": [
94
- "text"
106
+ "text",
107
+ "image"
95
108
  ],
96
109
  "output": [
97
110
  "text"
@@ -99,28 +112,26 @@
99
112
  },
100
113
  "open_weights": true,
101
114
  "limit": {
102
- "context": 262144,
103
- "output": 131072
115
+ "context": 3500000,
116
+ "output": 16384
104
117
  },
105
118
  "cost": {
106
- "input": 0.22,
107
- "output": 0.88
119
+ "input": 0.17,
120
+ "output": 0.66
108
121
  }
109
122
  },
110
- "zai.glm-5": {
111
- "id": "zai.glm-5",
112
- "name": "GLM-5",
113
- "family": "glm",
123
+ "minimax.minimax-m2": {
124
+ "id": "minimax.minimax-m2",
125
+ "name": "MiniMax M2",
126
+ "family": "minimax",
114
127
  "attachment": false,
115
128
  "reasoning": true,
129
+ "reasoning_options": [],
116
130
  "tool_call": true,
117
- "interleaved": {
118
- "field": "reasoning_content"
119
- },
120
- "structured_output": true,
131
+ "structured_output": false,
121
132
  "temperature": true,
122
- "release_date": "2026-03-18",
123
- "last_updated": "2026-03-18",
133
+ "release_date": "2025-10-27",
134
+ "last_updated": "2025-10-27",
124
135
  "modalities": {
125
136
  "input": [
126
137
  "text"
@@ -131,60 +142,42 @@
131
142
  },
132
143
  "open_weights": true,
133
144
  "limit": {
134
- "context": 202752,
135
- "output": 101376
145
+ "context": 204608,
146
+ "output": 128000
136
147
  },
137
148
  "cost": {
138
- "input": 1,
139
- "output": 3.2
149
+ "input": 0.3,
150
+ "output": 1.2
140
151
  }
141
152
  },
142
- "amazon.nova-pro-v1:0": {
143
- "id": "amazon.nova-pro-v1:0",
144
- "name": "Nova Pro",
145
- "family": "nova-pro",
153
+ "anthropic.claude-opus-4-7": {
154
+ "id": "anthropic.claude-opus-4-7",
155
+ "name": "Claude Opus 4.7",
156
+ "family": "claude-opus",
146
157
  "attachment": true,
147
- "reasoning": false,
158
+ "reasoning": true,
159
+ "reasoning_options": [
160
+ {
161
+ "type": "effort",
162
+ "values": [
163
+ "low",
164
+ "medium",
165
+ "high",
166
+ "xhigh",
167
+ "max"
168
+ ]
169
+ }
170
+ ],
148
171
  "tool_call": true,
149
- "temperature": true,
150
- "knowledge": "2024-10",
151
- "release_date": "2024-12-03",
152
- "last_updated": "2024-12-03",
172
+ "temperature": false,
173
+ "knowledge": "2026-01-31",
174
+ "release_date": "2026-04-16",
175
+ "last_updated": "2026-04-16",
153
176
  "modalities": {
154
177
  "input": [
155
178
  "text",
156
179
  "image",
157
- "video"
158
- ],
159
- "output": [
160
- "text"
161
- ]
162
- },
163
- "open_weights": false,
164
- "limit": {
165
- "context": 300000,
166
- "output": 8192
167
- },
168
- "cost": {
169
- "input": 0.8,
170
- "output": 3.2,
171
- "cache_read": 0.2
172
- }
173
- },
174
- "openai.gpt-oss-20b-1:0": {
175
- "id": "openai.gpt-oss-20b-1:0",
176
- "name": "gpt-oss-20b",
177
- "family": "gpt-oss",
178
- "attachment": false,
179
- "reasoning": false,
180
- "tool_call": true,
181
- "structured_output": true,
182
- "temperature": true,
183
- "release_date": "2025-08-05",
184
- "last_updated": "2025-08-05",
185
- "modalities": {
186
- "input": [
187
- "text"
180
+ "pdf"
188
181
  ],
189
182
  "output": [
190
183
  "text"
@@ -192,26 +185,43 @@
192
185
  },
193
186
  "open_weights": false,
194
187
  "limit": {
195
- "context": 128000,
196
- "output": 16384
188
+ "context": 1000000,
189
+ "output": 128000
197
190
  },
198
191
  "cost": {
199
- "input": 0.07,
200
- "output": 0.3
192
+ "input": 5,
193
+ "output": 25,
194
+ "cache_read": 0.5,
195
+ "cache_write": 6.25
201
196
  }
202
197
  },
203
- "us.anthropic.claude-haiku-4-5-20251001-v1:0": {
204
- "id": "us.anthropic.claude-haiku-4-5-20251001-v1:0",
205
- "name": "Claude Haiku 4.5 (US)",
206
- "family": "claude-haiku",
198
+ "eu.anthropic.claude-sonnet-4-6": {
199
+ "id": "eu.anthropic.claude-sonnet-4-6",
200
+ "name": "Claude Sonnet 4.6 (EU)",
201
+ "family": "claude-sonnet",
207
202
  "attachment": true,
208
203
  "reasoning": true,
204
+ "reasoning_options": [
205
+ {
206
+ "type": "effort",
207
+ "values": [
208
+ "low",
209
+ "medium",
210
+ "high",
211
+ "max"
212
+ ]
213
+ },
214
+ {
215
+ "type": "budget_tokens",
216
+ "min": 1024
217
+ }
218
+ ],
209
219
  "tool_call": true,
210
220
  "structured_output": true,
211
221
  "temperature": true,
212
- "knowledge": "2025-02-28",
213
- "release_date": "2025-10-15",
214
- "last_updated": "2025-10-15",
222
+ "knowledge": "2025-08-31",
223
+ "release_date": "2026-02-17",
224
+ "last_updated": "2026-03-13",
215
225
  "modalities": {
216
226
  "input": [
217
227
  "text",
@@ -224,59 +234,61 @@
224
234
  },
225
235
  "open_weights": false,
226
236
  "limit": {
227
- "context": 200000,
237
+ "context": 1000000,
228
238
  "output": 64000
229
239
  },
230
240
  "cost": {
231
- "input": 1,
232
- "output": 5,
233
- "cache_read": 0.1,
234
- "cache_write": 1.25
241
+ "input": 3.3,
242
+ "output": 16.5,
243
+ "cache_read": 0.33,
244
+ "cache_write": 4.125
235
245
  }
236
246
  },
237
- "writer.palmyra-x4-v1:0": {
238
- "id": "writer.palmyra-x4-v1:0",
239
- "name": "Palmyra X4",
240
- "family": "palmyra",
241
- "attachment": false,
242
- "reasoning": true,
247
+ "mistral.voxtral-small-24b-2507": {
248
+ "id": "mistral.voxtral-small-24b-2507",
249
+ "name": "Voxtral Small 24B 2507",
250
+ "family": "mistral",
251
+ "attachment": true,
252
+ "reasoning": false,
243
253
  "tool_call": true,
254
+ "structured_output": true,
244
255
  "temperature": true,
245
- "release_date": "2025-04-28",
246
- "last_updated": "2025-04-28",
256
+ "release_date": "2025-07-01",
257
+ "last_updated": "2025-07-01",
247
258
  "modalities": {
248
259
  "input": [
249
- "text"
260
+ "text",
261
+ "audio"
250
262
  ],
251
263
  "output": [
252
264
  "text"
253
265
  ]
254
266
  },
255
- "open_weights": false,
267
+ "open_weights": true,
256
268
  "limit": {
257
- "context": 122880,
269
+ "context": 32000,
258
270
  "output": 8192
259
271
  },
260
272
  "cost": {
261
- "input": 2.5,
262
- "output": 10
273
+ "input": 0.15,
274
+ "output": 0.35
263
275
  }
264
276
  },
265
- "moonshot.kimi-k2-thinking": {
266
- "id": "moonshot.kimi-k2-thinking",
267
- "name": "Kimi K2 Thinking",
268
- "family": "kimi-thinking",
277
+ "mistral.ministral-3-3b-instruct": {
278
+ "id": "mistral.ministral-3-3b-instruct",
279
+ "name": "Ministral 3 3B",
280
+ "family": "ministral",
269
281
  "attachment": false,
270
- "reasoning": true,
282
+ "reasoning": false,
271
283
  "tool_call": true,
272
- "interleaved": true,
273
284
  "structured_output": true,
274
285
  "temperature": true,
275
286
  "release_date": "2025-12-02",
276
287
  "last_updated": "2025-12-02",
277
288
  "modalities": {
278
289
  "input": [
279
- "text"
290
+ "text",
291
+ "image"
280
292
  ],
281
293
  "output": [
282
294
  "text"
@@ -285,24 +297,34 @@
285
297
  "open_weights": true,
286
298
  "limit": {
287
299
  "context": 256000,
288
- "output": 256000
300
+ "output": 8192
289
301
  },
290
302
  "cost": {
291
- "input": 0.6,
292
- "output": 2.5
303
+ "input": 0.1,
304
+ "output": 0.1
293
305
  }
294
306
  },
295
- "mistral.ministral-3-8b-instruct": {
296
- "id": "mistral.ministral-3-8b-instruct",
297
- "name": "Ministral 3 8B",
298
- "family": "ministral",
307
+ "openai.gpt-oss-20b": {
308
+ "id": "openai.gpt-oss-20b",
309
+ "name": "gpt-oss-20b",
310
+ "family": "gpt-oss",
299
311
  "attachment": false,
300
- "reasoning": false,
312
+ "reasoning": true,
313
+ "reasoning_options": [
314
+ {
315
+ "type": "effort",
316
+ "values": [
317
+ "low",
318
+ "medium",
319
+ "high"
320
+ ]
321
+ }
322
+ ],
301
323
  "tool_call": true,
302
324
  "structured_output": true,
303
325
  "temperature": true,
304
- "release_date": "2024-12-01",
305
- "last_updated": "2024-12-01",
326
+ "release_date": "2025-08-05",
327
+ "last_updated": "2025-08-05",
306
328
  "modalities": {
307
329
  "input": [
308
330
  "text"
@@ -314,49 +336,116 @@
314
336
  "open_weights": false,
315
337
  "limit": {
316
338
  "context": 128000,
317
- "output": 4096
339
+ "output": 16384
340
+ },
341
+ "provider": {
342
+ "npm": "@ai-sdk/amazon-bedrock/mantle",
343
+ "api": "https://bedrock-mantle.${AWS_REGION}.api.aws/v1",
344
+ "shape": "responses"
318
345
  },
319
346
  "cost": {
320
- "input": 0.15,
321
- "output": 0.15
347
+ "input": 0.07,
348
+ "output": 0.3
322
349
  }
323
350
  },
324
- "meta.llama4-scout-17b-instruct-v1:0": {
325
- "id": "meta.llama4-scout-17b-instruct-v1:0",
326
- "name": "Llama 4 Scout 17B Instruct",
327
- "family": "llama",
351
+ "anthropic.claude-opus-4-6-v1": {
352
+ "id": "anthropic.claude-opus-4-6-v1",
353
+ "name": "Claude Opus 4.6",
354
+ "family": "claude-opus",
328
355
  "attachment": true,
329
- "reasoning": false,
356
+ "reasoning": true,
357
+ "reasoning_options": [
358
+ {
359
+ "type": "effort",
360
+ "values": [
361
+ "low",
362
+ "medium",
363
+ "high",
364
+ "max"
365
+ ]
366
+ },
367
+ {
368
+ "type": "budget_tokens",
369
+ "min": 1024
370
+ }
371
+ ],
330
372
  "tool_call": true,
373
+ "structured_output": true,
331
374
  "temperature": true,
332
- "knowledge": "2024-08",
333
- "release_date": "2025-04-05",
334
- "last_updated": "2025-04-05",
375
+ "knowledge": "2025-05-31",
376
+ "release_date": "2026-02-05",
377
+ "last_updated": "2026-03-13",
335
378
  "modalities": {
336
379
  "input": [
337
380
  "text",
338
- "image"
381
+ "image",
382
+ "pdf"
339
383
  ],
340
384
  "output": [
341
385
  "text"
342
386
  ]
343
387
  },
344
- "open_weights": true,
388
+ "open_weights": false,
345
389
  "limit": {
346
- "context": 3500000,
390
+ "context": 1000000,
391
+ "output": 128000
392
+ },
393
+ "cost": {
394
+ "input": 5,
395
+ "output": 25,
396
+ "cache_read": 0.5,
397
+ "cache_write": 6.25
398
+ }
399
+ },
400
+ "openai.gpt-oss-safeguard-20b": {
401
+ "id": "openai.gpt-oss-safeguard-20b",
402
+ "name": "GPT OSS Safeguard 20B",
403
+ "family": "gpt-oss",
404
+ "attachment": false,
405
+ "reasoning": false,
406
+ "tool_call": true,
407
+ "structured_output": true,
408
+ "temperature": true,
409
+ "release_date": "2025-10-29",
410
+ "last_updated": "2025-10-29",
411
+ "modalities": {
412
+ "input": [
413
+ "text"
414
+ ],
415
+ "output": [
416
+ "text"
417
+ ]
418
+ },
419
+ "open_weights": false,
420
+ "limit": {
421
+ "context": 128000,
347
422
  "output": 16384
348
423
  },
349
424
  "cost": {
350
- "input": 0.17,
351
- "output": 0.66
425
+ "input": 0.07,
426
+ "output": 0.2
352
427
  }
353
428
  },
354
- "us.anthropic.claude-opus-4-5-20251101-v1:0": {
355
- "id": "us.anthropic.claude-opus-4-5-20251101-v1:0",
356
- "name": "Claude Opus 4.5 (US)",
429
+ "anthropic.claude-opus-4-5-20251101-v1:0": {
430
+ "id": "anthropic.claude-opus-4-5-20251101-v1:0",
431
+ "name": "Claude Opus 4.5",
357
432
  "family": "claude-opus",
358
433
  "attachment": true,
359
434
  "reasoning": true,
435
+ "reasoning_options": [
436
+ {
437
+ "type": "effort",
438
+ "values": [
439
+ "low",
440
+ "medium",
441
+ "high"
442
+ ]
443
+ },
444
+ {
445
+ "type": "budget_tokens",
446
+ "min": 1024
447
+ }
448
+ ],
360
449
  "tool_call": true,
361
450
  "structured_output": true,
362
451
  "temperature": true,
@@ -385,48 +474,29 @@
385
474
  "cache_write": 6.25
386
475
  }
387
476
  },
388
- "qwen.qwen3-coder-480b-a35b-v1:0": {
389
- "id": "qwen.qwen3-coder-480b-a35b-v1:0",
390
- "name": "Qwen3 Coder 480B A35B Instruct",
391
- "family": "qwen",
392
- "attachment": false,
393
- "reasoning": false,
394
- "tool_call": true,
395
- "structured_output": true,
396
- "temperature": true,
397
- "knowledge": "2024-04",
398
- "release_date": "2025-09-18",
399
- "last_updated": "2025-09-18",
400
- "modalities": {
401
- "input": [
402
- "text"
403
- ],
404
- "output": [
405
- "text"
406
- ]
407
- },
408
- "open_weights": true,
409
- "limit": {
410
- "context": 131072,
411
- "output": 65536
412
- },
413
- "cost": {
414
- "input": 0.22,
415
- "output": 1.8
416
- }
417
- },
418
- "google.gemma-3-27b-it": {
419
- "id": "google.gemma-3-27b-it",
420
- "name": "Google Gemma 3 27B Instruct",
421
- "family": "gemma",
477
+ "global.anthropic.claude-fable-5": {
478
+ "id": "global.anthropic.claude-fable-5",
479
+ "name": "Claude Fable 5 (Global)",
480
+ "family": "claude-fable",
422
481
  "attachment": true,
423
- "reasoning": false,
482
+ "reasoning": true,
483
+ "reasoning_options": [
484
+ {
485
+ "type": "effort",
486
+ "values": [
487
+ "low",
488
+ "medium",
489
+ "high",
490
+ "xhigh",
491
+ "max"
492
+ ]
493
+ }
494
+ ],
424
495
  "tool_call": true,
425
- "structured_output": true,
426
- "temperature": true,
427
- "knowledge": "2025-07",
428
- "release_date": "2025-07-27",
429
- "last_updated": "2025-07-27",
496
+ "temperature": false,
497
+ "knowledge": "2026-01-31",
498
+ "release_date": "2026-06-09",
499
+ "last_updated": "2026-06-09",
430
500
  "modalities": {
431
501
  "input": [
432
502
  "text",
@@ -436,27 +506,39 @@
436
506
  "text"
437
507
  ]
438
508
  },
439
- "open_weights": true,
509
+ "open_weights": false,
440
510
  "limit": {
441
- "context": 202752,
442
- "output": 8192
511
+ "context": 1000000,
512
+ "output": 128000
443
513
  },
444
514
  "cost": {
445
- "input": 0.12,
446
- "output": 0.2
515
+ "input": 10,
516
+ "output": 50,
517
+ "cache_read": 1,
518
+ "cache_write": 12.5
447
519
  }
448
520
  },
449
- "mistral.ministral-3-14b-instruct": {
450
- "id": "mistral.ministral-3-14b-instruct",
451
- "name": "Ministral 14B 3.0",
452
- "family": "ministral",
521
+ "openai.gpt-oss-120b-1:0": {
522
+ "id": "openai.gpt-oss-120b-1:0",
523
+ "name": "gpt-oss-120b",
524
+ "family": "gpt-oss",
453
525
  "attachment": false,
454
- "reasoning": false,
526
+ "reasoning": true,
527
+ "reasoning_options": [
528
+ {
529
+ "type": "effort",
530
+ "values": [
531
+ "low",
532
+ "medium",
533
+ "high"
534
+ ]
535
+ }
536
+ ],
455
537
  "tool_call": true,
456
538
  "structured_output": true,
457
539
  "temperature": true,
458
- "release_date": "2024-12-01",
459
- "last_updated": "2024-12-01",
540
+ "release_date": "2025-08-05",
541
+ "last_updated": "2025-08-05",
460
542
  "modalities": {
461
543
  "input": [
462
544
  "text"
@@ -468,19 +550,25 @@
468
550
  "open_weights": false,
469
551
  "limit": {
470
552
  "context": 128000,
471
- "output": 4096
553
+ "output": 16384
472
554
  },
473
555
  "cost": {
474
- "input": 0.2,
475
- "output": 0.2
556
+ "input": 0.15,
557
+ "output": 0.6
476
558
  }
477
559
  },
478
- "us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
479
- "id": "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
480
- "name": "Claude Sonnet 4.5 (US)",
560
+ "anthropic.claude-sonnet-4-5-20250929-v1:0": {
561
+ "id": "anthropic.claude-sonnet-4-5-20250929-v1:0",
562
+ "name": "Claude Sonnet 4.5",
481
563
  "family": "claude-sonnet",
482
564
  "attachment": true,
483
565
  "reasoning": true,
566
+ "reasoning_options": [
567
+ {
568
+ "type": "budget_tokens",
569
+ "min": 1024
570
+ }
571
+ ],
484
572
  "tool_call": true,
485
573
  "structured_output": true,
486
574
  "temperature": true,
@@ -509,18 +597,50 @@
509
597
  "cache_write": 3.75
510
598
  }
511
599
  },
512
- "qwen.qwen3-coder-30b-a3b-v1:0": {
513
- "id": "qwen.qwen3-coder-30b-a3b-v1:0",
514
- "name": "Qwen3 Coder 30B A3B Instruct",
600
+ "amazon.nova-pro-v1:0": {
601
+ "id": "amazon.nova-pro-v1:0",
602
+ "name": "Nova Pro",
603
+ "family": "nova-pro",
604
+ "attachment": true,
605
+ "reasoning": false,
606
+ "tool_call": true,
607
+ "temperature": true,
608
+ "knowledge": "2024-10",
609
+ "release_date": "2024-12-03",
610
+ "last_updated": "2024-12-03",
611
+ "modalities": {
612
+ "input": [
613
+ "text",
614
+ "image",
615
+ "video"
616
+ ],
617
+ "output": [
618
+ "text"
619
+ ]
620
+ },
621
+ "open_weights": false,
622
+ "limit": {
623
+ "context": 300000,
624
+ "output": 8192
625
+ },
626
+ "cost": {
627
+ "input": 0.8,
628
+ "output": 3.2,
629
+ "cache_read": 0.2
630
+ }
631
+ },
632
+ "qwen.qwen3-coder-next": {
633
+ "id": "qwen.qwen3-coder-next",
634
+ "name": "Qwen3 Coder Next",
515
635
  "family": "qwen",
516
636
  "attachment": false,
517
- "reasoning": false,
637
+ "reasoning": true,
638
+ "reasoning_options": [],
518
639
  "tool_call": true,
519
640
  "structured_output": true,
520
641
  "temperature": true,
521
- "knowledge": "2024-04",
522
- "release_date": "2025-09-18",
523
- "last_updated": "2025-09-18",
642
+ "release_date": "2026-02-06",
643
+ "last_updated": "2026-02-06",
524
644
  "modalities": {
525
645
  "input": [
526
646
  "text"
@@ -529,22 +649,34 @@
529
649
  "text"
530
650
  ]
531
651
  },
532
- "open_weights": false,
652
+ "open_weights": true,
533
653
  "limit": {
534
- "context": 262144,
535
- "output": 131072
654
+ "context": 131072,
655
+ "output": 65536
536
656
  },
537
657
  "cost": {
538
- "input": 0.15,
539
- "output": 0.6
658
+ "input": 0.22,
659
+ "output": 1.8
540
660
  }
541
661
  },
542
- "anthropic.claude-opus-4-7": {
543
- "id": "anthropic.claude-opus-4-7",
544
- "name": "Claude Opus 4.7",
662
+ "us.anthropic.claude-opus-4-7": {
663
+ "id": "us.anthropic.claude-opus-4-7",
664
+ "name": "Claude Opus 4.7 (US)",
545
665
  "family": "claude-opus",
546
666
  "attachment": true,
547
667
  "reasoning": true,
668
+ "reasoning_options": [
669
+ {
670
+ "type": "effort",
671
+ "values": [
672
+ "low",
673
+ "medium",
674
+ "high",
675
+ "xhigh",
676
+ "max"
677
+ ]
678
+ }
679
+ ],
548
680
  "tool_call": true,
549
681
  "temperature": false,
550
682
  "knowledge": "2026-01-31",
@@ -572,18 +704,17 @@
572
704
  "cache_write": 6.25
573
705
  }
574
706
  },
575
- "zai.glm-4.7-flash": {
576
- "id": "zai.glm-4.7-flash",
577
- "name": "GLM-4.7-Flash",
578
- "family": "glm-flash",
707
+ "nvidia.nemotron-nano-9b-v2": {
708
+ "id": "nvidia.nemotron-nano-9b-v2",
709
+ "name": "NVIDIA Nemotron Nano 9B v2",
710
+ "family": "nemotron",
579
711
  "attachment": false,
580
- "reasoning": true,
712
+ "reasoning": false,
581
713
  "tool_call": true,
582
714
  "structured_output": true,
583
715
  "temperature": true,
584
- "knowledge": "2025-04",
585
- "release_date": "2026-01-19",
586
- "last_updated": "2026-01-19",
716
+ "release_date": "2024-12-01",
717
+ "last_updated": "2024-12-01",
587
718
  "modalities": {
588
719
  "input": [
589
720
  "text"
@@ -592,59 +723,74 @@
592
723
  "text"
593
724
  ]
594
725
  },
595
- "open_weights": true,
726
+ "open_weights": false,
596
727
  "limit": {
597
- "context": 200000,
598
- "output": 131072
728
+ "context": 128000,
729
+ "output": 4096
599
730
  },
600
731
  "cost": {
601
- "input": 0.07,
602
- "output": 0.4
732
+ "input": 0.06,
733
+ "output": 0.23
603
734
  }
604
735
  },
605
- "google.gemma-3-12b-it": {
606
- "id": "google.gemma-3-12b-it",
607
- "name": "Google Gemma 3 12B",
608
- "family": "gemma",
736
+ "qwen.qwen3-32b-v1:0": {
737
+ "id": "qwen.qwen3-32b-v1:0",
738
+ "name": "Qwen3 32B (dense)",
739
+ "family": "qwen",
609
740
  "attachment": false,
610
- "reasoning": false,
611
- "tool_call": false,
741
+ "reasoning": true,
742
+ "reasoning_options": [],
743
+ "tool_call": true,
612
744
  "structured_output": true,
613
745
  "temperature": true,
614
- "knowledge": "2024-12",
615
- "release_date": "2024-12-01",
616
- "last_updated": "2024-12-01",
746
+ "knowledge": "2024-04",
747
+ "release_date": "2025-09-18",
748
+ "last_updated": "2025-09-18",
617
749
  "modalities": {
618
750
  "input": [
619
- "text",
620
- "image"
751
+ "text"
621
752
  ],
622
753
  "output": [
623
754
  "text"
624
755
  ]
625
756
  },
626
- "open_weights": false,
757
+ "open_weights": true,
627
758
  "limit": {
628
- "context": 131072,
629
- "output": 8192
759
+ "context": 16384,
760
+ "output": 16384
630
761
  },
631
762
  "cost": {
632
- "input": 0.049999999999999996,
633
- "output": 0.09999999999999999
763
+ "input": 0.15,
764
+ "output": 0.6
634
765
  }
635
766
  },
636
- "global.anthropic.claude-opus-4-5-20251101-v1:0": {
637
- "id": "global.anthropic.claude-opus-4-5-20251101-v1:0",
638
- "name": "Claude Opus 4.5 (Global)",
639
- "family": "claude-opus",
767
+ "jp.anthropic.claude-sonnet-4-6": {
768
+ "id": "jp.anthropic.claude-sonnet-4-6",
769
+ "name": "Claude Sonnet 4.6 (JP)",
770
+ "family": "claude-sonnet",
640
771
  "attachment": true,
641
772
  "reasoning": true,
773
+ "reasoning_options": [
774
+ {
775
+ "type": "effort",
776
+ "values": [
777
+ "low",
778
+ "medium",
779
+ "high",
780
+ "max"
781
+ ]
782
+ },
783
+ {
784
+ "type": "budget_tokens",
785
+ "min": 1024
786
+ }
787
+ ],
642
788
  "tool_call": true,
643
789
  "structured_output": true,
644
790
  "temperature": true,
645
- "knowledge": "2025-03-31",
646
- "release_date": "2025-11-24",
647
- "last_updated": "2025-08-01",
791
+ "knowledge": "2025-08-31",
792
+ "release_date": "2026-02-17",
793
+ "last_updated": "2026-03-13",
648
794
  "modalities": {
649
795
  "input": [
650
796
  "text",
@@ -657,33 +803,31 @@
657
803
  },
658
804
  "open_weights": false,
659
805
  "limit": {
660
- "context": 200000,
806
+ "context": 1000000,
661
807
  "output": 64000
662
808
  },
663
809
  "cost": {
664
- "input": 5,
665
- "output": 25,
666
- "cache_read": 0.5,
667
- "cache_write": 6.25
810
+ "input": 3,
811
+ "output": 15,
812
+ "cache_read": 0.3,
813
+ "cache_write": 3.75
668
814
  }
669
815
  },
670
- "au.anthropic.claude-sonnet-4-6": {
671
- "id": "au.anthropic.claude-sonnet-4-6",
672
- "name": "AU Anthropic Claude Sonnet 4.6",
673
- "family": "claude-sonnet",
674
- "attachment": true,
816
+ "deepseek.r1-v1:0": {
817
+ "id": "deepseek.r1-v1:0",
818
+ "name": "DeepSeek-R1",
819
+ "family": "deepseek-thinking",
820
+ "attachment": false,
675
821
  "reasoning": true,
822
+ "reasoning_options": [],
676
823
  "tool_call": true,
677
- "structured_output": true,
678
824
  "temperature": true,
679
- "knowledge": "2025-08",
680
- "release_date": "2026-02-17",
681
- "last_updated": "2026-02-17",
825
+ "knowledge": "2024-07",
826
+ "release_date": "2025-01-20",
827
+ "last_updated": "2025-05-29",
682
828
  "modalities": {
683
829
  "input": [
684
- "text",
685
- "image",
686
- "pdf"
830
+ "text"
687
831
  ],
688
832
  "output": [
689
833
  "text"
@@ -691,27 +835,25 @@
691
835
  },
692
836
  "open_weights": false,
693
837
  "limit": {
694
- "context": 1000000,
695
- "output": 128000
838
+ "context": 128000,
839
+ "output": 32768
696
840
  },
697
841
  "cost": {
698
- "input": 3.3,
699
- "output": 16.5,
700
- "cache_read": 0.33,
701
- "cache_write": 4.125
842
+ "input": 1.35,
843
+ "output": 5.4
702
844
  }
703
845
  },
704
- "qwen.qwen3-vl-235b-a22b": {
705
- "id": "qwen.qwen3-vl-235b-a22b",
706
- "name": "Qwen/Qwen3-VL-235B-A22B-Instruct",
707
- "family": "qwen",
708
- "attachment": true,
846
+ "mistral.mistral-large-3-675b-instruct": {
847
+ "id": "mistral.mistral-large-3-675b-instruct",
848
+ "name": "Mistral Large 3",
849
+ "family": "mistral",
850
+ "attachment": false,
709
851
  "reasoning": false,
710
852
  "tool_call": true,
711
853
  "structured_output": true,
712
854
  "temperature": true,
713
- "release_date": "2025-10-04",
714
- "last_updated": "2025-11-25",
855
+ "release_date": "2025-12-02",
856
+ "last_updated": "2025-12-02",
715
857
  "modalities": {
716
858
  "input": [
717
859
  "text",
@@ -721,30 +863,32 @@
721
863
  "text"
722
864
  ]
723
865
  },
724
- "open_weights": false,
866
+ "open_weights": true,
725
867
  "limit": {
726
- "context": 262000,
727
- "output": 262000
868
+ "context": 256000,
869
+ "output": 8192
728
870
  },
729
871
  "cost": {
730
- "input": 0.3,
872
+ "input": 0.5,
731
873
  "output": 1.5
732
874
  }
733
875
  },
734
- "meta.llama3-3-70b-instruct-v1:0": {
735
- "id": "meta.llama3-3-70b-instruct-v1:0",
736
- "name": "Llama 3.3 70B Instruct",
737
- "family": "llama",
738
- "attachment": false,
876
+ "google.gemma-3-27b-it": {
877
+ "id": "google.gemma-3-27b-it",
878
+ "name": "Google Gemma 3 27B Instruct",
879
+ "family": "gemma",
880
+ "attachment": true,
739
881
  "reasoning": false,
740
882
  "tool_call": true,
883
+ "structured_output": true,
741
884
  "temperature": true,
742
- "knowledge": "2023-12",
743
- "release_date": "2024-12-06",
744
- "last_updated": "2024-12-06",
885
+ "knowledge": "2025-07",
886
+ "release_date": "2025-07-27",
887
+ "last_updated": "2025-07-27",
745
888
  "modalities": {
746
889
  "input": [
747
- "text"
890
+ "text",
891
+ "image"
748
892
  ],
749
893
  "output": [
750
894
  "text"
@@ -752,28 +896,46 @@
752
896
  },
753
897
  "open_weights": true,
754
898
  "limit": {
755
- "context": 128000,
756
- "output": 4096
899
+ "context": 202752,
900
+ "output": 8192
757
901
  },
758
902
  "cost": {
759
- "input": 0.72,
760
- "output": 0.72
903
+ "input": 0.12,
904
+ "output": 0.2
761
905
  }
762
906
  },
763
- "nvidia.nemotron-nano-9b-v2": {
764
- "id": "nvidia.nemotron-nano-9b-v2",
765
- "name": "NVIDIA Nemotron Nano 9B v2",
766
- "family": "nemotron",
767
- "attachment": false,
768
- "reasoning": false,
907
+ "anthropic.claude-sonnet-4-6": {
908
+ "id": "anthropic.claude-sonnet-4-6",
909
+ "name": "Claude Sonnet 4.6",
910
+ "family": "claude-sonnet",
911
+ "attachment": true,
912
+ "reasoning": true,
913
+ "reasoning_options": [
914
+ {
915
+ "type": "effort",
916
+ "values": [
917
+ "low",
918
+ "medium",
919
+ "high",
920
+ "max"
921
+ ]
922
+ },
923
+ {
924
+ "type": "budget_tokens",
925
+ "min": 1024
926
+ }
927
+ ],
769
928
  "tool_call": true,
770
929
  "structured_output": true,
771
930
  "temperature": true,
772
- "release_date": "2024-12-01",
773
- "last_updated": "2024-12-01",
931
+ "knowledge": "2025-08-31",
932
+ "release_date": "2026-02-17",
933
+ "last_updated": "2026-03-13",
774
934
  "modalities": {
775
935
  "input": [
776
- "text"
936
+ "text",
937
+ "image",
938
+ "pdf"
777
939
  ],
778
940
  "output": [
779
941
  "text"
@@ -781,30 +943,44 @@
781
943
  },
782
944
  "open_weights": false,
783
945
  "limit": {
784
- "context": 128000,
785
- "output": 4096
946
+ "context": 1000000,
947
+ "output": 64000
786
948
  },
787
949
  "cost": {
788
- "input": 0.06,
789
- "output": 0.23
950
+ "input": 3,
951
+ "output": 15,
952
+ "cache_read": 0.3,
953
+ "cache_write": 3.75
790
954
  }
791
955
  },
792
- "us.anthropic.claude-opus-4-7": {
793
- "id": "us.anthropic.claude-opus-4-7",
794
- "name": "Claude Opus 4.7 (US)",
795
- "family": "claude-opus",
796
- "attachment": true,
956
+ "amazon.nova-2-lite-v1:0": {
957
+ "id": "amazon.nova-2-lite-v1:0",
958
+ "name": "Nova 2 Lite",
959
+ "family": "nova",
960
+ "attachment": false,
797
961
  "reasoning": true,
962
+ "reasoning_options": [
963
+ {
964
+ "type": "toggle"
965
+ },
966
+ {
967
+ "type": "effort",
968
+ "values": [
969
+ "low",
970
+ "medium",
971
+ "high"
972
+ ]
973
+ }
974
+ ],
798
975
  "tool_call": true,
799
- "temperature": false,
800
- "knowledge": "2026-01-31",
801
- "release_date": "2026-04-16",
802
- "last_updated": "2026-04-16",
976
+ "temperature": true,
977
+ "release_date": "2024-12-01",
978
+ "last_updated": "2024-12-01",
803
979
  "modalities": {
804
980
  "input": [
805
981
  "text",
806
982
  "image",
807
- "pdf"
983
+ "video"
808
984
  ],
809
985
  "output": [
810
986
  "text"
@@ -812,31 +988,28 @@
812
988
  },
813
989
  "open_weights": false,
814
990
  "limit": {
815
- "context": 1000000,
816
- "output": 128000
991
+ "context": 128000,
992
+ "output": 4096
817
993
  },
818
994
  "cost": {
819
- "input": 5,
820
- "output": 25,
821
- "cache_read": 0.5,
822
- "cache_write": 6.25
995
+ "input": 0.33,
996
+ "output": 2.75
823
997
  }
824
998
  },
825
- "nvidia.nemotron-nano-12b-v2": {
826
- "id": "nvidia.nemotron-nano-12b-v2",
827
- "name": "NVIDIA Nemotron Nano 12B v2 VL BF16",
828
- "family": "nemotron",
999
+ "openai.gpt-oss-safeguard-120b": {
1000
+ "id": "openai.gpt-oss-safeguard-120b",
1001
+ "name": "GPT OSS Safeguard 120B",
1002
+ "family": "gpt-oss",
829
1003
  "attachment": false,
830
1004
  "reasoning": false,
831
1005
  "tool_call": true,
832
1006
  "structured_output": true,
833
1007
  "temperature": true,
834
- "release_date": "2024-12-01",
835
- "last_updated": "2024-12-01",
1008
+ "release_date": "2025-10-29",
1009
+ "last_updated": "2025-10-29",
836
1010
  "modalities": {
837
1011
  "input": [
838
- "text",
839
- "image"
1012
+ "text"
840
1013
  ],
841
1014
  "output": [
842
1015
  "text"
@@ -845,30 +1018,27 @@
845
1018
  "open_weights": false,
846
1019
  "limit": {
847
1020
  "context": 128000,
848
- "output": 4096
1021
+ "output": 16384
849
1022
  },
850
1023
  "cost": {
851
- "input": 0.2,
1024
+ "input": 0.15,
852
1025
  "output": 0.6
853
1026
  }
854
1027
  },
855
- "anthropic.claude-opus-4-5-20251101-v1:0": {
856
- "id": "anthropic.claude-opus-4-5-20251101-v1:0",
857
- "name": "Claude Opus 4.5",
858
- "family": "claude-opus",
859
- "attachment": true,
860
- "reasoning": true,
1028
+ "mistral.ministral-3-8b-instruct": {
1029
+ "id": "mistral.ministral-3-8b-instruct",
1030
+ "name": "Ministral 3 8B",
1031
+ "family": "ministral",
1032
+ "attachment": false,
1033
+ "reasoning": false,
861
1034
  "tool_call": true,
862
1035
  "structured_output": true,
863
1036
  "temperature": true,
864
- "knowledge": "2025-03-31",
865
- "release_date": "2025-11-24",
866
- "last_updated": "2025-08-01",
1037
+ "release_date": "2024-12-01",
1038
+ "last_updated": "2024-12-01",
867
1039
  "modalities": {
868
1040
  "input": [
869
- "text",
870
- "image",
871
- "pdf"
1041
+ "text"
872
1042
  ],
873
1043
  "output": [
874
1044
  "text"
@@ -876,87 +1046,178 @@
876
1046
  },
877
1047
  "open_weights": false,
878
1048
  "limit": {
879
- "context": 200000,
880
- "output": 64000
1049
+ "context": 128000,
1050
+ "output": 4096
881
1051
  },
882
1052
  "cost": {
883
- "input": 5,
884
- "output": 25,
885
- "cache_read": 0.5,
886
- "cache_write": 6.25
1053
+ "input": 0.15,
1054
+ "output": 0.15
887
1055
  }
888
1056
  },
889
- "deepseek.v3-v1:0": {
890
- "id": "deepseek.v3-v1:0",
891
- "name": "DeepSeek-V3.1",
892
- "family": "deepseek",
893
- "attachment": false,
1057
+ "eu.anthropic.claude-opus-4-6-v1": {
1058
+ "id": "eu.anthropic.claude-opus-4-6-v1",
1059
+ "name": "Claude Opus 4.6 (EU)",
1060
+ "family": "claude-opus",
1061
+ "attachment": true,
894
1062
  "reasoning": true,
1063
+ "reasoning_options": [
1064
+ {
1065
+ "type": "effort",
1066
+ "values": [
1067
+ "low",
1068
+ "medium",
1069
+ "high",
1070
+ "max"
1071
+ ]
1072
+ },
1073
+ {
1074
+ "type": "budget_tokens",
1075
+ "min": 1024
1076
+ }
1077
+ ],
895
1078
  "tool_call": true,
896
1079
  "structured_output": true,
897
1080
  "temperature": true,
898
- "knowledge": "2024-07",
899
- "release_date": "2025-09-18",
900
- "last_updated": "2025-09-18",
1081
+ "knowledge": "2025-05-31",
1082
+ "release_date": "2026-02-05",
1083
+ "last_updated": "2026-03-13",
901
1084
  "modalities": {
902
1085
  "input": [
903
- "text"
1086
+ "text",
1087
+ "image",
1088
+ "pdf"
904
1089
  ],
905
1090
  "output": [
906
1091
  "text"
907
1092
  ]
908
1093
  },
909
- "open_weights": true,
1094
+ "open_weights": false,
910
1095
  "limit": {
911
- "context": 163840,
912
- "output": 81920
1096
+ "context": 1000000,
1097
+ "output": 128000
913
1098
  },
914
1099
  "cost": {
915
- "input": 0.58,
916
- "output": 1.68
1100
+ "input": 5.5,
1101
+ "output": 27.5,
1102
+ "cache_read": 0.55,
1103
+ "cache_write": 6.875
917
1104
  }
918
1105
  },
919
- "meta.llama4-maverick-17b-instruct-v1:0": {
920
- "id": "meta.llama4-maverick-17b-instruct-v1:0",
921
- "name": "Llama 4 Maverick 17B Instruct",
922
- "family": "llama",
1106
+ "au.anthropic.claude-opus-4-6-v1": {
1107
+ "id": "au.anthropic.claude-opus-4-6-v1",
1108
+ "name": "AU Anthropic Claude Opus 4.6",
1109
+ "family": "claude-opus",
923
1110
  "attachment": true,
924
- "reasoning": false,
1111
+ "reasoning": true,
1112
+ "reasoning_options": [
1113
+ {
1114
+ "type": "effort",
1115
+ "values": [
1116
+ "low",
1117
+ "medium",
1118
+ "high",
1119
+ "max"
1120
+ ]
1121
+ },
1122
+ {
1123
+ "type": "budget_tokens",
1124
+ "min": 1024
1125
+ }
1126
+ ],
925
1127
  "tool_call": true,
1128
+ "structured_output": true,
926
1129
  "temperature": true,
927
- "knowledge": "2024-08",
928
- "release_date": "2025-04-05",
929
- "last_updated": "2025-04-05",
1130
+ "knowledge": "2025-05",
1131
+ "release_date": "2026-02-05",
1132
+ "last_updated": "2026-02-05",
930
1133
  "modalities": {
931
1134
  "input": [
932
1135
  "text",
933
- "image"
1136
+ "image",
1137
+ "pdf"
934
1138
  ],
935
1139
  "output": [
936
1140
  "text"
937
1141
  ]
938
1142
  },
939
- "open_weights": true,
1143
+ "open_weights": false,
940
1144
  "limit": {
941
1145
  "context": 1000000,
942
- "output": 16384
1146
+ "output": 128000
943
1147
  },
944
1148
  "cost": {
945
- "input": 0.24,
946
- "output": 0.97
947
- }
948
- },
949
- "eu.anthropic.claude-opus-4-7": {
950
- "id": "eu.anthropic.claude-opus-4-7",
951
- "name": "Claude Opus 4.7 (EU)",
1149
+ "input": 16.5,
1150
+ "output": 82.5,
1151
+ "cache_read": 1.65,
1152
+ "cache_write": 20.625
1153
+ }
1154
+ },
1155
+ "openai.gpt-oss-120b": {
1156
+ "id": "openai.gpt-oss-120b",
1157
+ "name": "gpt-oss-120b",
1158
+ "family": "gpt-oss",
1159
+ "attachment": false,
1160
+ "reasoning": true,
1161
+ "reasoning_options": [
1162
+ {
1163
+ "type": "effort",
1164
+ "values": [
1165
+ "low",
1166
+ "medium",
1167
+ "high"
1168
+ ]
1169
+ }
1170
+ ],
1171
+ "tool_call": true,
1172
+ "structured_output": true,
1173
+ "temperature": true,
1174
+ "release_date": "2025-08-05",
1175
+ "last_updated": "2025-08-05",
1176
+ "modalities": {
1177
+ "input": [
1178
+ "text"
1179
+ ],
1180
+ "output": [
1181
+ "text"
1182
+ ]
1183
+ },
1184
+ "open_weights": false,
1185
+ "limit": {
1186
+ "context": 128000,
1187
+ "output": 16384
1188
+ },
1189
+ "provider": {
1190
+ "npm": "@ai-sdk/amazon-bedrock/mantle",
1191
+ "api": "https://bedrock-mantle.${AWS_REGION}.api.aws/v1",
1192
+ "shape": "responses"
1193
+ },
1194
+ "cost": {
1195
+ "input": 0.15,
1196
+ "output": 0.6
1197
+ }
1198
+ },
1199
+ "global.anthropic.claude-opus-4-8": {
1200
+ "id": "global.anthropic.claude-opus-4-8",
1201
+ "name": "Claude Opus 4.8 (Global)",
952
1202
  "family": "claude-opus",
953
1203
  "attachment": true,
954
1204
  "reasoning": true,
1205
+ "reasoning_options": [
1206
+ {
1207
+ "type": "effort",
1208
+ "values": [
1209
+ "low",
1210
+ "medium",
1211
+ "high",
1212
+ "xhigh",
1213
+ "max"
1214
+ ]
1215
+ }
1216
+ ],
955
1217
  "tool_call": true,
956
1218
  "temperature": false,
957
- "knowledge": "2026-01-31",
958
- "release_date": "2026-04-16",
959
- "last_updated": "2026-04-16",
1219
+ "release_date": "2026-05-28",
1220
+ "last_updated": "2026-05-28",
960
1221
  "modalities": {
961
1222
  "input": [
962
1223
  "text",
@@ -979,21 +1240,21 @@
979
1240
  "cache_write": 6.25
980
1241
  }
981
1242
  },
982
- "qwen.qwen3-32b-v1:0": {
983
- "id": "qwen.qwen3-32b-v1:0",
984
- "name": "Qwen3 32B (dense)",
985
- "family": "qwen",
986
- "attachment": false,
987
- "reasoning": true,
1243
+ "us.meta.llama4-maverick-17b-instruct-v1:0": {
1244
+ "id": "us.meta.llama4-maverick-17b-instruct-v1:0",
1245
+ "name": "Llama 4 Maverick 17B Instruct (US)",
1246
+ "family": "llama",
1247
+ "attachment": true,
1248
+ "reasoning": false,
988
1249
  "tool_call": true,
989
- "structured_output": true,
990
1250
  "temperature": true,
991
- "knowledge": "2024-04",
992
- "release_date": "2025-09-18",
993
- "last_updated": "2025-09-18",
1251
+ "knowledge": "2024-08",
1252
+ "release_date": "2025-04-05",
1253
+ "last_updated": "2025-04-05",
994
1254
  "modalities": {
995
1255
  "input": [
996
- "text"
1256
+ "text",
1257
+ "image"
997
1258
  ],
998
1259
  "output": [
999
1260
  "text"
@@ -1001,30 +1262,43 @@
1001
1262
  },
1002
1263
  "open_weights": true,
1003
1264
  "limit": {
1004
- "context": 16384,
1265
+ "context": 1000000,
1005
1266
  "output": 16384
1006
1267
  },
1007
1268
  "cost": {
1008
- "input": 0.15,
1009
- "output": 0.6
1269
+ "input": 0.24,
1270
+ "output": 0.97
1010
1271
  }
1011
1272
  },
1012
- "amazon.nova-lite-v1:0": {
1013
- "id": "amazon.nova-lite-v1:0",
1014
- "name": "Nova Lite",
1015
- "family": "nova-lite",
1273
+ "openai.gpt-5.4": {
1274
+ "id": "openai.gpt-5.4",
1275
+ "name": "GPT-5.4",
1276
+ "family": "gpt",
1016
1277
  "attachment": true,
1017
- "reasoning": false,
1278
+ "reasoning": true,
1279
+ "reasoning_options": [
1280
+ {
1281
+ "type": "effort",
1282
+ "values": [
1283
+ "none",
1284
+ "low",
1285
+ "medium",
1286
+ "high",
1287
+ "xhigh"
1288
+ ]
1289
+ }
1290
+ ],
1018
1291
  "tool_call": true,
1019
- "temperature": true,
1020
- "knowledge": "2024-10",
1021
- "release_date": "2024-12-03",
1022
- "last_updated": "2024-12-03",
1292
+ "structured_output": true,
1293
+ "temperature": false,
1294
+ "knowledge": "2025-08-31",
1295
+ "release_date": "2026-03-05",
1296
+ "last_updated": "2026-06-01",
1023
1297
  "modalities": {
1024
1298
  "input": [
1025
1299
  "text",
1026
1300
  "image",
1027
- "video"
1301
+ "pdf"
1028
1302
  ],
1029
1303
  "output": [
1030
1304
  "text"
@@ -1032,13 +1306,18 @@
1032
1306
  },
1033
1307
  "open_weights": false,
1034
1308
  "limit": {
1035
- "context": 300000,
1036
- "output": 8192
1309
+ "context": 272000,
1310
+ "output": 128000
1311
+ },
1312
+ "provider": {
1313
+ "npm": "@ai-sdk/amazon-bedrock/mantle",
1314
+ "api": "https://bedrock-mantle.${AWS_REGION}.api.aws/openai/v1",
1315
+ "shape": "responses"
1037
1316
  },
1038
1317
  "cost": {
1039
- "input": 0.06,
1040
- "output": 0.24,
1041
- "cache_read": 0.015
1318
+ "input": 2.75,
1319
+ "output": 16.5,
1320
+ "cache_read": 0.275
1042
1321
  }
1043
1322
  },
1044
1323
  "mistral.devstral-2-123b": {
@@ -1070,18 +1349,216 @@
1070
1349
  "output": 2
1071
1350
  }
1072
1351
  },
1073
- "eu.anthropic.claude-opus-4-5-20251101-v1:0": {
1074
- "id": "eu.anthropic.claude-opus-4-5-20251101-v1:0",
1075
- "name": "Claude Opus 4.5 (EU)",
1352
+ "zai.glm-4.7": {
1353
+ "id": "zai.glm-4.7",
1354
+ "name": "GLM-4.7",
1355
+ "family": "glm",
1356
+ "attachment": false,
1357
+ "reasoning": true,
1358
+ "reasoning_options": [],
1359
+ "tool_call": true,
1360
+ "interleaved": {
1361
+ "field": "reasoning_content"
1362
+ },
1363
+ "structured_output": true,
1364
+ "temperature": true,
1365
+ "knowledge": "2025-04",
1366
+ "release_date": "2025-12-22",
1367
+ "last_updated": "2025-12-22",
1368
+ "modalities": {
1369
+ "input": [
1370
+ "text"
1371
+ ],
1372
+ "output": [
1373
+ "text"
1374
+ ]
1375
+ },
1376
+ "open_weights": true,
1377
+ "limit": {
1378
+ "context": 204800,
1379
+ "output": 131072
1380
+ },
1381
+ "cost": {
1382
+ "input": 0.6,
1383
+ "output": 2.2
1384
+ }
1385
+ },
1386
+ "writer.palmyra-x4-v1:0": {
1387
+ "id": "writer.palmyra-x4-v1:0",
1388
+ "name": "Palmyra X4",
1389
+ "family": "palmyra",
1390
+ "attachment": false,
1391
+ "reasoning": true,
1392
+ "reasoning_options": [],
1393
+ "tool_call": true,
1394
+ "temperature": true,
1395
+ "release_date": "2025-04-28",
1396
+ "last_updated": "2025-04-28",
1397
+ "modalities": {
1398
+ "input": [
1399
+ "text"
1400
+ ],
1401
+ "output": [
1402
+ "text"
1403
+ ]
1404
+ },
1405
+ "open_weights": false,
1406
+ "limit": {
1407
+ "context": 122880,
1408
+ "output": 8192
1409
+ },
1410
+ "cost": {
1411
+ "input": 2.5,
1412
+ "output": 10
1413
+ }
1414
+ },
1415
+ "mistral.magistral-small-2509": {
1416
+ "id": "mistral.magistral-small-2509",
1417
+ "name": "Magistral Small 1.2",
1418
+ "family": "magistral",
1419
+ "attachment": false,
1420
+ "reasoning": true,
1421
+ "reasoning_options": [],
1422
+ "tool_call": true,
1423
+ "structured_output": true,
1424
+ "temperature": true,
1425
+ "release_date": "2025-12-02",
1426
+ "last_updated": "2025-12-02",
1427
+ "modalities": {
1428
+ "input": [
1429
+ "text",
1430
+ "image"
1431
+ ],
1432
+ "output": [
1433
+ "text"
1434
+ ]
1435
+ },
1436
+ "open_weights": true,
1437
+ "limit": {
1438
+ "context": 128000,
1439
+ "output": 40000
1440
+ },
1441
+ "cost": {
1442
+ "input": 0.5,
1443
+ "output": 1.5
1444
+ }
1445
+ },
1446
+ "qwen.qwen3-coder-480b-a35b-v1:0": {
1447
+ "id": "qwen.qwen3-coder-480b-a35b-v1:0",
1448
+ "name": "Qwen3 Coder 480B A35B Instruct",
1449
+ "family": "qwen",
1450
+ "attachment": false,
1451
+ "reasoning": false,
1452
+ "tool_call": true,
1453
+ "structured_output": true,
1454
+ "temperature": true,
1455
+ "knowledge": "2024-04",
1456
+ "release_date": "2025-09-18",
1457
+ "last_updated": "2025-09-18",
1458
+ "modalities": {
1459
+ "input": [
1460
+ "text"
1461
+ ],
1462
+ "output": [
1463
+ "text"
1464
+ ]
1465
+ },
1466
+ "open_weights": true,
1467
+ "limit": {
1468
+ "context": 131072,
1469
+ "output": 65536
1470
+ },
1471
+ "cost": {
1472
+ "input": 0.22,
1473
+ "output": 1.8
1474
+ }
1475
+ },
1476
+ "amazon.nova-micro-v1:0": {
1477
+ "id": "amazon.nova-micro-v1:0",
1478
+ "name": "Nova Micro",
1479
+ "family": "nova-micro",
1480
+ "attachment": false,
1481
+ "reasoning": false,
1482
+ "tool_call": true,
1483
+ "temperature": true,
1484
+ "knowledge": "2024-10",
1485
+ "release_date": "2024-12-03",
1486
+ "last_updated": "2024-12-03",
1487
+ "modalities": {
1488
+ "input": [
1489
+ "text"
1490
+ ],
1491
+ "output": [
1492
+ "text"
1493
+ ]
1494
+ },
1495
+ "open_weights": false,
1496
+ "limit": {
1497
+ "context": 128000,
1498
+ "output": 8192
1499
+ },
1500
+ "cost": {
1501
+ "input": 0.035,
1502
+ "output": 0.14,
1503
+ "cache_read": 0.00875
1504
+ }
1505
+ },
1506
+ "mistral.pixtral-large-2502-v1:0": {
1507
+ "id": "mistral.pixtral-large-2502-v1:0",
1508
+ "name": "Pixtral Large (25.02)",
1509
+ "family": "mistral",
1510
+ "attachment": false,
1511
+ "reasoning": false,
1512
+ "tool_call": true,
1513
+ "temperature": true,
1514
+ "release_date": "2025-04-08",
1515
+ "last_updated": "2025-04-08",
1516
+ "modalities": {
1517
+ "input": [
1518
+ "text",
1519
+ "image"
1520
+ ],
1521
+ "output": [
1522
+ "text"
1523
+ ]
1524
+ },
1525
+ "open_weights": false,
1526
+ "limit": {
1527
+ "context": 128000,
1528
+ "output": 8192
1529
+ },
1530
+ "cost": {
1531
+ "input": 2,
1532
+ "output": 6
1533
+ }
1534
+ },
1535
+ "us.anthropic.claude-opus-4-6-v1": {
1536
+ "id": "us.anthropic.claude-opus-4-6-v1",
1537
+ "name": "Claude Opus 4.6 (US)",
1076
1538
  "family": "claude-opus",
1077
1539
  "attachment": true,
1078
1540
  "reasoning": true,
1541
+ "reasoning_options": [
1542
+ {
1543
+ "type": "effort",
1544
+ "values": [
1545
+ "low",
1546
+ "medium",
1547
+ "high",
1548
+ "max"
1549
+ ]
1550
+ },
1551
+ {
1552
+ "type": "budget_tokens",
1553
+ "min": 1024
1554
+ }
1555
+ ],
1079
1556
  "tool_call": true,
1080
1557
  "structured_output": true,
1081
1558
  "temperature": true,
1082
- "knowledge": "2025-03-31",
1083
- "release_date": "2025-11-24",
1084
- "last_updated": "2025-08-01",
1559
+ "knowledge": "2025-05-31",
1560
+ "release_date": "2026-02-05",
1561
+ "last_updated": "2026-03-13",
1085
1562
  "modalities": {
1086
1563
  "input": [
1087
1564
  "text",
@@ -1094,8 +1571,8 @@
1094
1571
  },
1095
1572
  "open_weights": false,
1096
1573
  "limit": {
1097
- "context": 200000,
1098
- "output": 64000
1574
+ "context": 1000000,
1575
+ "output": 128000
1099
1576
  },
1100
1577
  "cost": {
1101
1578
  "input": 5,
@@ -1104,20 +1581,74 @@
1104
1581
  "cache_write": 6.25
1105
1582
  }
1106
1583
  },
1107
- "openai.gpt-oss-120b-1:0": {
1108
- "id": "openai.gpt-oss-120b-1:0",
1109
- "name": "gpt-oss-120b",
1110
- "family": "gpt-oss",
1111
- "attachment": false,
1112
- "reasoning": false,
1584
+ "jp.anthropic.claude-opus-4-7": {
1585
+ "id": "jp.anthropic.claude-opus-4-7",
1586
+ "name": "Claude Opus 4.7 (JP)",
1587
+ "family": "claude-opus",
1588
+ "attachment": true,
1589
+ "reasoning": true,
1590
+ "reasoning_options": [
1591
+ {
1592
+ "type": "effort",
1593
+ "values": [
1594
+ "low",
1595
+ "medium",
1596
+ "high",
1597
+ "xhigh",
1598
+ "max"
1599
+ ]
1600
+ }
1601
+ ],
1602
+ "tool_call": true,
1603
+ "temperature": false,
1604
+ "knowledge": "2026-01-31",
1605
+ "release_date": "2026-04-16",
1606
+ "last_updated": "2026-04-16",
1607
+ "modalities": {
1608
+ "input": [
1609
+ "text",
1610
+ "image",
1611
+ "pdf"
1612
+ ],
1613
+ "output": [
1614
+ "text"
1615
+ ]
1616
+ },
1617
+ "open_weights": false,
1618
+ "limit": {
1619
+ "context": 1000000,
1620
+ "output": 128000
1621
+ },
1622
+ "cost": {
1623
+ "input": 5,
1624
+ "output": 25,
1625
+ "cache_read": 0.5,
1626
+ "cache_write": 6.25
1627
+ }
1628
+ },
1629
+ "au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
1630
+ "id": "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
1631
+ "name": "Claude Sonnet 4.5 (AU)",
1632
+ "family": "claude-sonnet",
1633
+ "attachment": true,
1634
+ "reasoning": true,
1635
+ "reasoning_options": [
1636
+ {
1637
+ "type": "budget_tokens",
1638
+ "min": 1024
1639
+ }
1640
+ ],
1113
1641
  "tool_call": true,
1114
1642
  "structured_output": true,
1115
1643
  "temperature": true,
1116
- "release_date": "2025-08-05",
1117
- "last_updated": "2025-08-05",
1644
+ "knowledge": "2025-07-31",
1645
+ "release_date": "2025-09-29",
1646
+ "last_updated": "2025-09-29",
1118
1647
  "modalities": {
1119
1648
  "input": [
1120
- "text"
1649
+ "text",
1650
+ "image",
1651
+ "pdf"
1121
1652
  ],
1122
1653
  "output": [
1123
1654
  "text"
@@ -1125,28 +1656,69 @@
1125
1656
  },
1126
1657
  "open_weights": false,
1127
1658
  "limit": {
1128
- "context": 128000,
1129
- "output": 16384
1659
+ "context": 200000,
1660
+ "output": 64000
1130
1661
  },
1131
1662
  "cost": {
1132
- "input": 0.15,
1133
- "output": 0.6
1663
+ "input": 3,
1664
+ "output": 15,
1665
+ "cache_read": 0.3,
1666
+ "cache_write": 3.75
1134
1667
  }
1135
1668
  },
1136
- "deepseek.r1-v1:0": {
1137
- "id": "deepseek.r1-v1:0",
1138
- "name": "DeepSeek-R1",
1139
- "family": "deepseek-thinking",
1669
+ "deepseek.v3-v1:0": {
1670
+ "id": "deepseek.v3-v1:0",
1671
+ "name": "DeepSeek-V3.1",
1672
+ "family": "deepseek",
1140
1673
  "attachment": false,
1141
1674
  "reasoning": true,
1675
+ "reasoning_options": [],
1142
1676
  "tool_call": true,
1677
+ "structured_output": true,
1143
1678
  "temperature": true,
1144
1679
  "knowledge": "2024-07",
1145
- "release_date": "2025-01-20",
1146
- "last_updated": "2025-05-29",
1680
+ "release_date": "2025-09-18",
1681
+ "last_updated": "2025-09-18",
1682
+ "modalities": {
1683
+ "input": [
1684
+ "text"
1685
+ ],
1686
+ "output": [
1687
+ "text"
1688
+ ]
1689
+ },
1690
+ "open_weights": true,
1691
+ "limit": {
1692
+ "context": 163840,
1693
+ "output": 81920
1694
+ },
1695
+ "cost": {
1696
+ "input": 0.58,
1697
+ "output": 1.68
1698
+ }
1699
+ },
1700
+ "anthropic.claude-opus-4-1-20250805-v1:0": {
1701
+ "id": "anthropic.claude-opus-4-1-20250805-v1:0",
1702
+ "name": "Claude Opus 4.1",
1703
+ "family": "claude-opus",
1704
+ "attachment": true,
1705
+ "reasoning": true,
1706
+ "reasoning_options": [
1707
+ {
1708
+ "type": "budget_tokens",
1709
+ "min": 1024
1710
+ }
1711
+ ],
1712
+ "tool_call": true,
1713
+ "temperature": true,
1714
+ "knowledge": "2025-03-31",
1715
+ "release_date": "2025-08-05",
1716
+ "last_updated": "2025-08-05",
1147
1717
  "modalities": {
1148
1718
  "input": [
1149
- "text"
1719
+ "text",
1720
+ "image",
1721
+ "pdf"
1150
1722
  ],
1151
1723
  "output": [
1152
1724
  "text"
@@ -1154,55 +1726,66 @@
1154
1726
  },
1155
1727
  "open_weights": false,
1156
1728
  "limit": {
1157
- "context": 128000,
1158
- "output": 32768
1729
+ "context": 200000,
1730
+ "output": 32000
1159
1731
  },
1160
1732
  "cost": {
1161
- "input": 1.35,
1162
- "output": 5.4
1733
+ "input": 15,
1734
+ "output": 75,
1735
+ "cache_read": 1.5,
1736
+ "cache_write": 18.75
1163
1737
  }
1164
1738
  },
1165
- "mistral.mistral-large-3-675b-instruct": {
1166
- "id": "mistral.mistral-large-3-675b-instruct",
1167
- "name": "Mistral Large 3",
1168
- "family": "mistral",
1169
- "attachment": false,
1170
- "reasoning": false,
1739
+ "jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
1740
+ "id": "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
1741
+ "name": "Claude Sonnet 4.5 (JP)",
1742
+ "family": "claude-sonnet",
1743
+ "attachment": true,
1744
+ "reasoning": true,
1745
+ "reasoning_options": [
1746
+ {
1747
+ "type": "budget_tokens",
1748
+ "min": 1024
1749
+ }
1750
+ ],
1171
1751
  "tool_call": true,
1172
1752
  "structured_output": true,
1173
1753
  "temperature": true,
1174
- "release_date": "2025-12-02",
1175
- "last_updated": "2025-12-02",
1754
+ "knowledge": "2025-07-31",
1755
+ "release_date": "2025-09-29",
1756
+ "last_updated": "2025-09-29",
1176
1757
  "modalities": {
1177
1758
  "input": [
1178
1759
  "text",
1179
- "image"
1760
+ "image",
1761
+ "pdf"
1180
1762
  ],
1181
1763
  "output": [
1182
1764
  "text"
1183
1765
  ]
1184
1766
  },
1185
- "open_weights": true,
1767
+ "open_weights": false,
1186
1768
  "limit": {
1187
- "context": 256000,
1188
- "output": 8192
1769
+ "context": 200000,
1770
+ "output": 64000
1189
1771
  },
1190
1772
  "cost": {
1191
- "input": 0.5,
1192
- "output": 1.5
1773
+ "input": 3,
1774
+ "output": 15,
1775
+ "cache_read": 0.3,
1776
+ "cache_write": 3.75
1193
1777
  }
1194
1778
  },
1195
- "mistral.magistral-small-2509": {
1196
- "id": "mistral.magistral-small-2509",
1197
- "name": "Magistral Small 1.2",
1198
- "family": "magistral",
1779
+ "google.gemma-3-4b-it": {
1780
+ "id": "google.gemma-3-4b-it",
1781
+ "name": "Gemma 3 4B IT",
1782
+ "family": "gemma",
1199
1783
  "attachment": false,
1200
- "reasoning": true,
1784
+ "reasoning": false,
1201
1785
  "tool_call": true,
1202
- "structured_output": true,
1203
1786
  "temperature": true,
1204
- "release_date": "2025-12-02",
1205
- "last_updated": "2025-12-02",
1787
+ "release_date": "2024-12-01",
1788
+ "last_updated": "2024-12-01",
1206
1789
  "modalities": {
1207
1790
  "input": [
1208
1791
  "text",
@@ -1212,30 +1795,39 @@
1212
1795
  "text"
1213
1796
  ]
1214
1797
  },
1215
- "open_weights": true,
1798
+ "open_weights": false,
1216
1799
  "limit": {
1217
1800
  "context": 128000,
1218
- "output": 40000
1801
+ "output": 4096
1219
1802
  },
1220
1803
  "cost": {
1221
- "input": 0.5,
1222
- "output": 1.5
1804
+ "input": 0.04,
1805
+ "output": 0.08
1223
1806
  }
1224
1807
  },
1225
- "mistral.pixtral-large-2502-v1:0": {
1226
- "id": "mistral.pixtral-large-2502-v1:0",
1227
- "name": "Pixtral Large (25.02)",
1228
- "family": "mistral",
1229
- "attachment": false,
1230
- "reasoning": false,
1808
+ "eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
1809
+ "id": "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
1810
+ "name": "Claude Sonnet 4.5 (EU)",
1811
+ "family": "claude-sonnet",
1812
+ "attachment": true,
1813
+ "reasoning": true,
1814
+ "reasoning_options": [
1815
+ {
1816
+ "type": "budget_tokens",
1817
+ "min": 1024
1818
+ }
1819
+ ],
1231
1820
  "tool_call": true,
1821
+ "structured_output": true,
1232
1822
  "temperature": true,
1233
- "release_date": "2025-04-08",
1234
- "last_updated": "2025-04-08",
1823
+ "knowledge": "2025-07-31",
1824
+ "release_date": "2025-09-29",
1825
+ "last_updated": "2025-09-29",
1235
1826
  "modalities": {
1236
1827
  "input": [
1237
1828
  "text",
1238
- "image"
1829
+ "image",
1830
+ "pdf"
1239
1831
  ],
1240
1832
  "output": [
1241
1833
  "text"
@@ -1243,29 +1835,31 @@
1243
1835
  },
1244
1836
  "open_weights": false,
1245
1837
  "limit": {
1246
- "context": 128000,
1247
- "output": 8192
1838
+ "context": 200000,
1839
+ "output": 64000
1248
1840
  },
1249
1841
  "cost": {
1250
- "input": 2,
1251
- "output": 6
1842
+ "input": 3.3,
1843
+ "output": 16.5,
1844
+ "cache_read": 0.33,
1845
+ "cache_write": 4.125
1252
1846
  }
1253
1847
  },
1254
- "mistral.voxtral-mini-3b-2507": {
1255
- "id": "mistral.voxtral-mini-3b-2507",
1256
- "name": "Voxtral Mini 3B 2507",
1257
- "family": "mistral",
1258
- "attachment": false,
1848
+ "qwen.qwen3-vl-235b-a22b": {
1849
+ "id": "qwen.qwen3-vl-235b-a22b",
1850
+ "name": "Qwen/Qwen3-VL-235B-A22B-Instruct",
1851
+ "family": "qwen",
1852
+ "attachment": true,
1259
1853
  "reasoning": false,
1260
1854
  "tool_call": true,
1261
1855
  "structured_output": true,
1262
1856
  "temperature": true,
1263
- "release_date": "2024-12-01",
1264
- "last_updated": "2024-12-01",
1857
+ "release_date": "2025-10-04",
1858
+ "last_updated": "2025-11-25",
1265
1859
  "modalities": {
1266
1860
  "input": [
1267
- "audio",
1268
- "text"
1861
+ "text",
1862
+ "image"
1269
1863
  ],
1270
1864
  "output": [
1271
1865
  "text"
@@ -1273,12 +1867,12 @@
1273
1867
  },
1274
1868
  "open_weights": false,
1275
1869
  "limit": {
1276
- "context": 128000,
1277
- "output": 4096
1870
+ "context": 262000,
1871
+ "output": 262000
1278
1872
  },
1279
1873
  "cost": {
1280
- "input": 0.04,
1281
- "output": 0.04
1874
+ "input": 0.3,
1875
+ "output": 1.5
1282
1876
  }
1283
1877
  },
1284
1878
  "writer.palmyra-x5-v1:0": {
@@ -1287,6 +1881,7 @@
1287
1881
  "family": "palmyra",
1288
1882
  "attachment": false,
1289
1883
  "reasoning": true,
1884
+ "reasoning_options": [],
1290
1885
  "tool_call": true,
1291
1886
  "temperature": true,
1292
1887
  "release_date": "2025-04-28",
@@ -1309,46 +1904,106 @@
1309
1904
  "output": 6
1310
1905
  }
1311
1906
  },
1312
- "minimax.minimax-m2.1": {
1313
- "id": "minimax.minimax-m2.1",
1314
- "name": "MiniMax M2.1",
1315
- "family": "minimax",
1316
- "attachment": false,
1907
+ "us.anthropic.claude-sonnet-4-6": {
1908
+ "id": "us.anthropic.claude-sonnet-4-6",
1909
+ "name": "Claude Sonnet 4.6 (US)",
1910
+ "family": "claude-sonnet",
1911
+ "attachment": true,
1317
1912
  "reasoning": true,
1913
+ "reasoning_options": [
1914
+ {
1915
+ "type": "effort",
1916
+ "values": [
1917
+ "low",
1918
+ "medium",
1919
+ "high",
1920
+ "max"
1921
+ ]
1922
+ },
1923
+ {
1924
+ "type": "budget_tokens",
1925
+ "min": 1024
1926
+ }
1927
+ ],
1318
1928
  "tool_call": true,
1319
- "structured_output": false,
1929
+ "structured_output": true,
1320
1930
  "temperature": true,
1321
- "release_date": "2025-12-23",
1322
- "last_updated": "2025-12-23",
1931
+ "knowledge": "2025-08-31",
1932
+ "release_date": "2026-02-17",
1933
+ "last_updated": "2026-03-13",
1323
1934
  "modalities": {
1324
1935
  "input": [
1936
+ "text",
1937
+ "image",
1938
+ "pdf"
1939
+ ],
1940
+ "output": [
1325
1941
  "text"
1942
+ ]
1943
+ },
1944
+ "open_weights": false,
1945
+ "limit": {
1946
+ "context": 1000000,
1947
+ "output": 64000
1948
+ },
1949
+ "cost": {
1950
+ "input": 3,
1951
+ "output": 15,
1952
+ "cache_read": 0.3,
1953
+ "cache_write": 3.75
1954
+ }
1955
+ },
1956
+ "au.anthropic.claude-haiku-4-5-20251001-v1:0": {
1957
+ "id": "au.anthropic.claude-haiku-4-5-20251001-v1:0",
1958
+ "name": "Claude Haiku 4.5 (AU)",
1959
+ "family": "claude-haiku",
1960
+ "attachment": true,
1961
+ "reasoning": true,
1962
+ "reasoning_options": [
1963
+ {
1964
+ "type": "budget_tokens",
1965
+ "min": 1024
1966
+ }
1967
+ ],
1968
+ "tool_call": true,
1969
+ "structured_output": true,
1970
+ "temperature": true,
1971
+ "knowledge": "2025-02-28",
1972
+ "release_date": "2025-10-15",
1973
+ "last_updated": "2025-10-15",
1974
+ "modalities": {
1975
+ "input": [
1976
+ "text",
1977
+ "image",
1978
+ "pdf"
1326
1979
  ],
1327
1980
  "output": [
1328
1981
  "text"
1329
1982
  ]
1330
1983
  },
1331
- "open_weights": true,
1984
+ "open_weights": false,
1332
1985
  "limit": {
1333
- "context": 204800,
1334
- "output": 131072
1986
+ "context": 200000,
1987
+ "output": 64000
1335
1988
  },
1336
1989
  "cost": {
1337
- "input": 0.3,
1338
- "output": 1.2
1990
+ "input": 1,
1991
+ "output": 5,
1992
+ "cache_read": 0.1,
1993
+ "cache_write": 1.25
1339
1994
  }
1340
1995
  },
1341
- "qwen.qwen3-next-80b-a3b": {
1342
- "id": "qwen.qwen3-next-80b-a3b",
1343
- "name": "Qwen/Qwen3-Next-80B-A3B-Instruct",
1344
- "family": "qwen",
1996
+ "meta.llama3-3-70b-instruct-v1:0": {
1997
+ "id": "meta.llama3-3-70b-instruct-v1:0",
1998
+ "name": "Llama 3.3 70B Instruct",
1999
+ "family": "llama",
1345
2000
  "attachment": false,
1346
2001
  "reasoning": false,
1347
2002
  "tool_call": true,
1348
- "structured_output": true,
1349
2003
  "temperature": true,
1350
- "release_date": "2025-09-18",
1351
- "last_updated": "2025-11-25",
2004
+ "knowledge": "2023-12",
2005
+ "release_date": "2024-12-06",
2006
+ "last_updated": "2024-12-06",
1352
2007
  "modalities": {
1353
2008
  "input": [
1354
2009
  "text"
@@ -1357,94 +2012,121 @@
1357
2012
  "text"
1358
2013
  ]
1359
2014
  },
1360
- "open_weights": false,
2015
+ "open_weights": true,
1361
2016
  "limit": {
1362
- "context": 262000,
1363
- "output": 262000
2017
+ "context": 128000,
2018
+ "output": 4096
1364
2019
  },
1365
2020
  "cost": {
1366
- "input": 0.14,
1367
- "output": 1.4
2021
+ "input": 0.72,
2022
+ "output": 0.72
1368
2023
  }
1369
2024
  },
1370
- "au.anthropic.claude-opus-4-6-v1": {
1371
- "id": "au.anthropic.claude-opus-4-6-v1",
1372
- "name": "AU Anthropic Claude Opus 4.6",
1373
- "family": "claude-opus",
1374
- "attachment": true,
2025
+ "zai.glm-5": {
2026
+ "id": "zai.glm-5",
2027
+ "name": "GLM-5",
2028
+ "family": "glm",
2029
+ "attachment": false,
1375
2030
  "reasoning": true,
2031
+ "reasoning_options": [],
1376
2032
  "tool_call": true,
2033
+ "interleaved": {
2034
+ "field": "reasoning_content"
2035
+ },
1377
2036
  "structured_output": true,
1378
2037
  "temperature": true,
1379
- "knowledge": "2025-05",
1380
- "release_date": "2026-02-05",
1381
- "last_updated": "2026-02-05",
2038
+ "release_date": "2026-03-18",
2039
+ "last_updated": "2026-03-18",
1382
2040
  "modalities": {
1383
2041
  "input": [
1384
- "text",
1385
- "image",
1386
- "pdf"
2042
+ "text"
1387
2043
  ],
1388
2044
  "output": [
1389
2045
  "text"
1390
2046
  ]
1391
2047
  },
1392
- "open_weights": false,
2048
+ "open_weights": true,
1393
2049
  "limit": {
1394
- "context": 1000000,
1395
- "output": 128000
2050
+ "context": 202752,
2051
+ "output": 101376
1396
2052
  },
1397
2053
  "cost": {
1398
- "input": 16.5,
1399
- "output": 82.5,
1400
- "cache_read": 1.65,
1401
- "cache_write": 20.625
2054
+ "input": 1,
2055
+ "output": 3.2
1402
2056
  }
1403
2057
  },
1404
- "meta.llama3-1-8b-instruct-v1:0": {
1405
- "id": "meta.llama3-1-8b-instruct-v1:0",
1406
- "name": "Llama 3.1 8B Instruct",
1407
- "family": "llama",
1408
- "attachment": false,
1409
- "reasoning": false,
2058
+ "us.anthropic.claude-opus-4-8": {
2059
+ "id": "us.anthropic.claude-opus-4-8",
2060
+ "name": "Claude Opus 4.8 (US)",
2061
+ "family": "claude-opus",
2062
+ "attachment": true,
2063
+ "reasoning": true,
2064
+ "reasoning_options": [
2065
+ {
2066
+ "type": "effort",
2067
+ "values": [
2068
+ "low",
2069
+ "medium",
2070
+ "high",
2071
+ "xhigh",
2072
+ "max"
2073
+ ]
2074
+ }
2075
+ ],
1410
2076
  "tool_call": true,
1411
- "temperature": true,
1412
- "knowledge": "2023-12",
1413
- "release_date": "2024-07-23",
1414
- "last_updated": "2024-07-23",
2077
+ "temperature": false,
2078
+ "release_date": "2026-05-28",
2079
+ "last_updated": "2026-05-28",
1415
2080
  "modalities": {
1416
2081
  "input": [
1417
- "text"
2082
+ "text",
2083
+ "image",
2084
+ "pdf"
1418
2085
  ],
1419
2086
  "output": [
1420
2087
  "text"
1421
2088
  ]
1422
2089
  },
1423
- "open_weights": true,
2090
+ "open_weights": false,
1424
2091
  "limit": {
1425
- "context": 128000,
1426
- "output": 4096
2092
+ "context": 1000000,
2093
+ "output": 128000
1427
2094
  },
1428
2095
  "cost": {
1429
- "input": 0.22,
1430
- "output": 0.22
2096
+ "input": 5,
2097
+ "output": 25,
2098
+ "cache_read": 0.5,
2099
+ "cache_write": 6.25
1431
2100
  }
1432
2101
  },
1433
- "amazon.nova-2-lite-v1:0": {
1434
- "id": "amazon.nova-2-lite-v1:0",
1435
- "name": "Nova 2 Lite",
1436
- "family": "nova",
1437
- "attachment": false,
1438
- "reasoning": false,
2102
+ "global.anthropic.claude-opus-4-7": {
2103
+ "id": "global.anthropic.claude-opus-4-7",
2104
+ "name": "Claude Opus 4.7 (Global)",
2105
+ "family": "claude-opus",
2106
+ "attachment": true,
2107
+ "reasoning": true,
2108
+ "reasoning_options": [
2109
+ {
2110
+ "type": "effort",
2111
+ "values": [
2112
+ "low",
2113
+ "medium",
2114
+ "high",
2115
+ "xhigh",
2116
+ "max"
2117
+ ]
2118
+ }
2119
+ ],
1439
2120
  "tool_call": true,
1440
- "temperature": true,
1441
- "release_date": "2024-12-01",
1442
- "last_updated": "2024-12-01",
2121
+ "temperature": false,
2122
+ "knowledge": "2026-01-31",
2123
+ "release_date": "2026-04-16",
2124
+ "last_updated": "2026-04-16",
1443
2125
  "modalities": {
1444
2126
  "input": [
1445
2127
  "text",
1446
2128
  "image",
1447
- "video"
2129
+ "pdf"
1448
2130
  ],
1449
2131
  "output": [
1450
2132
  "text"
@@ -1452,26 +2134,39 @@
1452
2134
  },
1453
2135
  "open_weights": false,
1454
2136
  "limit": {
1455
- "context": 128000,
1456
- "output": 4096
2137
+ "context": 1000000,
2138
+ "output": 128000
1457
2139
  },
1458
2140
  "cost": {
1459
- "input": 0.33,
1460
- "output": 2.75
2141
+ "input": 5,
2142
+ "output": 25,
2143
+ "cache_read": 0.5,
2144
+ "cache_write": 6.25
1461
2145
  }
1462
2146
  },
1463
- "moonshotai.kimi-k2.5": {
1464
- "id": "moonshotai.kimi-k2.5",
1465
- "name": "Kimi K2.5",
1466
- "family": "kimi",
1467
- "attachment": false,
2147
+ "us.anthropic.claude-fable-5": {
2148
+ "id": "us.anthropic.claude-fable-5",
2149
+ "name": "Claude Fable 5 (US)",
2150
+ "family": "claude-fable",
2151
+ "attachment": true,
1468
2152
  "reasoning": true,
2153
+ "reasoning_options": [
2154
+ {
2155
+ "type": "effort",
2156
+ "values": [
2157
+ "low",
2158
+ "medium",
2159
+ "high",
2160
+ "xhigh",
2161
+ "max"
2162
+ ]
2163
+ }
2164
+ ],
1469
2165
  "tool_call": true,
1470
- "interleaved": true,
1471
- "structured_output": true,
1472
- "temperature": true,
1473
- "release_date": "2026-02-06",
1474
- "last_updated": "2026-02-06",
2166
+ "temperature": false,
2167
+ "knowledge": "2026-01-31",
2168
+ "release_date": "2026-06-09",
2169
+ "last_updated": "2026-06-09",
1475
2170
  "modalities": {
1476
2171
  "input": [
1477
2172
  "text",
@@ -1481,85 +2176,112 @@
1481
2176
  "text"
1482
2177
  ]
1483
2178
  },
1484
- "open_weights": true,
2179
+ "open_weights": false,
1485
2180
  "limit": {
1486
- "context": 256000,
1487
- "output": 256000
2181
+ "context": 1000000,
2182
+ "output": 128000
1488
2183
  },
1489
2184
  "cost": {
1490
- "input": 0.6,
1491
- "output": 3
2185
+ "input": 10,
2186
+ "output": 50,
2187
+ "cache_read": 1,
2188
+ "cache_write": 12.5
1492
2189
  }
1493
2190
  },
1494
- "nvidia.nemotron-super-3-120b": {
1495
- "id": "nvidia.nemotron-super-3-120b",
1496
- "name": "NVIDIA Nemotron 3 Super 120B A12B",
1497
- "family": "nemotron",
1498
- "attachment": false,
1499
- "reasoning": true,
2191
+ "amazon.nova-lite-v1:0": {
2192
+ "id": "amazon.nova-lite-v1:0",
2193
+ "name": "Nova Lite",
2194
+ "family": "nova-lite",
2195
+ "attachment": true,
2196
+ "reasoning": false,
1500
2197
  "tool_call": true,
1501
- "structured_output": true,
1502
2198
  "temperature": true,
1503
- "release_date": "2026-03-11",
1504
- "last_updated": "2026-03-11",
2199
+ "knowledge": "2024-10",
2200
+ "release_date": "2024-12-03",
2201
+ "last_updated": "2024-12-03",
1505
2202
  "modalities": {
1506
2203
  "input": [
1507
- "text"
2204
+ "text",
2205
+ "image",
2206
+ "video"
1508
2207
  ],
1509
2208
  "output": [
1510
2209
  "text"
1511
2210
  ]
1512
2211
  },
1513
- "open_weights": true,
2212
+ "open_weights": false,
1514
2213
  "limit": {
1515
- "context": 262144,
1516
- "output": 131072
2214
+ "context": 300000,
2215
+ "output": 8192
1517
2216
  },
1518
2217
  "cost": {
1519
- "input": 0.15,
1520
- "output": 0.65
2218
+ "input": 0.06,
2219
+ "output": 0.24,
2220
+ "cache_read": 0.015
1521
2221
  }
1522
2222
  },
1523
- "qwen.qwen3-coder-next": {
1524
- "id": "qwen.qwen3-coder-next",
1525
- "name": "Qwen3 Coder Next",
1526
- "family": "qwen",
1527
- "attachment": false,
2223
+ "us.anthropic.claude-haiku-4-5-20251001-v1:0": {
2224
+ "id": "us.anthropic.claude-haiku-4-5-20251001-v1:0",
2225
+ "name": "Claude Haiku 4.5 (US)",
2226
+ "family": "claude-haiku",
2227
+ "attachment": true,
1528
2228
  "reasoning": true,
2229
+ "reasoning_options": [
2230
+ {
2231
+ "type": "budget_tokens",
2232
+ "min": 1024
2233
+ }
2234
+ ],
1529
2235
  "tool_call": true,
1530
2236
  "structured_output": true,
1531
2237
  "temperature": true,
1532
- "release_date": "2026-02-06",
1533
- "last_updated": "2026-02-06",
2238
+ "knowledge": "2025-02-28",
2239
+ "release_date": "2025-10-15",
2240
+ "last_updated": "2025-10-15",
1534
2241
  "modalities": {
1535
2242
  "input": [
1536
- "text"
2243
+ "text",
2244
+ "image",
2245
+ "pdf"
1537
2246
  ],
1538
2247
  "output": [
1539
2248
  "text"
1540
2249
  ]
1541
2250
  },
1542
- "open_weights": true,
2251
+ "open_weights": false,
1543
2252
  "limit": {
1544
- "context": 131072,
1545
- "output": 65536
2253
+ "context": 200000,
2254
+ "output": 64000
1546
2255
  },
1547
2256
  "cost": {
1548
- "input": 0.22,
1549
- "output": 1.8
2257
+ "input": 1,
2258
+ "output": 5,
2259
+ "cache_read": 0.1,
2260
+ "cache_write": 1.25
1550
2261
  }
1551
2262
  },
1552
- "mistral.ministral-3-3b-instruct": {
1553
- "id": "mistral.ministral-3-3b-instruct",
1554
- "name": "Ministral 3 3B",
1555
- "family": "ministral",
1556
- "attachment": false,
1557
- "reasoning": false,
2263
+ "xai.grok-4.3": {
2264
+ "id": "xai.grok-4.3",
2265
+ "name": "Grok 4.3",
2266
+ "family": "grok",
2267
+ "attachment": true,
2268
+ "reasoning": true,
2269
+ "reasoning_options": [
2270
+ {
2271
+ "type": "effort",
2272
+ "values": [
2273
+ "none",
2274
+ "low",
2275
+ "medium",
2276
+ "high"
2277
+ ]
2278
+ }
2279
+ ],
1558
2280
  "tool_call": true,
1559
2281
  "structured_output": true,
1560
2282
  "temperature": true,
1561
- "release_date": "2025-12-02",
1562
- "last_updated": "2025-12-02",
2283
+ "release_date": "2026-04-17",
2284
+ "last_updated": "2026-06-28",
1563
2285
  "modalities": {
1564
2286
  "input": [
1565
2287
  "text",
@@ -1569,33 +2291,37 @@
1569
2291
  "text"
1570
2292
  ]
1571
2293
  },
1572
- "open_weights": true,
2294
+ "open_weights": false,
1573
2295
  "limit": {
1574
- "context": 256000,
1575
- "output": 8192
2296
+ "context": 1000000,
2297
+ "output": 131072
2298
+ },
2299
+ "provider": {
2300
+ "npm": "@ai-sdk/amazon-bedrock/mantle",
2301
+ "api": "https://bedrock-mantle.${AWS_REGION}.api.aws/openai/v1",
2302
+ "shape": "responses"
1576
2303
  },
1577
2304
  "cost": {
1578
- "input": 0.1,
1579
- "output": 0.1
2305
+ "input": 1.25,
2306
+ "output": 2.5,
2307
+ "cache_read": 0.2
1580
2308
  }
1581
2309
  },
1582
- "eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
1583
- "id": "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
1584
- "name": "Claude Haiku 4.5 (EU)",
1585
- "family": "claude-haiku",
1586
- "attachment": true,
1587
- "reasoning": true,
2310
+ "mistral.voxtral-mini-3b-2507": {
2311
+ "id": "mistral.voxtral-mini-3b-2507",
2312
+ "name": "Voxtral Mini 3B 2507",
2313
+ "family": "mistral",
2314
+ "attachment": false,
2315
+ "reasoning": false,
1588
2316
  "tool_call": true,
1589
2317
  "structured_output": true,
1590
2318
  "temperature": true,
1591
- "knowledge": "2025-02-28",
1592
- "release_date": "2025-10-15",
1593
- "last_updated": "2025-10-15",
2319
+ "release_date": "2024-12-01",
2320
+ "last_updated": "2024-12-01",
1594
2321
  "modalities": {
1595
2322
  "input": [
1596
- "text",
1597
- "image",
1598
- "pdf"
2323
+ "audio",
2324
+ "text"
1599
2325
  ],
1600
2326
  "output": [
1601
2327
  "text"
@@ -1603,27 +2329,27 @@
1603
2329
  },
1604
2330
  "open_weights": false,
1605
2331
  "limit": {
1606
- "context": 200000,
1607
- "output": 64000
2332
+ "context": 128000,
2333
+ "output": 4096
1608
2334
  },
1609
2335
  "cost": {
1610
- "input": 1,
1611
- "output": 5,
1612
- "cache_read": 0.1,
1613
- "cache_write": 1.25
2336
+ "input": 0.04,
2337
+ "output": 0.04
1614
2338
  }
1615
2339
  },
1616
- "minimax.minimax-m2": {
1617
- "id": "minimax.minimax-m2",
1618
- "name": "MiniMax M2",
1619
- "family": "minimax",
2340
+ "moonshot.kimi-k2-thinking": {
2341
+ "id": "moonshot.kimi-k2-thinking",
2342
+ "name": "Kimi K2 Thinking",
2343
+ "family": "kimi-thinking",
1620
2344
  "attachment": false,
1621
2345
  "reasoning": true,
2346
+ "reasoning_options": [],
1622
2347
  "tool_call": true,
1623
- "structured_output": false,
2348
+ "interleaved": true,
2349
+ "structured_output": true,
1624
2350
  "temperature": true,
1625
- "release_date": "2025-10-27",
1626
- "last_updated": "2025-10-27",
2351
+ "release_date": "2025-12-02",
2352
+ "last_updated": "2025-12-02",
1627
2353
  "modalities": {
1628
2354
  "input": [
1629
2355
  "text"
@@ -1634,12 +2360,12 @@
1634
2360
  },
1635
2361
  "open_weights": true,
1636
2362
  "limit": {
1637
- "context": 204608,
1638
- "output": 128000
2363
+ "context": 262143,
2364
+ "output": 16000
1639
2365
  },
1640
2366
  "cost": {
1641
- "input": 0.3,
1642
- "output": 1.2
2367
+ "input": 0.6,
2368
+ "output": 2.5
1643
2369
  }
1644
2370
  },
1645
2371
  "meta.llama3-1-70b-instruct-v1:0": {
@@ -1671,20 +2397,68 @@
1671
2397
  "output": 0.72
1672
2398
  }
1673
2399
  },
1674
- "openai.gpt-oss-safeguard-120b": {
1675
- "id": "openai.gpt-oss-safeguard-120b",
1676
- "name": "GPT OSS Safeguard 120B",
1677
- "family": "gpt-oss",
2400
+ "us.deepseek.r1-v1:0": {
2401
+ "id": "us.deepseek.r1-v1:0",
2402
+ "name": "DeepSeek-R1 (US)",
2403
+ "family": "deepseek-thinking",
1678
2404
  "attachment": false,
1679
- "reasoning": false,
2405
+ "reasoning": true,
2406
+ "reasoning_options": [],
2407
+ "tool_call": true,
2408
+ "temperature": true,
2409
+ "knowledge": "2024-07",
2410
+ "release_date": "2025-01-20",
2411
+ "last_updated": "2025-05-29",
2412
+ "modalities": {
2413
+ "input": [
2414
+ "text"
2415
+ ],
2416
+ "output": [
2417
+ "text"
2418
+ ]
2419
+ },
2420
+ "open_weights": true,
2421
+ "limit": {
2422
+ "context": 128000,
2423
+ "output": 32768
2424
+ },
2425
+ "cost": {
2426
+ "input": 1.35,
2427
+ "output": 5.4
2428
+ }
2429
+ },
2430
+ "global.anthropic.claude-sonnet-4-6": {
2431
+ "id": "global.anthropic.claude-sonnet-4-6",
2432
+ "name": "Claude Sonnet 4.6 (Global)",
2433
+ "family": "claude-sonnet",
2434
+ "attachment": true,
2435
+ "reasoning": true,
2436
+ "reasoning_options": [
2437
+ {
2438
+ "type": "effort",
2439
+ "values": [
2440
+ "low",
2441
+ "medium",
2442
+ "high",
2443
+ "max"
2444
+ ]
2445
+ },
2446
+ {
2447
+ "type": "budget_tokens",
2448
+ "min": 1024
2449
+ }
2450
+ ],
1680
2451
  "tool_call": true,
1681
2452
  "structured_output": true,
1682
2453
  "temperature": true,
1683
- "release_date": "2025-10-29",
1684
- "last_updated": "2025-10-29",
2454
+ "knowledge": "2025-08-31",
2455
+ "release_date": "2026-02-17",
2456
+ "last_updated": "2026-03-13",
1685
2457
  "modalities": {
1686
2458
  "input": [
1687
- "text"
2459
+ "text",
2460
+ "image",
2461
+ "pdf"
1688
2462
  ],
1689
2463
  "output": [
1690
2464
  "text"
@@ -1692,20 +2466,28 @@
1692
2466
  },
1693
2467
  "open_weights": false,
1694
2468
  "limit": {
1695
- "context": 128000,
1696
- "output": 16384
2469
+ "context": 1000000,
2470
+ "output": 64000
1697
2471
  },
1698
2472
  "cost": {
1699
- "input": 0.15,
1700
- "output": 0.6
2473
+ "input": 3,
2474
+ "output": 15,
2475
+ "cache_read": 0.3,
2476
+ "cache_write": 3.75
1701
2477
  }
1702
2478
  },
1703
- "global.anthropic.claude-haiku-4-5-20251001-v1:0": {
1704
- "id": "global.anthropic.claude-haiku-4-5-20251001-v1:0",
1705
- "name": "Claude Haiku 4.5 (Global)",
2479
+ "anthropic.claude-haiku-4-5-20251001-v1:0": {
2480
+ "id": "anthropic.claude-haiku-4-5-20251001-v1:0",
2481
+ "name": "Claude Haiku 4.5",
1706
2482
  "family": "claude-haiku",
1707
2483
  "attachment": true,
1708
2484
  "reasoning": true,
2485
+ "reasoning_options": [
2486
+ {
2487
+ "type": "budget_tokens",
2488
+ "min": 1024
2489
+ }
2490
+ ],
1709
2491
  "tool_call": true,
1710
2492
  "structured_output": true,
1711
2493
  "temperature": true,
@@ -1734,48 +2516,60 @@
1734
2516
  "cache_write": 1.25
1735
2517
  }
1736
2518
  },
1737
- "amazon.nova-micro-v1:0": {
1738
- "id": "amazon.nova-micro-v1:0",
1739
- "name": "Nova Micro",
1740
- "family": "nova-micro",
2519
+ "moonshotai.kimi-k2.5": {
2520
+ "id": "moonshotai.kimi-k2.5",
2521
+ "name": "Kimi K2.5",
2522
+ "family": "kimi",
1741
2523
  "attachment": false,
1742
- "reasoning": false,
2524
+ "reasoning": true,
2525
+ "reasoning_options": [],
1743
2526
  "tool_call": true,
2527
+ "interleaved": true,
2528
+ "structured_output": true,
1744
2529
  "temperature": true,
1745
- "knowledge": "2024-10",
1746
- "release_date": "2024-12-03",
1747
- "last_updated": "2024-12-03",
2530
+ "release_date": "2026-02-06",
2531
+ "last_updated": "2026-02-06",
1748
2532
  "modalities": {
1749
2533
  "input": [
1750
- "text"
2534
+ "text",
2535
+ "image"
1751
2536
  ],
1752
2537
  "output": [
1753
2538
  "text"
1754
2539
  ]
1755
2540
  },
1756
- "open_weights": false,
2541
+ "open_weights": true,
1757
2542
  "limit": {
1758
- "context": 128000,
1759
- "output": 8192
2543
+ "context": 262143,
2544
+ "output": 16000
1760
2545
  },
1761
2546
  "cost": {
1762
- "input": 0.035,
1763
- "output": 0.14,
1764
- "cache_read": 0.00875
2547
+ "input": 0.6,
2548
+ "output": 3
1765
2549
  }
1766
2550
  },
1767
- "anthropic.claude-sonnet-4-5-20250929-v1:0": {
1768
- "id": "anthropic.claude-sonnet-4-5-20250929-v1:0",
1769
- "name": "Claude Sonnet 4.5",
1770
- "family": "claude-sonnet",
2551
+ "au.anthropic.claude-opus-4-8": {
2552
+ "id": "au.anthropic.claude-opus-4-8",
2553
+ "name": "Claude Opus 4.8 (AU)",
2554
+ "family": "claude-opus",
1771
2555
  "attachment": true,
1772
2556
  "reasoning": true,
2557
+ "reasoning_options": [
2558
+ {
2559
+ "type": "effort",
2560
+ "values": [
2561
+ "low",
2562
+ "medium",
2563
+ "high",
2564
+ "xhigh",
2565
+ "max"
2566
+ ]
2567
+ }
2568
+ ],
1773
2569
  "tool_call": true,
1774
- "structured_output": true,
1775
- "temperature": true,
1776
- "knowledge": "2025-07-31",
1777
- "release_date": "2025-09-29",
1778
- "last_updated": "2025-09-29",
2570
+ "temperature": false,
2571
+ "release_date": "2026-05-28",
2572
+ "last_updated": "2026-05-28",
1779
2573
  "modalities": {
1780
2574
  "input": [
1781
2575
  "text",
@@ -1788,65 +2582,92 @@
1788
2582
  },
1789
2583
  "open_weights": false,
1790
2584
  "limit": {
1791
- "context": 200000,
1792
- "output": 64000
2585
+ "context": 1000000,
2586
+ "output": 128000
1793
2587
  },
1794
2588
  "cost": {
1795
- "input": 3,
1796
- "output": 15,
1797
- "cache_read": 0.3,
1798
- "cache_write": 3.75
2589
+ "input": 5,
2590
+ "output": 25,
2591
+ "cache_read": 0.5,
2592
+ "cache_write": 6.25
1799
2593
  }
1800
2594
  },
1801
- "eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
1802
- "id": "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
1803
- "name": "Claude Sonnet 4.5 (EU)",
1804
- "family": "claude-sonnet",
1805
- "attachment": true,
1806
- "reasoning": true,
2595
+ "nvidia.nemotron-nano-12b-v2": {
2596
+ "id": "nvidia.nemotron-nano-12b-v2",
2597
+ "name": "NVIDIA Nemotron Nano 12B v2 VL BF16",
2598
+ "family": "nemotron",
2599
+ "attachment": false,
2600
+ "reasoning": false,
1807
2601
  "tool_call": true,
1808
2602
  "structured_output": true,
1809
2603
  "temperature": true,
1810
- "knowledge": "2025-07-31",
1811
- "release_date": "2025-09-29",
1812
- "last_updated": "2025-09-29",
2604
+ "release_date": "2024-12-01",
2605
+ "last_updated": "2024-12-01",
1813
2606
  "modalities": {
1814
2607
  "input": [
1815
2608
  "text",
1816
- "image",
1817
- "pdf"
2609
+ "image"
1818
2610
  ],
1819
2611
  "output": [
1820
2612
  "text"
1821
2613
  ]
1822
2614
  },
1823
2615
  "open_weights": false,
2616
+ "limit": {
2617
+ "context": 128000,
2618
+ "output": 4096
2619
+ },
2620
+ "cost": {
2621
+ "input": 0.2,
2622
+ "output": 0.6
2623
+ }
2624
+ },
2625
+ "zai.glm-4.7-flash": {
2626
+ "id": "zai.glm-4.7-flash",
2627
+ "name": "GLM-4.7-Flash",
2628
+ "family": "glm-flash",
2629
+ "attachment": false,
2630
+ "reasoning": true,
2631
+ "reasoning_options": [],
2632
+ "tool_call": true,
2633
+ "structured_output": true,
2634
+ "temperature": true,
2635
+ "knowledge": "2025-04",
2636
+ "release_date": "2026-01-19",
2637
+ "last_updated": "2026-01-19",
2638
+ "modalities": {
2639
+ "input": [
2640
+ "text"
2641
+ ],
2642
+ "output": [
2643
+ "text"
2644
+ ]
2645
+ },
2646
+ "open_weights": true,
1824
2647
  "limit": {
1825
2648
  "context": 200000,
1826
- "output": 64000
2649
+ "output": 131072
1827
2650
  },
1828
2651
  "cost": {
1829
- "input": 3,
1830
- "output": 15,
1831
- "cache_read": 0.3,
1832
- "cache_write": 3.75
2652
+ "input": 0.07,
2653
+ "output": 0.4
1833
2654
  }
1834
2655
  },
1835
- "mistral.voxtral-small-24b-2507": {
1836
- "id": "mistral.voxtral-small-24b-2507",
1837
- "name": "Voxtral Small 24B 2507",
1838
- "family": "mistral",
2656
+ "meta.llama4-scout-17b-instruct-v1:0": {
2657
+ "id": "meta.llama4-scout-17b-instruct-v1:0",
2658
+ "name": "Llama 4 Scout 17B Instruct",
2659
+ "family": "llama",
1839
2660
  "attachment": true,
1840
2661
  "reasoning": false,
1841
2662
  "tool_call": true,
1842
- "structured_output": true,
1843
2663
  "temperature": true,
1844
- "release_date": "2025-07-01",
1845
- "last_updated": "2025-07-01",
2664
+ "knowledge": "2024-08",
2665
+ "release_date": "2025-04-05",
2666
+ "last_updated": "2025-04-05",
1846
2667
  "modalities": {
1847
2668
  "input": [
1848
2669
  "text",
1849
- "audio"
2670
+ "image"
1850
2671
  ],
1851
2672
  "output": [
1852
2673
  "text"
@@ -1854,25 +2675,26 @@
1854
2675
  },
1855
2676
  "open_weights": true,
1856
2677
  "limit": {
1857
- "context": 32000,
1858
- "output": 8192
2678
+ "context": 3500000,
2679
+ "output": 16384
1859
2680
  },
1860
2681
  "cost": {
1861
- "input": 0.15,
1862
- "output": 0.35
2682
+ "input": 0.17,
2683
+ "output": 0.66
1863
2684
  }
1864
2685
  },
1865
- "nvidia.nemotron-nano-3-30b": {
1866
- "id": "nvidia.nemotron-nano-3-30b",
1867
- "name": "NVIDIA Nemotron Nano 3 30B",
1868
- "family": "nemotron",
2686
+ "qwen.qwen3-235b-a22b-2507-v1:0": {
2687
+ "id": "qwen.qwen3-235b-a22b-2507-v1:0",
2688
+ "name": "Qwen3 235B A22B 2507",
2689
+ "family": "qwen",
1869
2690
  "attachment": false,
1870
- "reasoning": true,
2691
+ "reasoning": false,
1871
2692
  "tool_call": true,
1872
2693
  "structured_output": true,
1873
2694
  "temperature": true,
1874
- "release_date": "2025-12-23",
1875
- "last_updated": "2025-12-23",
2695
+ "knowledge": "2024-04",
2696
+ "release_date": "2025-09-18",
2697
+ "last_updated": "2025-09-18",
1876
2698
  "modalities": {
1877
2699
  "input": [
1878
2700
  "text"
@@ -1883,20 +2705,26 @@
1883
2705
  },
1884
2706
  "open_weights": true,
1885
2707
  "limit": {
1886
- "context": 128000,
1887
- "output": 4096
2708
+ "context": 262144,
2709
+ "output": 131072
1888
2710
  },
1889
2711
  "cost": {
1890
- "input": 0.06,
1891
- "output": 0.24
2712
+ "input": 0.22,
2713
+ "output": 0.88
1892
2714
  }
1893
2715
  },
1894
- "anthropic.claude-haiku-4-5-20251001-v1:0": {
1895
- "id": "anthropic.claude-haiku-4-5-20251001-v1:0",
1896
- "name": "Claude Haiku 4.5",
2716
+ "eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
2717
+ "id": "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
2718
+ "name": "Claude Haiku 4.5 (EU)",
1897
2719
  "family": "claude-haiku",
1898
2720
  "attachment": true,
1899
2721
  "reasoning": true,
2722
+ "reasoning_options": [
2723
+ {
2724
+ "type": "budget_tokens",
2725
+ "min": 1024
2726
+ }
2727
+ ],
1900
2728
  "tool_call": true,
1901
2729
  "structured_output": true,
1902
2730
  "temperature": true,
@@ -1919,26 +2747,36 @@
1919
2747
  "output": 64000
1920
2748
  },
1921
2749
  "cost": {
1922
- "input": 1,
1923
- "output": 5,
1924
- "cache_read": 0.1,
1925
- "cache_write": 1.25
2750
+ "input": 1.1,
2751
+ "output": 5.5,
2752
+ "cache_read": 0.11,
2753
+ "cache_write": 1.375
1926
2754
  }
1927
2755
  },
1928
- "google.gemma-3-4b-it": {
1929
- "id": "google.gemma-3-4b-it",
1930
- "name": "Gemma 3 4B IT",
1931
- "family": "gemma",
2756
+ "openai.gpt-oss-20b-1:0": {
2757
+ "id": "openai.gpt-oss-20b-1:0",
2758
+ "name": "gpt-oss-20b",
2759
+ "family": "gpt-oss",
1932
2760
  "attachment": false,
1933
- "reasoning": false,
2761
+ "reasoning": true,
2762
+ "reasoning_options": [
2763
+ {
2764
+ "type": "effort",
2765
+ "values": [
2766
+ "low",
2767
+ "medium",
2768
+ "high"
2769
+ ]
2770
+ }
2771
+ ],
1934
2772
  "tool_call": true,
2773
+ "structured_output": true,
1935
2774
  "temperature": true,
1936
- "release_date": "2024-12-01",
1937
- "last_updated": "2024-12-01",
2775
+ "release_date": "2025-08-05",
2776
+ "last_updated": "2025-08-05",
1938
2777
  "modalities": {
1939
2778
  "input": [
1940
- "text",
1941
- "image"
2779
+ "text"
1942
2780
  ],
1943
2781
  "output": [
1944
2782
  "text"
@@ -1947,24 +2785,35 @@
1947
2785
  "open_weights": false,
1948
2786
  "limit": {
1949
2787
  "context": 128000,
1950
- "output": 4096
2788
+ "output": 16384
1951
2789
  },
1952
2790
  "cost": {
1953
- "input": 0.04,
1954
- "output": 0.08
2791
+ "input": 0.07,
2792
+ "output": 0.3
1955
2793
  }
1956
2794
  },
1957
- "global.anthropic.claude-opus-4-7": {
1958
- "id": "global.anthropic.claude-opus-4-7",
1959
- "name": "Claude Opus 4.7 (Global)",
2795
+ "jp.anthropic.claude-opus-4-8": {
2796
+ "id": "jp.anthropic.claude-opus-4-8",
2797
+ "name": "Claude Opus 4.8 (JP)",
1960
2798
  "family": "claude-opus",
1961
2799
  "attachment": true,
1962
2800
  "reasoning": true,
2801
+ "reasoning_options": [
2802
+ {
2803
+ "type": "effort",
2804
+ "values": [
2805
+ "low",
2806
+ "medium",
2807
+ "high",
2808
+ "xhigh",
2809
+ "max"
2810
+ ]
2811
+ }
2812
+ ],
1963
2813
  "tool_call": true,
1964
2814
  "temperature": false,
1965
- "knowledge": "2026-01-31",
1966
- "release_date": "2026-04-16",
1967
- "last_updated": "2026-04-16",
2815
+ "release_date": "2026-05-28",
2816
+ "last_updated": "2026-05-28",
1968
2817
  "modalities": {
1969
2818
  "input": [
1970
2819
  "text",
@@ -1987,46 +2836,62 @@
1987
2836
  "cache_write": 6.25
1988
2837
  }
1989
2838
  },
1990
- "minimax.minimax-m2.5": {
1991
- "id": "minimax.minimax-m2.5",
1992
- "name": "MiniMax M2.5",
1993
- "family": "minimax",
1994
- "attachment": false,
2839
+ "anthropic.claude-opus-4-8": {
2840
+ "id": "anthropic.claude-opus-4-8",
2841
+ "name": "Claude Opus 4.8",
2842
+ "family": "claude-opus",
2843
+ "attachment": true,
1995
2844
  "reasoning": true,
2845
+ "reasoning_options": [
2846
+ {
2847
+ "type": "effort",
2848
+ "values": [
2849
+ "low",
2850
+ "medium",
2851
+ "high",
2852
+ "xhigh",
2853
+ "max"
2854
+ ]
2855
+ }
2856
+ ],
1996
2857
  "tool_call": true,
1997
- "structured_output": false,
1998
- "temperature": true,
1999
- "release_date": "2026-03-18",
2000
- "last_updated": "2026-03-18",
2858
+ "temperature": false,
2859
+ "release_date": "2026-05-28",
2860
+ "last_updated": "2026-05-28",
2001
2861
  "modalities": {
2002
2862
  "input": [
2003
- "text"
2863
+ "text",
2864
+ "image",
2865
+ "pdf"
2004
2866
  ],
2005
2867
  "output": [
2006
2868
  "text"
2007
2869
  ]
2008
2870
  },
2009
- "open_weights": true,
2871
+ "open_weights": false,
2010
2872
  "limit": {
2011
- "context": 196608,
2012
- "output": 98304
2873
+ "context": 1000000,
2874
+ "output": 128000
2013
2875
  },
2014
2876
  "cost": {
2015
- "input": 0.3,
2016
- "output": 1.2
2877
+ "input": 5,
2878
+ "output": 25,
2879
+ "cache_read": 0.5,
2880
+ "cache_write": 6.25
2017
2881
  }
2018
2882
  },
2019
- "openai.gpt-oss-safeguard-20b": {
2020
- "id": "openai.gpt-oss-safeguard-20b",
2021
- "name": "GPT OSS Safeguard 20B",
2022
- "family": "gpt-oss",
2883
+ "qwen.qwen3-coder-30b-a3b-v1:0": {
2884
+ "id": "qwen.qwen3-coder-30b-a3b-v1:0",
2885
+ "name": "Qwen3 Coder 30B A3B Instruct",
2886
+ "family": "qwen",
2023
2887
  "attachment": false,
2024
2888
  "reasoning": false,
2025
2889
  "tool_call": true,
2026
2890
  "structured_output": true,
2027
2891
  "temperature": true,
2028
- "release_date": "2025-10-29",
2029
- "last_updated": "2025-10-29",
2892
+ "knowledge": "2024-04",
2893
+ "release_date": "2025-09-18",
2894
+ "last_updated": "2025-09-18",
2030
2895
  "modalities": {
2031
2896
  "input": [
2032
2897
  "text"
@@ -2037,26 +2902,25 @@
2037
2902
  },
2038
2903
  "open_weights": false,
2039
2904
  "limit": {
2040
- "context": 128000,
2041
- "output": 16384
2905
+ "context": 262144,
2906
+ "output": 131072
2042
2907
  },
2043
2908
  "cost": {
2044
- "input": 0.07,
2045
- "output": 0.2
2909
+ "input": 0.15,
2910
+ "output": 0.6
2046
2911
  }
2047
2912
  },
2048
- "deepseek.v3.2": {
2049
- "id": "deepseek.v3.2",
2050
- "name": "DeepSeek-V3.2",
2051
- "family": "deepseek",
2913
+ "qwen.qwen3-next-80b-a3b": {
2914
+ "id": "qwen.qwen3-next-80b-a3b",
2915
+ "name": "Qwen/Qwen3-Next-80B-A3B-Instruct",
2916
+ "family": "qwen",
2052
2917
  "attachment": false,
2053
- "reasoning": true,
2918
+ "reasoning": false,
2054
2919
  "tool_call": true,
2055
2920
  "structured_output": true,
2056
2921
  "temperature": true,
2057
- "knowledge": "2024-07",
2058
- "release_date": "2026-02-06",
2059
- "last_updated": "2026-02-06",
2922
+ "release_date": "2025-09-18",
2923
+ "last_updated": "2025-11-25",
2060
2924
  "modalities": {
2061
2925
  "input": [
2062
2926
  "text"
@@ -2065,28 +2929,40 @@
2065
2929
  "text"
2066
2930
  ]
2067
2931
  },
2068
- "open_weights": true,
2932
+ "open_weights": false,
2069
2933
  "limit": {
2070
- "context": 163840,
2071
- "output": 81920
2934
+ "context": 262000,
2935
+ "output": 262000
2072
2936
  },
2073
2937
  "cost": {
2074
- "input": 0.62,
2075
- "output": 1.85
2938
+ "input": 0.14,
2939
+ "output": 1.4
2076
2940
  }
2077
2941
  },
2078
- "global.anthropic.claude-opus-4-6-v1": {
2079
- "id": "global.anthropic.claude-opus-4-6-v1",
2080
- "name": "Claude Opus 4.6 (Global)",
2081
- "family": "claude-opus",
2942
+ "openai.gpt-5.5": {
2943
+ "id": "openai.gpt-5.5",
2944
+ "name": "GPT-5.5",
2945
+ "family": "gpt",
2082
2946
  "attachment": true,
2083
2947
  "reasoning": true,
2948
+ "reasoning_options": [
2949
+ {
2950
+ "type": "effort",
2951
+ "values": [
2952
+ "none",
2953
+ "low",
2954
+ "medium",
2955
+ "high",
2956
+ "xhigh"
2957
+ ]
2958
+ }
2959
+ ],
2084
2960
  "tool_call": true,
2085
2961
  "structured_output": true,
2086
- "temperature": true,
2087
- "knowledge": "2025-05-31",
2088
- "release_date": "2026-02-05",
2089
- "last_updated": "2026-03-13",
2962
+ "temperature": false,
2963
+ "knowledge": "2025-12-01",
2964
+ "release_date": "2026-04-23",
2965
+ "last_updated": "2026-06-01",
2090
2966
  "modalities": {
2091
2967
  "input": [
2092
2968
  "text",
@@ -2099,28 +2975,47 @@
2099
2975
  },
2100
2976
  "open_weights": false,
2101
2977
  "limit": {
2102
- "context": 1000000,
2978
+ "context": 272000,
2103
2979
  "output": 128000
2104
2980
  },
2981
+ "provider": {
2982
+ "npm": "@ai-sdk/amazon-bedrock/mantle",
2983
+ "api": "https://bedrock-mantle.${AWS_REGION}.api.aws/openai/v1",
2984
+ "shape": "responses"
2985
+ },
2105
2986
  "cost": {
2106
- "input": 5,
2107
- "output": 25,
2108
- "cache_read": 0.5,
2109
- "cache_write": 6.25
2987
+ "input": 5.5,
2988
+ "output": 33,
2989
+ "cache_read": 0.55
2110
2990
  }
2111
2991
  },
2112
- "anthropic.claude-sonnet-4-6": {
2113
- "id": "anthropic.claude-sonnet-4-6",
2114
- "name": "Claude Sonnet 4.6",
2992
+ "au.anthropic.claude-sonnet-4-6": {
2993
+ "id": "au.anthropic.claude-sonnet-4-6",
2994
+ "name": "AU Anthropic Claude Sonnet 4.6",
2115
2995
  "family": "claude-sonnet",
2116
2996
  "attachment": true,
2117
2997
  "reasoning": true,
2998
+ "reasoning_options": [
2999
+ {
3000
+ "type": "effort",
3001
+ "values": [
3002
+ "low",
3003
+ "medium",
3004
+ "high",
3005
+ "max"
3006
+ ]
3007
+ },
3008
+ {
3009
+ "type": "budget_tokens",
3010
+ "min": 1024
3011
+ }
3012
+ ],
2118
3013
  "tool_call": true,
2119
3014
  "structured_output": true,
2120
3015
  "temperature": true,
2121
- "knowledge": "2025-08-31",
3016
+ "knowledge": "2025-08",
2122
3017
  "release_date": "2026-02-17",
2123
- "last_updated": "2026-03-13",
3018
+ "last_updated": "2026-02-17",
2124
3019
  "modalities": {
2125
3020
  "input": [
2126
3021
  "text",
@@ -2134,27 +3029,41 @@
2134
3029
  "open_weights": false,
2135
3030
  "limit": {
2136
3031
  "context": 1000000,
2137
- "output": 64000
3032
+ "output": 128000
2138
3033
  },
2139
3034
  "cost": {
2140
- "input": 3,
2141
- "output": 15,
2142
- "cache_read": 0.3,
2143
- "cache_write": 3.75
3035
+ "input": 3.3,
3036
+ "output": 16.5,
3037
+ "cache_read": 0.33,
3038
+ "cache_write": 4.125
2144
3039
  }
2145
3040
  },
2146
- "global.anthropic.claude-sonnet-4-6": {
2147
- "id": "global.anthropic.claude-sonnet-4-6",
2148
- "name": "Claude Sonnet 4.6 (Global)",
2149
- "family": "claude-sonnet",
3041
+ "us.anthropic.claude-opus-4-5-20251101-v1:0": {
3042
+ "id": "us.anthropic.claude-opus-4-5-20251101-v1:0",
3043
+ "name": "Claude Opus 4.5 (US)",
3044
+ "family": "claude-opus",
2150
3045
  "attachment": true,
2151
3046
  "reasoning": true,
3047
+ "reasoning_options": [
3048
+ {
3049
+ "type": "effort",
3050
+ "values": [
3051
+ "low",
3052
+ "medium",
3053
+ "high"
3054
+ ]
3055
+ },
3056
+ {
3057
+ "type": "budget_tokens",
3058
+ "min": 1024
3059
+ }
3060
+ ],
2152
3061
  "tool_call": true,
2153
3062
  "structured_output": true,
2154
3063
  "temperature": true,
2155
- "knowledge": "2025-08-31",
2156
- "release_date": "2026-02-17",
2157
- "last_updated": "2026-03-13",
3064
+ "knowledge": "2025-03-31",
3065
+ "release_date": "2025-11-24",
3066
+ "last_updated": "2025-08-01",
2158
3067
  "modalities": {
2159
3068
  "input": [
2160
3069
  "text",
@@ -2167,31 +3076,31 @@
2167
3076
  },
2168
3077
  "open_weights": false,
2169
3078
  "limit": {
2170
- "context": 1000000,
3079
+ "context": 200000,
2171
3080
  "output": 64000
2172
3081
  },
2173
3082
  "cost": {
2174
- "input": 3,
2175
- "output": 15,
2176
- "cache_read": 0.3,
2177
- "cache_write": 3.75
3083
+ "input": 5,
3084
+ "output": 25,
3085
+ "cache_read": 0.5,
3086
+ "cache_write": 6.25
2178
3087
  }
2179
3088
  },
2180
- "us.meta.llama4-maverick-17b-instruct-v1:0": {
2181
- "id": "us.meta.llama4-maverick-17b-instruct-v1:0",
2182
- "name": "Llama 4 Maverick 17B Instruct (US)",
2183
- "family": "llama",
2184
- "attachment": true,
2185
- "reasoning": false,
3089
+ "minimax.minimax-m2.5": {
3090
+ "id": "minimax.minimax-m2.5",
3091
+ "name": "MiniMax M2.5",
3092
+ "family": "minimax",
3093
+ "attachment": false,
3094
+ "reasoning": true,
3095
+ "reasoning_options": [],
2186
3096
  "tool_call": true,
3097
+ "structured_output": false,
2187
3098
  "temperature": true,
2188
- "knowledge": "2024-08",
2189
- "release_date": "2025-04-05",
2190
- "last_updated": "2025-04-05",
3099
+ "release_date": "2026-03-18",
3100
+ "last_updated": "2026-03-18",
2191
3101
  "modalities": {
2192
3102
  "input": [
2193
- "text",
2194
- "image"
3103
+ "text"
2195
3104
  ],
2196
3105
  "output": [
2197
3106
  "text"
@@ -2199,28 +3108,41 @@
2199
3108
  },
2200
3109
  "open_weights": true,
2201
3110
  "limit": {
2202
- "context": 1000000,
2203
- "output": 16384
3111
+ "context": 196608,
3112
+ "output": 98304
2204
3113
  },
2205
3114
  "cost": {
2206
- "input": 0.24,
2207
- "output": 0.97
3115
+ "input": 0.3,
3116
+ "output": 1.2
2208
3117
  }
2209
3118
  },
2210
- "us.deepseek.r1-v1:0": {
2211
- "id": "us.deepseek.r1-v1:0",
2212
- "name": "DeepSeek-R1 (US)",
2213
- "family": "deepseek-thinking",
2214
- "attachment": false,
3119
+ "eu.anthropic.claude-opus-4-8": {
3120
+ "id": "eu.anthropic.claude-opus-4-8",
3121
+ "name": "Claude Opus 4.8 (EU)",
3122
+ "family": "claude-opus",
3123
+ "attachment": true,
2215
3124
  "reasoning": true,
3125
+ "reasoning_options": [
3126
+ {
3127
+ "type": "effort",
3128
+ "values": [
3129
+ "low",
3130
+ "medium",
3131
+ "high",
3132
+ "xhigh",
3133
+ "max"
3134
+ ]
3135
+ }
3136
+ ],
2216
3137
  "tool_call": true,
2217
- "temperature": true,
2218
- "knowledge": "2024-07",
2219
- "release_date": "2025-01-20",
2220
- "last_updated": "2025-05-29",
3138
+ "temperature": false,
3139
+ "release_date": "2026-05-28",
3140
+ "last_updated": "2026-05-28",
2221
3141
  "modalities": {
2222
3142
  "input": [
2223
- "text"
3143
+ "text",
3144
+ "image",
3145
+ "pdf"
2224
3146
  ],
2225
3147
  "output": [
2226
3148
  "text"
@@ -2228,26 +3150,39 @@
2228
3150
  },
2229
3151
  "open_weights": false,
2230
3152
  "limit": {
2231
- "context": 128000,
2232
- "output": 32768
3153
+ "context": 1000000,
3154
+ "output": 128000
2233
3155
  },
2234
3156
  "cost": {
2235
- "input": 1.35,
2236
- "output": 5.4
3157
+ "input": 5.5,
3158
+ "output": 27.5,
3159
+ "cache_read": 0.55,
3160
+ "cache_write": 6.875
2237
3161
  }
2238
3162
  },
2239
- "au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
2240
- "id": "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
2241
- "name": "Claude Sonnet 4.5 (AU)",
2242
- "family": "claude-sonnet",
3163
+ "eu.anthropic.claude-opus-4-7": {
3164
+ "id": "eu.anthropic.claude-opus-4-7",
3165
+ "name": "Claude Opus 4.7 (EU)",
3166
+ "family": "claude-opus",
2243
3167
  "attachment": true,
2244
3168
  "reasoning": true,
3169
+ "reasoning_options": [
3170
+ {
3171
+ "type": "effort",
3172
+ "values": [
3173
+ "low",
3174
+ "medium",
3175
+ "high",
3176
+ "xhigh",
3177
+ "max"
3178
+ ]
3179
+ }
3180
+ ],
2245
3181
  "tool_call": true,
2246
- "structured_output": true,
2247
- "temperature": true,
2248
- "knowledge": "2025-07-31",
2249
- "release_date": "2025-09-29",
2250
- "last_updated": "2025-09-29",
3182
+ "temperature": false,
3183
+ "knowledge": "2026-01-31",
3184
+ "release_date": "2026-04-16",
3185
+ "last_updated": "2026-04-16",
2251
3186
  "modalities": {
2252
3187
  "input": [
2253
3188
  "text",
@@ -2260,14 +3195,43 @@
2260
3195
  },
2261
3196
  "open_weights": false,
2262
3197
  "limit": {
2263
- "context": 200000,
2264
- "output": 64000
3198
+ "context": 1000000,
3199
+ "output": 128000
2265
3200
  },
2266
3201
  "cost": {
2267
- "input": 3,
2268
- "output": 15,
2269
- "cache_read": 0.3,
2270
- "cache_write": 3.75
3202
+ "input": 5.5,
3203
+ "output": 27.5,
3204
+ "cache_read": 0.55,
3205
+ "cache_write": 6.875
3206
+ }
3207
+ },
3208
+ "meta.llama3-1-8b-instruct-v1:0": {
3209
+ "id": "meta.llama3-1-8b-instruct-v1:0",
3210
+ "name": "Llama 3.1 8B Instruct",
3211
+ "family": "llama",
3212
+ "attachment": false,
3213
+ "reasoning": false,
3214
+ "tool_call": true,
3215
+ "temperature": true,
3216
+ "knowledge": "2023-12",
3217
+ "release_date": "2024-07-23",
3218
+ "last_updated": "2024-07-23",
3219
+ "modalities": {
3220
+ "input": [
3221
+ "text"
3222
+ ],
3223
+ "output": [
3224
+ "text"
3225
+ ]
3226
+ },
3227
+ "open_weights": true,
3228
+ "limit": {
3229
+ "context": 128000,
3230
+ "output": 4096
3231
+ },
3232
+ "cost": {
3233
+ "input": 0.22,
3234
+ "output": 0.22
2271
3235
  }
2272
3236
  },
2273
3237
  "us.anthropic.claude-opus-4-1-20250805-v1:0": {
@@ -2276,6 +3240,12 @@
2276
3240
  "family": "claude-opus",
2277
3241
  "attachment": true,
2278
3242
  "reasoning": true,
3243
+ "reasoning_options": [
3244
+ {
3245
+ "type": "budget_tokens",
3246
+ "min": 1024
3247
+ }
3248
+ ],
2279
3249
  "tool_call": true,
2280
3250
  "temperature": true,
2281
3251
  "knowledge": "2025-03-31",
@@ -2303,17 +3273,62 @@
2303
3273
  "cache_write": 18.75
2304
3274
  }
2305
3275
  },
2306
- "anthropic.claude-opus-4-1-20250805-v1:0": {
2307
- "id": "anthropic.claude-opus-4-1-20250805-v1:0",
2308
- "name": "Claude Opus 4.1",
3276
+ "meta.llama4-maverick-17b-instruct-v1:0": {
3277
+ "id": "meta.llama4-maverick-17b-instruct-v1:0",
3278
+ "name": "Llama 4 Maverick 17B Instruct",
3279
+ "family": "llama",
3280
+ "attachment": true,
3281
+ "reasoning": false,
3282
+ "tool_call": true,
3283
+ "temperature": true,
3284
+ "knowledge": "2024-08",
3285
+ "release_date": "2025-04-05",
3286
+ "last_updated": "2025-04-05",
3287
+ "modalities": {
3288
+ "input": [
3289
+ "text",
3290
+ "image"
3291
+ ],
3292
+ "output": [
3293
+ "text"
3294
+ ]
3295
+ },
3296
+ "open_weights": true,
3297
+ "limit": {
3298
+ "context": 1000000,
3299
+ "output": 16384
3300
+ },
3301
+ "cost": {
3302
+ "input": 0.24,
3303
+ "output": 0.97
3304
+ }
3305
+ },
3306
+ "global.anthropic.claude-opus-4-5-20251101-v1:0": {
3307
+ "id": "global.anthropic.claude-opus-4-5-20251101-v1:0",
3308
+ "name": "Claude Opus 4.5 (Global)",
2309
3309
  "family": "claude-opus",
2310
3310
  "attachment": true,
2311
3311
  "reasoning": true,
3312
+ "reasoning_options": [
3313
+ {
3314
+ "type": "effort",
3315
+ "values": [
3316
+ "low",
3317
+ "medium",
3318
+ "high"
3319
+ ]
3320
+ },
3321
+ {
3322
+ "type": "budget_tokens",
3323
+ "min": 1024
3324
+ }
3325
+ ],
2312
3326
  "tool_call": true,
3327
+ "structured_output": true,
2313
3328
  "temperature": true,
2314
3329
  "knowledge": "2025-03-31",
2315
- "release_date": "2025-08-05",
2316
- "last_updated": "2025-08-05",
3330
+ "release_date": "2025-11-24",
3331
+ "last_updated": "2025-08-01",
2317
3332
  "modalities": {
2318
3333
  "input": [
2319
3334
  "text",
@@ -2327,95 +3342,101 @@
2327
3342
  "open_weights": false,
2328
3343
  "limit": {
2329
3344
  "context": 200000,
2330
- "output": 32000
3345
+ "output": 64000
2331
3346
  },
2332
3347
  "cost": {
2333
- "input": 15,
2334
- "output": 75,
2335
- "cache_read": 1.5,
2336
- "cache_write": 18.75
2337
- }
2338
- },
2339
- "us.anthropic.claude-sonnet-4-6": {
2340
- "id": "us.anthropic.claude-sonnet-4-6",
2341
- "name": "Claude Sonnet 4.6 (US)",
2342
- "family": "claude-sonnet",
2343
- "attachment": true,
3348
+ "input": 5,
3349
+ "output": 25,
3350
+ "cache_read": 0.5,
3351
+ "cache_write": 6.25
3352
+ }
3353
+ },
3354
+ "nvidia.nemotron-super-3-120b": {
3355
+ "id": "nvidia.nemotron-super-3-120b",
3356
+ "name": "NVIDIA Nemotron 3 Super 120B A12B",
3357
+ "family": "nemotron",
3358
+ "attachment": false,
2344
3359
  "reasoning": true,
3360
+ "reasoning_options": [],
2345
3361
  "tool_call": true,
2346
3362
  "structured_output": true,
2347
3363
  "temperature": true,
2348
- "knowledge": "2025-08-31",
2349
- "release_date": "2026-02-17",
2350
- "last_updated": "2026-03-13",
3364
+ "release_date": "2026-03-11",
3365
+ "last_updated": "2026-03-11",
2351
3366
  "modalities": {
2352
3367
  "input": [
2353
- "text",
2354
- "image",
2355
- "pdf"
3368
+ "text"
2356
3369
  ],
2357
3370
  "output": [
2358
3371
  "text"
2359
3372
  ]
2360
3373
  },
2361
- "open_weights": false,
3374
+ "open_weights": true,
2362
3375
  "limit": {
2363
- "context": 1000000,
2364
- "output": 64000
3376
+ "context": 262144,
3377
+ "output": 131072
2365
3378
  },
2366
3379
  "cost": {
2367
- "input": 3,
2368
- "output": 15,
2369
- "cache_read": 0.3,
2370
- "cache_write": 3.75
3380
+ "input": 0.15,
3381
+ "output": 0.65
2371
3382
  }
2372
3383
  },
2373
- "anthropic.claude-opus-4-6-v1": {
2374
- "id": "anthropic.claude-opus-4-6-v1",
2375
- "name": "Claude Opus 4.6",
2376
- "family": "claude-opus",
2377
- "attachment": true,
3384
+ "nvidia.nemotron-nano-3-30b": {
3385
+ "id": "nvidia.nemotron-nano-3-30b",
3386
+ "name": "NVIDIA Nemotron Nano 3 30B",
3387
+ "family": "nemotron",
3388
+ "attachment": false,
2378
3389
  "reasoning": true,
3390
+ "reasoning_options": [],
2379
3391
  "tool_call": true,
2380
3392
  "structured_output": true,
2381
3393
  "temperature": true,
2382
- "knowledge": "2025-05-31",
2383
- "release_date": "2026-02-05",
2384
- "last_updated": "2026-03-13",
3394
+ "release_date": "2025-12-23",
3395
+ "last_updated": "2025-12-23",
2385
3396
  "modalities": {
2386
3397
  "input": [
2387
- "text",
2388
- "image",
2389
- "pdf"
3398
+ "text"
2390
3399
  ],
2391
3400
  "output": [
2392
3401
  "text"
2393
3402
  ]
2394
3403
  },
2395
- "open_weights": false,
3404
+ "open_weights": true,
2396
3405
  "limit": {
2397
- "context": 1000000,
2398
- "output": 128000
3406
+ "context": 128000,
3407
+ "output": 4096
2399
3408
  },
2400
3409
  "cost": {
2401
- "input": 5,
2402
- "output": 25,
2403
- "cache_read": 0.5,
2404
- "cache_write": 6.25
3410
+ "input": 0.06,
3411
+ "output": 0.24
2405
3412
  }
2406
3413
  },
2407
- "eu.anthropic.claude-sonnet-4-6": {
2408
- "id": "eu.anthropic.claude-sonnet-4-6",
2409
- "name": "Claude Sonnet 4.6 (EU)",
2410
- "family": "claude-sonnet",
3414
+ "eu.anthropic.claude-opus-4-5-20251101-v1:0": {
3415
+ "id": "eu.anthropic.claude-opus-4-5-20251101-v1:0",
3416
+ "name": "Claude Opus 4.5 (EU)",
3417
+ "family": "claude-opus",
2411
3418
  "attachment": true,
2412
3419
  "reasoning": true,
3420
+ "reasoning_options": [
3421
+ {
3422
+ "type": "effort",
3423
+ "values": [
3424
+ "low",
3425
+ "medium",
3426
+ "high"
3427
+ ]
3428
+ },
3429
+ {
3430
+ "type": "budget_tokens",
3431
+ "min": 1024
3432
+ }
3433
+ ],
2413
3434
  "tool_call": true,
2414
3435
  "structured_output": true,
2415
3436
  "temperature": true,
2416
- "knowledge": "2025-08-31",
2417
- "release_date": "2026-02-17",
2418
- "last_updated": "2026-03-13",
3437
+ "knowledge": "2025-03-31",
3438
+ "release_date": "2025-11-24",
3439
+ "last_updated": "2025-08-01",
2419
3440
  "modalities": {
2420
3441
  "input": [
2421
3442
  "text",
@@ -2428,22 +3449,37 @@
2428
3449
  },
2429
3450
  "open_weights": false,
2430
3451
  "limit": {
2431
- "context": 1000000,
3452
+ "context": 200000,
2432
3453
  "output": 64000
2433
3454
  },
2434
3455
  "cost": {
2435
- "input": 3,
2436
- "output": 15,
2437
- "cache_read": 0.3,
2438
- "cache_write": 3.75
3456
+ "input": 5.5,
3457
+ "output": 27.5,
3458
+ "cache_read": 0.55,
3459
+ "cache_write": 6.875
2439
3460
  }
2440
3461
  },
2441
- "eu.anthropic.claude-opus-4-6-v1": {
2442
- "id": "eu.anthropic.claude-opus-4-6-v1",
2443
- "name": "Claude Opus 4.6 (EU)",
3462
+ "global.anthropic.claude-opus-4-6-v1": {
3463
+ "id": "global.anthropic.claude-opus-4-6-v1",
3464
+ "name": "Claude Opus 4.6 (Global)",
2444
3465
  "family": "claude-opus",
2445
3466
  "attachment": true,
2446
3467
  "reasoning": true,
3468
+ "reasoning_options": [
3469
+ {
3470
+ "type": "effort",
3471
+ "values": [
3472
+ "low",
3473
+ "medium",
3474
+ "high",
3475
+ "max"
3476
+ ]
3477
+ },
3478
+ {
3479
+ "type": "budget_tokens",
3480
+ "min": 1024
3481
+ }
3482
+ ],
2447
3483
  "tool_call": true,
2448
3484
  "structured_output": true,
2449
3485
  "temperature": true,
@@ -2472,18 +3508,24 @@
2472
3508
  "cache_write": 6.25
2473
3509
  }
2474
3510
  },
2475
- "au.anthropic.claude-haiku-4-5-20251001-v1:0": {
2476
- "id": "au.anthropic.claude-haiku-4-5-20251001-v1:0",
2477
- "name": "Claude Haiku 4.5 (AU)",
2478
- "family": "claude-haiku",
3511
+ "us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
3512
+ "id": "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
3513
+ "name": "Claude Sonnet 4.5 (US)",
3514
+ "family": "claude-sonnet",
2479
3515
  "attachment": true,
2480
3516
  "reasoning": true,
3517
+ "reasoning_options": [
3518
+ {
3519
+ "type": "budget_tokens",
3520
+ "min": 1024
3521
+ }
3522
+ ],
2481
3523
  "tool_call": true,
2482
3524
  "structured_output": true,
2483
3525
  "temperature": true,
2484
- "knowledge": "2025-02-28",
2485
- "release_date": "2025-10-15",
2486
- "last_updated": "2025-10-15",
3526
+ "knowledge": "2025-07-31",
3527
+ "release_date": "2025-09-29",
3528
+ "last_updated": "2025-09-29",
2487
3529
  "modalities": {
2488
3530
  "input": [
2489
3531
  "text",
@@ -2500,29 +3542,28 @@
2500
3542
  "output": 64000
2501
3543
  },
2502
3544
  "cost": {
2503
- "input": 1,
2504
- "output": 5,
2505
- "cache_read": 0.1,
2506
- "cache_write": 1.25
3545
+ "input": 3,
3546
+ "output": 15,
3547
+ "cache_read": 0.3,
3548
+ "cache_write": 3.75
2507
3549
  }
2508
3550
  },
2509
- "jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
2510
- "id": "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
2511
- "name": "Claude Sonnet 4.5 (JP)",
2512
- "family": "claude-sonnet",
2513
- "attachment": true,
2514
- "reasoning": true,
2515
- "tool_call": true,
3551
+ "google.gemma-3-12b-it": {
3552
+ "id": "google.gemma-3-12b-it",
3553
+ "name": "Google Gemma 3 12B",
3554
+ "family": "gemma",
3555
+ "attachment": false,
3556
+ "reasoning": false,
3557
+ "tool_call": false,
2516
3558
  "structured_output": true,
2517
3559
  "temperature": true,
2518
- "knowledge": "2025-07-31",
2519
- "release_date": "2025-09-29",
2520
- "last_updated": "2025-09-29",
3560
+ "knowledge": "2024-12",
3561
+ "release_date": "2024-12-01",
3562
+ "last_updated": "2024-12-01",
2521
3563
  "modalities": {
2522
3564
  "input": [
2523
3565
  "text",
2524
- "image",
2525
- "pdf"
3566
+ "image"
2526
3567
  ],
2527
3568
  "output": [
2528
3569
  "text"
@@ -2530,67 +3571,71 @@
2530
3571
  },
2531
3572
  "open_weights": false,
2532
3573
  "limit": {
2533
- "context": 200000,
2534
- "output": 64000
3574
+ "context": 131072,
3575
+ "output": 8192
2535
3576
  },
2536
3577
  "cost": {
2537
- "input": 3,
2538
- "output": 15,
2539
- "cache_read": 0.3,
2540
- "cache_write": 3.75
3578
+ "input": 0.049999999999999996,
3579
+ "output": 0.09999999999999999
2541
3580
  }
2542
3581
  },
2543
- "jp.anthropic.claude-sonnet-4-6": {
2544
- "id": "jp.anthropic.claude-sonnet-4-6",
2545
- "name": "Claude Sonnet 4.6 (JP)",
2546
- "family": "claude-sonnet",
2547
- "attachment": true,
3582
+ "minimax.minimax-m2.1": {
3583
+ "id": "minimax.minimax-m2.1",
3584
+ "name": "MiniMax M2.1",
3585
+ "family": "minimax",
3586
+ "attachment": false,
2548
3587
  "reasoning": true,
3588
+ "reasoning_options": [],
2549
3589
  "tool_call": true,
2550
- "structured_output": true,
3590
+ "structured_output": false,
2551
3591
  "temperature": true,
2552
- "knowledge": "2025-08-31",
2553
- "release_date": "2026-02-17",
2554
- "last_updated": "2026-03-13",
3592
+ "release_date": "2025-12-23",
3593
+ "last_updated": "2025-12-23",
2555
3594
  "modalities": {
2556
3595
  "input": [
2557
- "text",
2558
- "image",
2559
- "pdf"
3596
+ "text"
2560
3597
  ],
2561
3598
  "output": [
2562
3599
  "text"
2563
3600
  ]
2564
3601
  },
2565
- "open_weights": false,
3602
+ "open_weights": true,
2566
3603
  "limit": {
2567
- "context": 1000000,
2568
- "output": 64000
3604
+ "context": 204800,
3605
+ "output": 131072
2569
3606
  },
2570
3607
  "cost": {
2571
- "input": 3,
2572
- "output": 15,
2573
- "cache_read": 0.3,
2574
- "cache_write": 3.75
3608
+ "input": 0.3,
3609
+ "output": 1.2
2575
3610
  }
2576
3611
  },
2577
- "us.anthropic.claude-opus-4-6-v1": {
2578
- "id": "us.anthropic.claude-opus-4-6-v1",
2579
- "name": "Claude Opus 4.6 (US)",
2580
- "family": "claude-opus",
3612
+ "eu.anthropic.claude-fable-5": {
3613
+ "id": "eu.anthropic.claude-fable-5",
3614
+ "name": "Claude Fable 5 (EU)",
3615
+ "family": "claude-fable",
2581
3616
  "attachment": true,
2582
3617
  "reasoning": true,
3618
+ "reasoning_options": [
3619
+ {
3620
+ "type": "effort",
3621
+ "values": [
3622
+ "low",
3623
+ "medium",
3624
+ "high",
3625
+ "xhigh",
3626
+ "max"
3627
+ ]
3628
+ }
3629
+ ],
2583
3630
  "tool_call": true,
2584
- "structured_output": true,
2585
- "temperature": true,
2586
- "knowledge": "2025-05-31",
2587
- "release_date": "2026-02-05",
2588
- "last_updated": "2026-03-13",
3631
+ "temperature": false,
3632
+ "knowledge": "2026-01-31",
3633
+ "release_date": "2026-06-09",
3634
+ "last_updated": "2026-06-09",
2589
3635
  "modalities": {
2590
3636
  "input": [
2591
3637
  "text",
2592
- "image",
2593
- "pdf"
3638
+ "image"
2594
3639
  ],
2595
3640
  "output": [
2596
3641
  "text"
@@ -2602,27 +3647,28 @@
2602
3647
  "output": 128000
2603
3648
  },
2604
3649
  "cost": {
2605
- "input": 5,
2606
- "output": 25,
2607
- "cache_read": 0.5,
2608
- "cache_write": 6.25
3650
+ "input": 11,
3651
+ "output": 55,
3652
+ "cache_read": 1.1,
3653
+ "cache_write": 13.75
2609
3654
  }
2610
3655
  },
2611
- "us.meta.llama4-scout-17b-instruct-v1:0": {
2612
- "id": "us.meta.llama4-scout-17b-instruct-v1:0",
2613
- "name": "Llama 4 Scout 17B Instruct (US)",
2614
- "family": "llama",
2615
- "attachment": true,
2616
- "reasoning": false,
3656
+ "deepseek.v3.2": {
3657
+ "id": "deepseek.v3.2",
3658
+ "name": "DeepSeek-V3.2",
3659
+ "family": "deepseek",
3660
+ "attachment": false,
3661
+ "reasoning": true,
3662
+ "reasoning_options": [],
2617
3663
  "tool_call": true,
3664
+ "structured_output": true,
2618
3665
  "temperature": true,
2619
- "knowledge": "2024-08",
2620
- "release_date": "2025-04-05",
2621
- "last_updated": "2025-04-05",
3666
+ "knowledge": "2024-07",
3667
+ "release_date": "2026-02-06",
3668
+ "last_updated": "2026-02-06",
2622
3669
  "modalities": {
2623
3670
  "input": [
2624
- "text",
2625
- "image"
3671
+ "text"
2626
3672
  ],
2627
3673
  "output": [
2628
3674
  "text"
@@ -2630,30 +3676,28 @@
2630
3676
  },
2631
3677
  "open_weights": true,
2632
3678
  "limit": {
2633
- "context": 3500000,
2634
- "output": 16384
3679
+ "context": 163840,
3680
+ "output": 81920
2635
3681
  },
2636
3682
  "cost": {
2637
- "input": 0.17,
2638
- "output": 0.66
3683
+ "input": 0.62,
3684
+ "output": 1.85
2639
3685
  }
2640
3686
  },
2641
- "jp.anthropic.claude-opus-4-7": {
2642
- "id": "jp.anthropic.claude-opus-4-7",
2643
- "name": "Claude Opus 4.7 (JP)",
2644
- "family": "claude-opus",
2645
- "attachment": true,
2646
- "reasoning": true,
3687
+ "mistral.ministral-3-14b-instruct": {
3688
+ "id": "mistral.ministral-3-14b-instruct",
3689
+ "name": "Ministral 14B 3.0",
3690
+ "family": "ministral",
3691
+ "attachment": false,
3692
+ "reasoning": false,
2647
3693
  "tool_call": true,
2648
- "temperature": false,
2649
- "knowledge": "2026-01-31",
2650
- "release_date": "2026-04-16",
2651
- "last_updated": "2026-04-16",
3694
+ "structured_output": true,
3695
+ "temperature": true,
3696
+ "release_date": "2024-12-01",
3697
+ "last_updated": "2024-12-01",
2652
3698
  "modalities": {
2653
3699
  "input": [
2654
- "text",
2655
- "image",
2656
- "pdf"
3700
+ "text"
2657
3701
  ],
2658
3702
  "output": [
2659
3703
  "text"
@@ -2661,14 +3705,12 @@
2661
3705
  },
2662
3706
  "open_weights": false,
2663
3707
  "limit": {
2664
- "context": 1000000,
2665
- "output": 128000
3708
+ "context": 128000,
3709
+ "output": 4096
2666
3710
  },
2667
3711
  "cost": {
2668
- "input": 5,
2669
- "output": 25,
2670
- "cache_read": 0.5,
2671
- "cache_write": 6.25
3712
+ "input": 0.2,
3713
+ "output": 0.2
2672
3714
  }
2673
3715
  }
2674
3716
  }