llm.rb 12.0.0 → 12.2.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 (45) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +193 -1
  3. data/LICENSE +5 -4
  4. data/README.md +56 -18
  5. data/data/anthropic.json +85 -372
  6. data/data/bedrock.json +498 -3
  7. data/data/deepinfra.json +567 -47
  8. data/data/deepseek.json +4 -0
  9. data/data/google.json +54 -0
  10. data/data/mistral.json +968 -0
  11. data/data/openai.json +51 -0
  12. data/data/xai.json +67 -0
  13. data/data/zai.json +14 -0
  14. data/lib/llm/agent.rb +41 -1
  15. data/lib/llm/context.rb +9 -1
  16. data/lib/llm/function.rb +6 -0
  17. data/lib/llm/json_adapter.rb +29 -3
  18. data/lib/llm/provider.rb +3 -3
  19. data/lib/llm/providers/anthropic.rb +2 -2
  20. data/lib/llm/providers/google.rb +3 -1
  21. data/lib/llm/providers/llamacpp.rb +5 -5
  22. data/lib/llm/providers/mistral/request_adapter/completion.rb +122 -0
  23. data/lib/llm/providers/mistral/request_adapter.rb +20 -0
  24. data/lib/llm/providers/mistral.rb +96 -0
  25. data/lib/llm/repl/input.rb +64 -0
  26. data/lib/llm/repl/status.rb +30 -0
  27. data/lib/llm/repl/stream.rb +46 -0
  28. data/lib/llm/repl/transcript.rb +61 -0
  29. data/lib/llm/repl/window.rb +107 -0
  30. data/lib/llm/repl.rb +78 -0
  31. data/lib/llm/tools/chdir.rb +23 -0
  32. data/lib/llm/tools/git.rb +41 -0
  33. data/lib/llm/tools/mkdir.rb +32 -0
  34. data/lib/llm/tools/pwd.rb +20 -0
  35. data/lib/llm/tools/read_file.rb +40 -0
  36. data/lib/llm/tools/rg.rb +46 -0
  37. data/lib/llm/tools/shell.rb +48 -0
  38. data/lib/llm/tools/swap_text.rb +25 -0
  39. data/lib/llm/tools/write_file.rb +24 -0
  40. data/lib/llm/tools.rb +5 -0
  41. data/lib/llm/version.rb +1 -1
  42. data/lib/llm.rb +9 -0
  43. data/llm.gemspec +1 -1
  44. data/resources/deepdive.md +32 -0
  45. metadata +22 -2
data/data/bedrock.json CHANGED
@@ -13,6 +13,7 @@
13
13
  "global.anthropic.claude-haiku-4-5-20251001-v1:0": {
14
14
  "id": "global.anthropic.claude-haiku-4-5-20251001-v1:0",
15
15
  "name": "Claude Haiku 4.5 (Global)",
16
+ "description": "Fast Claude model for responsive assistance, classification, and lightweight agents",
16
17
  "family": "claude-haiku",
17
18
  "attachment": true,
18
19
  "reasoning": true,
@@ -53,6 +54,7 @@
53
54
  "global.anthropic.claude-sonnet-4-5-20250929-v1:0": {
54
55
  "id": "global.anthropic.claude-sonnet-4-5-20250929-v1:0",
55
56
  "name": "Claude Sonnet 4.5 (Global)",
57
+ "description": "Balanced Claude model for coding, analysis, agent workflows, and cost control",
56
58
  "family": "claude-sonnet",
57
59
  "attachment": true,
58
60
  "reasoning": true,
@@ -90,9 +92,51 @@
90
92
  "cache_write": 3.75
91
93
  }
92
94
  },
95
+ "jp.anthropic.claude-haiku-4-5-20251001-v1:0": {
96
+ "id": "jp.anthropic.claude-haiku-4-5-20251001-v1:0",
97
+ "name": "Claude Haiku 4.5 (JP)",
98
+ "description": "Fast Claude model for responsive assistance, classification, and lightweight agents",
99
+ "family": "claude-haiku",
100
+ "attachment": true,
101
+ "reasoning": true,
102
+ "reasoning_options": [
103
+ {
104
+ "type": "budget_tokens",
105
+ "min": 1024
106
+ }
107
+ ],
108
+ "tool_call": true,
109
+ "structured_output": true,
110
+ "temperature": true,
111
+ "knowledge": "2025-02-28",
112
+ "release_date": "2025-10-15",
113
+ "last_updated": "2025-10-15",
114
+ "modalities": {
115
+ "input": [
116
+ "text",
117
+ "image",
118
+ "pdf"
119
+ ],
120
+ "output": [
121
+ "text"
122
+ ]
123
+ },
124
+ "open_weights": false,
125
+ "limit": {
126
+ "context": 200000,
127
+ "output": 64000
128
+ },
129
+ "cost": {
130
+ "input": 1,
131
+ "output": 5,
132
+ "cache_read": 0.1,
133
+ "cache_write": 1.25
134
+ }
135
+ },
93
136
  "us.meta.llama4-scout-17b-instruct-v1:0": {
94
137
  "id": "us.meta.llama4-scout-17b-instruct-v1:0",
95
138
  "name": "Llama 4 Scout 17B Instruct (US)",
139
+ "description": "Open Llama with long-context vision for efficient multimodal agents",
96
140
  "family": "llama",
97
141
  "attachment": true,
98
142
  "reasoning": false,
@@ -123,6 +167,7 @@
123
167
  "minimax.minimax-m2": {
124
168
  "id": "minimax.minimax-m2",
125
169
  "name": "MiniMax M2",
170
+ "description": "MiniMax model for chat, coding, office work, and agentic tasks",
126
171
  "family": "minimax",
127
172
  "attachment": false,
128
173
  "reasoning": true,
@@ -153,6 +198,7 @@
153
198
  "anthropic.claude-opus-4-7": {
154
199
  "id": "anthropic.claude-opus-4-7",
155
200
  "name": "Claude Opus 4.7",
201
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
156
202
  "family": "claude-opus",
157
203
  "attachment": true,
158
204
  "reasoning": true,
@@ -198,6 +244,7 @@
198
244
  "eu.anthropic.claude-sonnet-4-6": {
199
245
  "id": "eu.anthropic.claude-sonnet-4-6",
200
246
  "name": "Claude Sonnet 4.6 (EU)",
247
+ "description": "Claude workhorse for coding agents, careful analysis, and production cost control",
201
248
  "family": "claude-sonnet",
202
249
  "attachment": true,
203
250
  "reasoning": true,
@@ -247,6 +294,7 @@
247
294
  "mistral.voxtral-small-24b-2507": {
248
295
  "id": "mistral.voxtral-small-24b-2507",
249
296
  "name": "Voxtral Small 24B 2507",
297
+ "description": "Efficient Mistral model for fast chat, extraction, and production assistants",
250
298
  "family": "mistral",
251
299
  "attachment": true,
252
300
  "reasoning": false,
@@ -277,6 +325,7 @@
277
325
  "mistral.ministral-3-3b-instruct": {
278
326
  "id": "mistral.ministral-3-3b-instruct",
279
327
  "name": "Ministral 3 3B",
328
+ "description": "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads",
280
329
  "family": "ministral",
281
330
  "attachment": false,
282
331
  "reasoning": false,
@@ -307,6 +356,7 @@
307
356
  "openai.gpt-oss-20b": {
308
357
  "id": "openai.gpt-oss-20b",
309
358
  "name": "gpt-oss-20b",
359
+ "description": "Open-weight GPT model for self-hosted reasoning and instruction-following workloads",
310
360
  "family": "gpt-oss",
311
361
  "attachment": false,
312
362
  "reasoning": true,
@@ -351,6 +401,7 @@
351
401
  "anthropic.claude-opus-4-6-v1": {
352
402
  "id": "anthropic.claude-opus-4-6-v1",
353
403
  "name": "Claude Opus 4.6",
404
+ "description": "High-end Claude for difficult coding, planning, and slower expert reasoning",
354
405
  "family": "claude-opus",
355
406
  "attachment": true,
356
407
  "reasoning": true,
@@ -400,6 +451,7 @@
400
451
  "openai.gpt-oss-safeguard-20b": {
401
452
  "id": "openai.gpt-oss-safeguard-20b",
402
453
  "name": "GPT OSS Safeguard 20B",
454
+ "description": "Safety model for policy screening, moderation, and risk-aware routing workflows",
403
455
  "family": "gpt-oss",
404
456
  "attachment": false,
405
457
  "reasoning": false,
@@ -429,6 +481,7 @@
429
481
  "anthropic.claude-opus-4-5-20251101-v1:0": {
430
482
  "id": "anthropic.claude-opus-4-5-20251101-v1:0",
431
483
  "name": "Claude Opus 4.5",
484
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
432
485
  "family": "claude-opus",
433
486
  "attachment": true,
434
487
  "reasoning": true,
@@ -477,6 +530,7 @@
477
530
  "global.anthropic.claude-fable-5": {
478
531
  "id": "global.anthropic.claude-fable-5",
479
532
  "name": "Claude Fable 5 (Global)",
533
+ "description": "Claude model for creative writing, analysis, and controlled agent workflows",
480
534
  "family": "claude-fable",
481
535
  "attachment": true,
482
536
  "reasoning": true,
@@ -500,7 +554,8 @@
500
554
  "modalities": {
501
555
  "input": [
502
556
  "text",
503
- "image"
557
+ "image",
558
+ "pdf"
504
559
  ],
505
560
  "output": [
506
561
  "text"
@@ -521,6 +576,7 @@
521
576
  "openai.gpt-oss-120b-1:0": {
522
577
  "id": "openai.gpt-oss-120b-1:0",
523
578
  "name": "gpt-oss-120b",
579
+ "description": "Open-weight GPT model for self-hosted reasoning and instruction-following workloads",
524
580
  "family": "gpt-oss",
525
581
  "attachment": false,
526
582
  "reasoning": true,
@@ -560,6 +616,7 @@
560
616
  "anthropic.claude-sonnet-4-5-20250929-v1:0": {
561
617
  "id": "anthropic.claude-sonnet-4-5-20250929-v1:0",
562
618
  "name": "Claude Sonnet 4.5",
619
+ "description": "Balanced Claude model for coding, analysis, agent workflows, and cost control",
563
620
  "family": "claude-sonnet",
564
621
  "attachment": true,
565
622
  "reasoning": true,
@@ -600,6 +657,7 @@
600
657
  "amazon.nova-pro-v1:0": {
601
658
  "id": "amazon.nova-pro-v1:0",
602
659
  "name": "Nova Pro",
660
+ "description": "Flagship model for demanding analysis, coding, and production agent workflows",
603
661
  "family": "nova-pro",
604
662
  "attachment": true,
605
663
  "reasoning": false,
@@ -632,6 +690,7 @@
632
690
  "qwen.qwen3-coder-next": {
633
691
  "id": "qwen.qwen3-coder-next",
634
692
  "name": "Qwen3 Coder Next",
693
+ "description": "Qwen coding model for software agents, repository edits, and code reasoning",
635
694
  "family": "qwen",
636
695
  "attachment": false,
637
696
  "reasoning": true,
@@ -662,6 +721,7 @@
662
721
  "us.anthropic.claude-opus-4-7": {
663
722
  "id": "us.anthropic.claude-opus-4-7",
664
723
  "name": "Claude Opus 4.7 (US)",
724
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
665
725
  "family": "claude-opus",
666
726
  "attachment": true,
667
727
  "reasoning": true,
@@ -707,6 +767,7 @@
707
767
  "nvidia.nemotron-nano-9b-v2": {
708
768
  "id": "nvidia.nemotron-nano-9b-v2",
709
769
  "name": "NVIDIA Nemotron Nano 9B v2",
770
+ "description": "Compact Nemotron model for efficient reasoning and deployable AI agents",
710
771
  "family": "nemotron",
711
772
  "attachment": false,
712
773
  "reasoning": false,
@@ -736,6 +797,7 @@
736
797
  "qwen.qwen3-32b-v1:0": {
737
798
  "id": "qwen.qwen3-32b-v1:0",
738
799
  "name": "Qwen3 32B (dense)",
800
+ "description": "Qwen instruction model for multilingual chat, reasoning, and tool use",
739
801
  "family": "qwen",
740
802
  "attachment": false,
741
803
  "reasoning": true,
@@ -767,6 +829,7 @@
767
829
  "jp.anthropic.claude-sonnet-4-6": {
768
830
  "id": "jp.anthropic.claude-sonnet-4-6",
769
831
  "name": "Claude Sonnet 4.6 (JP)",
832
+ "description": "Claude workhorse for coding agents, careful analysis, and production cost control",
770
833
  "family": "claude-sonnet",
771
834
  "attachment": true,
772
835
  "reasoning": true,
@@ -816,6 +879,7 @@
816
879
  "deepseek.r1-v1:0": {
817
880
  "id": "deepseek.r1-v1:0",
818
881
  "name": "DeepSeek-R1",
882
+ "description": "DeepSeek reasoning model for multi-step analysis, math, coding, and tools",
819
883
  "family": "deepseek-thinking",
820
884
  "attachment": false,
821
885
  "reasoning": true,
@@ -846,6 +910,7 @@
846
910
  "mistral.mistral-large-3-675b-instruct": {
847
911
  "id": "mistral.mistral-large-3-675b-instruct",
848
912
  "name": "Mistral Large 3",
913
+ "description": "Flagship Mistral model for advanced reasoning, coding, and multilingual work",
849
914
  "family": "mistral",
850
915
  "attachment": false,
851
916
  "reasoning": false,
@@ -876,6 +941,7 @@
876
941
  "google.gemma-3-27b-it": {
877
942
  "id": "google.gemma-3-27b-it",
878
943
  "name": "Google Gemma 3 27B Instruct",
944
+ "description": "Open Gemma instruction model for efficient chat and self-hosted deployments",
879
945
  "family": "gemma",
880
946
  "attachment": true,
881
947
  "reasoning": false,
@@ -907,6 +973,7 @@
907
973
  "anthropic.claude-sonnet-4-6": {
908
974
  "id": "anthropic.claude-sonnet-4-6",
909
975
  "name": "Claude Sonnet 4.6",
976
+ "description": "Claude workhorse for coding agents, careful analysis, and production cost control",
910
977
  "family": "claude-sonnet",
911
978
  "attachment": true,
912
979
  "reasoning": true,
@@ -956,6 +1023,7 @@
956
1023
  "amazon.nova-2-lite-v1:0": {
957
1024
  "id": "amazon.nova-2-lite-v1:0",
958
1025
  "name": "Nova 2 Lite",
1026
+ "description": "Multimodal reasoning model for visual analysis, planning, and tool use",
959
1027
  "family": "nova",
960
1028
  "attachment": false,
961
1029
  "reasoning": true,
@@ -999,6 +1067,7 @@
999
1067
  "openai.gpt-oss-safeguard-120b": {
1000
1068
  "id": "openai.gpt-oss-safeguard-120b",
1001
1069
  "name": "GPT OSS Safeguard 120B",
1070
+ "description": "Safety model for policy screening, moderation, and risk-aware routing workflows",
1002
1071
  "family": "gpt-oss",
1003
1072
  "attachment": false,
1004
1073
  "reasoning": false,
@@ -1028,6 +1097,7 @@
1028
1097
  "mistral.ministral-3-8b-instruct": {
1029
1098
  "id": "mistral.ministral-3-8b-instruct",
1030
1099
  "name": "Ministral 3 8B",
1100
+ "description": "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads",
1031
1101
  "family": "ministral",
1032
1102
  "attachment": false,
1033
1103
  "reasoning": false,
@@ -1057,6 +1127,7 @@
1057
1127
  "eu.anthropic.claude-opus-4-6-v1": {
1058
1128
  "id": "eu.anthropic.claude-opus-4-6-v1",
1059
1129
  "name": "Claude Opus 4.6 (EU)",
1130
+ "description": "High-end Claude for difficult coding, planning, and slower expert reasoning",
1060
1131
  "family": "claude-opus",
1061
1132
  "attachment": true,
1062
1133
  "reasoning": true,
@@ -1106,6 +1177,7 @@
1106
1177
  "au.anthropic.claude-opus-4-6-v1": {
1107
1178
  "id": "au.anthropic.claude-opus-4-6-v1",
1108
1179
  "name": "AU Anthropic Claude Opus 4.6",
1180
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
1109
1181
  "family": "claude-opus",
1110
1182
  "attachment": true,
1111
1183
  "reasoning": true,
@@ -1152,9 +1224,60 @@
1152
1224
  "cache_write": 20.625
1153
1225
  }
1154
1226
  },
1227
+ "jp.anthropic.claude-sonnet-5": {
1228
+ "id": "jp.anthropic.claude-sonnet-5",
1229
+ "name": "Claude Sonnet 5 (JP)",
1230
+ "description": "Everyday Claude agent model for coding, planning, browsing, and general work",
1231
+ "family": "claude-sonnet",
1232
+ "attachment": true,
1233
+ "reasoning": true,
1234
+ "reasoning_options": [
1235
+ {
1236
+ "type": "toggle"
1237
+ },
1238
+ {
1239
+ "type": "effort",
1240
+ "values": [
1241
+ "low",
1242
+ "medium",
1243
+ "high",
1244
+ "xhigh",
1245
+ "max"
1246
+ ]
1247
+ }
1248
+ ],
1249
+ "tool_call": true,
1250
+ "structured_output": true,
1251
+ "temperature": false,
1252
+ "knowledge": "2026-01-31",
1253
+ "release_date": "2026-06-30",
1254
+ "last_updated": "2026-06-30",
1255
+ "modalities": {
1256
+ "input": [
1257
+ "text",
1258
+ "image",
1259
+ "pdf"
1260
+ ],
1261
+ "output": [
1262
+ "text"
1263
+ ]
1264
+ },
1265
+ "open_weights": false,
1266
+ "limit": {
1267
+ "context": 1000000,
1268
+ "output": 128000
1269
+ },
1270
+ "cost": {
1271
+ "input": 2,
1272
+ "output": 10,
1273
+ "cache_read": 0.2,
1274
+ "cache_write": 2.5
1275
+ }
1276
+ },
1155
1277
  "openai.gpt-oss-120b": {
1156
1278
  "id": "openai.gpt-oss-120b",
1157
1279
  "name": "gpt-oss-120b",
1280
+ "description": "Open-weight GPT model for self-hosted reasoning and instruction-following workloads",
1158
1281
  "family": "gpt-oss",
1159
1282
  "attachment": false,
1160
1283
  "reasoning": true,
@@ -1196,9 +1319,60 @@
1196
1319
  "output": 0.6
1197
1320
  }
1198
1321
  },
1322
+ "global.anthropic.claude-sonnet-5": {
1323
+ "id": "global.anthropic.claude-sonnet-5",
1324
+ "name": "Claude Sonnet 5 (Global)",
1325
+ "description": "Everyday Claude agent model for coding, planning, browsing, and general work",
1326
+ "family": "claude-sonnet",
1327
+ "attachment": true,
1328
+ "reasoning": true,
1329
+ "reasoning_options": [
1330
+ {
1331
+ "type": "toggle"
1332
+ },
1333
+ {
1334
+ "type": "effort",
1335
+ "values": [
1336
+ "low",
1337
+ "medium",
1338
+ "high",
1339
+ "xhigh",
1340
+ "max"
1341
+ ]
1342
+ }
1343
+ ],
1344
+ "tool_call": true,
1345
+ "structured_output": true,
1346
+ "temperature": false,
1347
+ "knowledge": "2026-01-31",
1348
+ "release_date": "2026-06-30",
1349
+ "last_updated": "2026-06-30",
1350
+ "modalities": {
1351
+ "input": [
1352
+ "text",
1353
+ "image",
1354
+ "pdf"
1355
+ ],
1356
+ "output": [
1357
+ "text"
1358
+ ]
1359
+ },
1360
+ "open_weights": false,
1361
+ "limit": {
1362
+ "context": 1000000,
1363
+ "output": 128000
1364
+ },
1365
+ "cost": {
1366
+ "input": 2,
1367
+ "output": 10,
1368
+ "cache_read": 0.2,
1369
+ "cache_write": 2.5
1370
+ }
1371
+ },
1199
1372
  "global.anthropic.claude-opus-4-8": {
1200
1373
  "id": "global.anthropic.claude-opus-4-8",
1201
1374
  "name": "Claude Opus 4.8 (Global)",
1375
+ "description": "Top Claude Opus tier for the hardest reasoning, coding, and long-horizon agents",
1202
1376
  "family": "claude-opus",
1203
1377
  "attachment": true,
1204
1378
  "reasoning": true,
@@ -1216,6 +1390,7 @@
1216
1390
  ],
1217
1391
  "tool_call": true,
1218
1392
  "temperature": false,
1393
+ "knowledge": "2026-01",
1219
1394
  "release_date": "2026-05-28",
1220
1395
  "last_updated": "2026-05-28",
1221
1396
  "modalities": {
@@ -1243,6 +1418,7 @@
1243
1418
  "us.meta.llama4-maverick-17b-instruct-v1:0": {
1244
1419
  "id": "us.meta.llama4-maverick-17b-instruct-v1:0",
1245
1420
  "name": "Llama 4 Maverick 17B Instruct (US)",
1421
+ "description": "Open multimodal Llama for strong reasoning with efficient everyday serving",
1246
1422
  "family": "llama",
1247
1423
  "attachment": true,
1248
1424
  "reasoning": false,
@@ -1273,6 +1449,7 @@
1273
1449
  "openai.gpt-5.4": {
1274
1450
  "id": "openai.gpt-5.4",
1275
1451
  "name": "GPT-5.4",
1452
+ "description": "Agent-ready GPT for coding and computer-use workflows at a lower cost",
1276
1453
  "family": "gpt",
1277
1454
  "attachment": true,
1278
1455
  "reasoning": true,
@@ -1320,9 +1497,60 @@
1320
1497
  "cache_read": 0.275
1321
1498
  }
1322
1499
  },
1500
+ "anthropic.claude-sonnet-5": {
1501
+ "id": "anthropic.claude-sonnet-5",
1502
+ "name": "Claude Sonnet 5",
1503
+ "description": "Everyday Claude agent model for coding, planning, browsing, and general work",
1504
+ "family": "claude-sonnet",
1505
+ "attachment": true,
1506
+ "reasoning": true,
1507
+ "reasoning_options": [
1508
+ {
1509
+ "type": "toggle"
1510
+ },
1511
+ {
1512
+ "type": "effort",
1513
+ "values": [
1514
+ "low",
1515
+ "medium",
1516
+ "high",
1517
+ "xhigh",
1518
+ "max"
1519
+ ]
1520
+ }
1521
+ ],
1522
+ "tool_call": true,
1523
+ "structured_output": true,
1524
+ "temperature": false,
1525
+ "knowledge": "2026-01-31",
1526
+ "release_date": "2026-06-30",
1527
+ "last_updated": "2026-06-30",
1528
+ "modalities": {
1529
+ "input": [
1530
+ "text",
1531
+ "image",
1532
+ "pdf"
1533
+ ],
1534
+ "output": [
1535
+ "text"
1536
+ ]
1537
+ },
1538
+ "open_weights": false,
1539
+ "limit": {
1540
+ "context": 1000000,
1541
+ "output": 128000
1542
+ },
1543
+ "cost": {
1544
+ "input": 2,
1545
+ "output": 10,
1546
+ "cache_read": 0.2,
1547
+ "cache_write": 2.5
1548
+ }
1549
+ },
1323
1550
  "mistral.devstral-2-123b": {
1324
1551
  "id": "mistral.devstral-2-123b",
1325
1552
  "name": "Devstral 2 123B",
1553
+ "description": "Mistral coding agent model for repository tasks and software engineering workflows",
1326
1554
  "family": "devstral",
1327
1555
  "attachment": false,
1328
1556
  "reasoning": false,
@@ -1352,6 +1580,7 @@
1352
1580
  "zai.glm-4.7": {
1353
1581
  "id": "zai.glm-4.7",
1354
1582
  "name": "GLM-4.7",
1583
+ "description": "Flagship GLM model for hybrid reasoning, coding, and agentic engineering",
1355
1584
  "family": "glm",
1356
1585
  "attachment": false,
1357
1586
  "reasoning": true,
@@ -1383,9 +1612,56 @@
1383
1612
  "output": 2.2
1384
1613
  }
1385
1614
  },
1615
+ "anthropic.claude-fable-5": {
1616
+ "id": "anthropic.claude-fable-5",
1617
+ "name": "Claude Fable 5",
1618
+ "description": "Claude model for creative writing, analysis, and controlled agent workflows",
1619
+ "family": "claude-fable",
1620
+ "attachment": true,
1621
+ "reasoning": true,
1622
+ "reasoning_options": [
1623
+ {
1624
+ "type": "effort",
1625
+ "values": [
1626
+ "low",
1627
+ "medium",
1628
+ "high",
1629
+ "xhigh",
1630
+ "max"
1631
+ ]
1632
+ }
1633
+ ],
1634
+ "tool_call": true,
1635
+ "temperature": false,
1636
+ "knowledge": "2026-01-31",
1637
+ "release_date": "2026-06-09",
1638
+ "last_updated": "2026-06-09",
1639
+ "modalities": {
1640
+ "input": [
1641
+ "text",
1642
+ "image",
1643
+ "pdf"
1644
+ ],
1645
+ "output": [
1646
+ "text"
1647
+ ]
1648
+ },
1649
+ "open_weights": false,
1650
+ "limit": {
1651
+ "context": 1000000,
1652
+ "output": 128000
1653
+ },
1654
+ "cost": {
1655
+ "input": 10,
1656
+ "output": 50,
1657
+ "cache_read": 1,
1658
+ "cache_write": 12.5
1659
+ }
1660
+ },
1386
1661
  "writer.palmyra-x4-v1:0": {
1387
1662
  "id": "writer.palmyra-x4-v1:0",
1388
1663
  "name": "Palmyra X4",
1664
+ "description": "Reasoning model for deliberate analysis, multi-step problem solving, and tool use",
1389
1665
  "family": "palmyra",
1390
1666
  "attachment": false,
1391
1667
  "reasoning": true,
@@ -1415,6 +1691,7 @@
1415
1691
  "mistral.magistral-small-2509": {
1416
1692
  "id": "mistral.magistral-small-2509",
1417
1693
  "name": "Magistral Small 1.2",
1694
+ "description": "Mistral reasoning model for transparent analysis, math, and complex decisions",
1418
1695
  "family": "magistral",
1419
1696
  "attachment": false,
1420
1697
  "reasoning": true,
@@ -1446,6 +1723,7 @@
1446
1723
  "qwen.qwen3-coder-480b-a35b-v1:0": {
1447
1724
  "id": "qwen.qwen3-coder-480b-a35b-v1:0",
1448
1725
  "name": "Qwen3 Coder 480B A35B Instruct",
1726
+ "description": "Qwen coding model for software agents, repository edits, and code reasoning",
1449
1727
  "family": "qwen",
1450
1728
  "attachment": false,
1451
1729
  "reasoning": false,
@@ -1476,6 +1754,7 @@
1476
1754
  "amazon.nova-micro-v1:0": {
1477
1755
  "id": "amazon.nova-micro-v1:0",
1478
1756
  "name": "Nova Micro",
1757
+ "description": "Efficient model for low-latency assistance, extraction, and routine automation",
1479
1758
  "family": "nova-micro",
1480
1759
  "attachment": false,
1481
1760
  "reasoning": false,
@@ -1506,6 +1785,7 @@
1506
1785
  "mistral.pixtral-large-2502-v1:0": {
1507
1786
  "id": "mistral.pixtral-large-2502-v1:0",
1508
1787
  "name": "Pixtral Large (25.02)",
1788
+ "description": "Mistral vision-language model for image understanding and multimodal chat",
1509
1789
  "family": "mistral",
1510
1790
  "attachment": false,
1511
1791
  "reasoning": false,
@@ -1535,6 +1815,7 @@
1535
1815
  "us.anthropic.claude-opus-4-6-v1": {
1536
1816
  "id": "us.anthropic.claude-opus-4-6-v1",
1537
1817
  "name": "Claude Opus 4.6 (US)",
1818
+ "description": "High-end Claude for difficult coding, planning, and slower expert reasoning",
1538
1819
  "family": "claude-opus",
1539
1820
  "attachment": true,
1540
1821
  "reasoning": true,
@@ -1584,6 +1865,7 @@
1584
1865
  "jp.anthropic.claude-opus-4-7": {
1585
1866
  "id": "jp.anthropic.claude-opus-4-7",
1586
1867
  "name": "Claude Opus 4.7 (JP)",
1868
+ "description": "Stronger Opus tier for advanced software work and high-stakes reasoning",
1587
1869
  "family": "claude-opus",
1588
1870
  "attachment": true,
1589
1871
  "reasoning": true,
@@ -1629,6 +1911,7 @@
1629
1911
  "au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
1630
1912
  "id": "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
1631
1913
  "name": "Claude Sonnet 4.5 (AU)",
1914
+ "description": "Balanced Claude model for coding, analysis, agent workflows, and cost control",
1632
1915
  "family": "claude-sonnet",
1633
1916
  "attachment": true,
1634
1917
  "reasoning": true,
@@ -1669,6 +1952,7 @@
1669
1952
  "deepseek.v3-v1:0": {
1670
1953
  "id": "deepseek.v3-v1:0",
1671
1954
  "name": "DeepSeek-V3.1",
1955
+ "description": "DeepSeek chat model for instruction following, coding, and analysis",
1672
1956
  "family": "deepseek",
1673
1957
  "attachment": false,
1674
1958
  "reasoning": true,
@@ -1700,6 +1984,7 @@
1700
1984
  "anthropic.claude-opus-4-1-20250805-v1:0": {
1701
1985
  "id": "anthropic.claude-opus-4-1-20250805-v1:0",
1702
1986
  "name": "Claude Opus 4.1",
1987
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
1703
1988
  "family": "claude-opus",
1704
1989
  "attachment": true,
1705
1990
  "reasoning": true,
@@ -1739,6 +2024,7 @@
1739
2024
  "jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
1740
2025
  "id": "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
1741
2026
  "name": "Claude Sonnet 4.5 (JP)",
2027
+ "description": "Balanced Claude model for coding, analysis, agent workflows, and cost control",
1742
2028
  "family": "claude-sonnet",
1743
2029
  "attachment": true,
1744
2030
  "reasoning": true,
@@ -1779,6 +2065,7 @@
1779
2065
  "google.gemma-3-4b-it": {
1780
2066
  "id": "google.gemma-3-4b-it",
1781
2067
  "name": "Gemma 3 4B IT",
2068
+ "description": "Open Gemma instruction model for efficient chat and self-hosted deployments",
1782
2069
  "family": "gemma",
1783
2070
  "attachment": false,
1784
2071
  "reasoning": false,
@@ -1808,6 +2095,7 @@
1808
2095
  "eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
1809
2096
  "id": "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
1810
2097
  "name": "Claude Sonnet 4.5 (EU)",
2098
+ "description": "Balanced Claude model for coding, analysis, agent workflows, and cost control",
1811
2099
  "family": "claude-sonnet",
1812
2100
  "attachment": true,
1813
2101
  "reasoning": true,
@@ -1848,6 +2136,7 @@
1848
2136
  "qwen.qwen3-vl-235b-a22b": {
1849
2137
  "id": "qwen.qwen3-vl-235b-a22b",
1850
2138
  "name": "Qwen/Qwen3-VL-235B-A22B-Instruct",
2139
+ "description": "Qwen vision-language model for visual reasoning, documents, and agent tasks",
1851
2140
  "family": "qwen",
1852
2141
  "attachment": true,
1853
2142
  "reasoning": false,
@@ -1878,6 +2167,7 @@
1878
2167
  "writer.palmyra-x5-v1:0": {
1879
2168
  "id": "writer.palmyra-x5-v1:0",
1880
2169
  "name": "Palmyra X5",
2170
+ "description": "Reasoning model for deliberate analysis, multi-step problem solving, and tool use",
1881
2171
  "family": "palmyra",
1882
2172
  "attachment": false,
1883
2173
  "reasoning": true,
@@ -1907,6 +2197,7 @@
1907
2197
  "us.anthropic.claude-sonnet-4-6": {
1908
2198
  "id": "us.anthropic.claude-sonnet-4-6",
1909
2199
  "name": "Claude Sonnet 4.6 (US)",
2200
+ "description": "Claude workhorse for coding agents, careful analysis, and production cost control",
1910
2201
  "family": "claude-sonnet",
1911
2202
  "attachment": true,
1912
2203
  "reasoning": true,
@@ -1956,6 +2247,7 @@
1956
2247
  "au.anthropic.claude-haiku-4-5-20251001-v1:0": {
1957
2248
  "id": "au.anthropic.claude-haiku-4-5-20251001-v1:0",
1958
2249
  "name": "Claude Haiku 4.5 (AU)",
2250
+ "description": "Fast Claude model for responsive assistance, classification, and lightweight agents",
1959
2251
  "family": "claude-haiku",
1960
2252
  "attachment": true,
1961
2253
  "reasoning": true,
@@ -1996,6 +2288,7 @@
1996
2288
  "meta.llama3-3-70b-instruct-v1:0": {
1997
2289
  "id": "meta.llama3-3-70b-instruct-v1:0",
1998
2290
  "name": "Llama 3.3 70B Instruct",
2291
+ "description": "Open Llama instruction model for multilingual chat, reasoning, and coding",
1999
2292
  "family": "llama",
2000
2293
  "attachment": false,
2001
2294
  "reasoning": false,
@@ -2025,6 +2318,7 @@
2025
2318
  "zai.glm-5": {
2026
2319
  "id": "zai.glm-5",
2027
2320
  "name": "GLM-5",
2321
+ "description": "Flagship GLM model for hybrid reasoning, coding, and agentic engineering",
2028
2322
  "family": "glm",
2029
2323
  "attachment": false,
2030
2324
  "reasoning": true,
@@ -2058,6 +2352,7 @@
2058
2352
  "us.anthropic.claude-opus-4-8": {
2059
2353
  "id": "us.anthropic.claude-opus-4-8",
2060
2354
  "name": "Claude Opus 4.8 (US)",
2355
+ "description": "Top Claude Opus tier for the hardest reasoning, coding, and long-horizon agents",
2061
2356
  "family": "claude-opus",
2062
2357
  "attachment": true,
2063
2358
  "reasoning": true,
@@ -2075,6 +2370,7 @@
2075
2370
  ],
2076
2371
  "tool_call": true,
2077
2372
  "temperature": false,
2373
+ "knowledge": "2026-01",
2078
2374
  "release_date": "2026-05-28",
2079
2375
  "last_updated": "2026-05-28",
2080
2376
  "modalities": {
@@ -2102,6 +2398,7 @@
2102
2398
  "global.anthropic.claude-opus-4-7": {
2103
2399
  "id": "global.anthropic.claude-opus-4-7",
2104
2400
  "name": "Claude Opus 4.7 (Global)",
2401
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
2105
2402
  "family": "claude-opus",
2106
2403
  "attachment": true,
2107
2404
  "reasoning": true,
@@ -2147,6 +2444,7 @@
2147
2444
  "us.anthropic.claude-fable-5": {
2148
2445
  "id": "us.anthropic.claude-fable-5",
2149
2446
  "name": "Claude Fable 5 (US)",
2447
+ "description": "Claude model for creative writing, analysis, and controlled agent workflows",
2150
2448
  "family": "claude-fable",
2151
2449
  "attachment": true,
2152
2450
  "reasoning": true,
@@ -2170,7 +2468,8 @@
2170
2468
  "modalities": {
2171
2469
  "input": [
2172
2470
  "text",
2173
- "image"
2471
+ "image",
2472
+ "pdf"
2174
2473
  ],
2175
2474
  "output": [
2176
2475
  "text"
@@ -2191,6 +2490,7 @@
2191
2490
  "amazon.nova-lite-v1:0": {
2192
2491
  "id": "amazon.nova-lite-v1:0",
2193
2492
  "name": "Nova Lite",
2493
+ "description": "Efficient model for low-latency assistance, extraction, and routine automation",
2194
2494
  "family": "nova-lite",
2195
2495
  "attachment": true,
2196
2496
  "reasoning": false,
@@ -2223,6 +2523,7 @@
2223
2523
  "us.anthropic.claude-haiku-4-5-20251001-v1:0": {
2224
2524
  "id": "us.anthropic.claude-haiku-4-5-20251001-v1:0",
2225
2525
  "name": "Claude Haiku 4.5 (US)",
2526
+ "description": "Fast Claude model for responsive assistance, classification, and lightweight agents",
2226
2527
  "family": "claude-haiku",
2227
2528
  "attachment": true,
2228
2529
  "reasoning": true,
@@ -2263,6 +2564,7 @@
2263
2564
  "xai.grok-4.3": {
2264
2565
  "id": "xai.grok-4.3",
2265
2566
  "name": "Grok 4.3",
2567
+ "description": "xAI's default Grok for chat, coding, agentic tools, and lower hallucination risk",
2266
2568
  "family": "grok",
2267
2569
  "attachment": true,
2268
2570
  "reasoning": true,
@@ -2310,6 +2612,7 @@
2310
2612
  "mistral.voxtral-mini-3b-2507": {
2311
2613
  "id": "mistral.voxtral-mini-3b-2507",
2312
2614
  "name": "Voxtral Mini 3B 2507",
2615
+ "description": "Efficient Mistral model for fast chat, extraction, and production assistants",
2313
2616
  "family": "mistral",
2314
2617
  "attachment": false,
2315
2618
  "reasoning": false,
@@ -2340,6 +2643,7 @@
2340
2643
  "moonshot.kimi-k2-thinking": {
2341
2644
  "id": "moonshot.kimi-k2-thinking",
2342
2645
  "name": "Kimi K2 Thinking",
2646
+ "description": "Kimi reasoning model for long-horizon research, planning, and tool use",
2343
2647
  "family": "kimi-thinking",
2344
2648
  "attachment": false,
2345
2649
  "reasoning": true,
@@ -2371,6 +2675,7 @@
2371
2675
  "meta.llama3-1-70b-instruct-v1:0": {
2372
2676
  "id": "meta.llama3-1-70b-instruct-v1:0",
2373
2677
  "name": "Llama 3.1 70B Instruct",
2678
+ "description": "Open Llama instruction model for multilingual chat, reasoning, and coding",
2374
2679
  "family": "llama",
2375
2680
  "attachment": false,
2376
2681
  "reasoning": false,
@@ -2400,6 +2705,7 @@
2400
2705
  "us.deepseek.r1-v1:0": {
2401
2706
  "id": "us.deepseek.r1-v1:0",
2402
2707
  "name": "DeepSeek-R1 (US)",
2708
+ "description": "Classic open reasoning model for transparent math, coding, and deliberate problem solving",
2403
2709
  "family": "deepseek-thinking",
2404
2710
  "attachment": false,
2405
2711
  "reasoning": true,
@@ -2430,6 +2736,7 @@
2430
2736
  "global.anthropic.claude-sonnet-4-6": {
2431
2737
  "id": "global.anthropic.claude-sonnet-4-6",
2432
2738
  "name": "Claude Sonnet 4.6 (Global)",
2739
+ "description": "Claude workhorse for coding agents, careful analysis, and production cost control",
2433
2740
  "family": "claude-sonnet",
2434
2741
  "attachment": true,
2435
2742
  "reasoning": true,
@@ -2479,6 +2786,7 @@
2479
2786
  "anthropic.claude-haiku-4-5-20251001-v1:0": {
2480
2787
  "id": "anthropic.claude-haiku-4-5-20251001-v1:0",
2481
2788
  "name": "Claude Haiku 4.5",
2789
+ "description": "Fast Claude model for responsive assistance, classification, and lightweight agents",
2482
2790
  "family": "claude-haiku",
2483
2791
  "attachment": true,
2484
2792
  "reasoning": true,
@@ -2519,6 +2827,7 @@
2519
2827
  "moonshotai.kimi-k2.5": {
2520
2828
  "id": "moonshotai.kimi-k2.5",
2521
2829
  "name": "Kimi K2.5",
2830
+ "description": "Kimi multimodal agent model for visual understanding, coding, and planning",
2522
2831
  "family": "kimi",
2523
2832
  "attachment": false,
2524
2833
  "reasoning": true,
@@ -2551,6 +2860,7 @@
2551
2860
  "au.anthropic.claude-opus-4-8": {
2552
2861
  "id": "au.anthropic.claude-opus-4-8",
2553
2862
  "name": "Claude Opus 4.8 (AU)",
2863
+ "description": "Top Claude Opus tier for the hardest reasoning, coding, and long-horizon agents",
2554
2864
  "family": "claude-opus",
2555
2865
  "attachment": true,
2556
2866
  "reasoning": true,
@@ -2568,6 +2878,7 @@
2568
2878
  ],
2569
2879
  "tool_call": true,
2570
2880
  "temperature": false,
2881
+ "knowledge": "2026-01",
2571
2882
  "release_date": "2026-05-28",
2572
2883
  "last_updated": "2026-05-28",
2573
2884
  "modalities": {
@@ -2595,6 +2906,7 @@
2595
2906
  "nvidia.nemotron-nano-12b-v2": {
2596
2907
  "id": "nvidia.nemotron-nano-12b-v2",
2597
2908
  "name": "NVIDIA Nemotron Nano 12B v2 VL BF16",
2909
+ "description": "Nemotron multimodal model for visual reasoning and agentic AI workflows",
2598
2910
  "family": "nemotron",
2599
2911
  "attachment": false,
2600
2912
  "reasoning": false,
@@ -2625,6 +2937,7 @@
2625
2937
  "zai.glm-4.7-flash": {
2626
2938
  "id": "zai.glm-4.7-flash",
2627
2939
  "name": "GLM-4.7-Flash",
2940
+ "description": "Efficient GLM model for fast reasoning, coding, and agent workflows",
2628
2941
  "family": "glm-flash",
2629
2942
  "attachment": false,
2630
2943
  "reasoning": true,
@@ -2656,6 +2969,7 @@
2656
2969
  "meta.llama4-scout-17b-instruct-v1:0": {
2657
2970
  "id": "meta.llama4-scout-17b-instruct-v1:0",
2658
2971
  "name": "Llama 4 Scout 17B Instruct",
2972
+ "description": "Open multimodal Llama model for long-context analysis and efficient agents",
2659
2973
  "family": "llama",
2660
2974
  "attachment": true,
2661
2975
  "reasoning": false,
@@ -2683,9 +2997,60 @@
2683
2997
  "output": 0.66
2684
2998
  }
2685
2999
  },
3000
+ "au.anthropic.claude-sonnet-5": {
3001
+ "id": "au.anthropic.claude-sonnet-5",
3002
+ "name": "Claude Sonnet 5 (AU)",
3003
+ "description": "Everyday Claude agent model for coding, planning, browsing, and general work",
3004
+ "family": "claude-sonnet",
3005
+ "attachment": true,
3006
+ "reasoning": true,
3007
+ "reasoning_options": [
3008
+ {
3009
+ "type": "toggle"
3010
+ },
3011
+ {
3012
+ "type": "effort",
3013
+ "values": [
3014
+ "low",
3015
+ "medium",
3016
+ "high",
3017
+ "xhigh",
3018
+ "max"
3019
+ ]
3020
+ }
3021
+ ],
3022
+ "tool_call": true,
3023
+ "structured_output": true,
3024
+ "temperature": false,
3025
+ "knowledge": "2026-01-31",
3026
+ "release_date": "2026-06-30",
3027
+ "last_updated": "2026-06-30",
3028
+ "modalities": {
3029
+ "input": [
3030
+ "text",
3031
+ "image",
3032
+ "pdf"
3033
+ ],
3034
+ "output": [
3035
+ "text"
3036
+ ]
3037
+ },
3038
+ "open_weights": false,
3039
+ "limit": {
3040
+ "context": 1000000,
3041
+ "output": 128000
3042
+ },
3043
+ "cost": {
3044
+ "input": 2,
3045
+ "output": 10,
3046
+ "cache_read": 0.2,
3047
+ "cache_write": 2.5
3048
+ }
3049
+ },
2686
3050
  "qwen.qwen3-235b-a22b-2507-v1:0": {
2687
3051
  "id": "qwen.qwen3-235b-a22b-2507-v1:0",
2688
3052
  "name": "Qwen3 235B A22B 2507",
3053
+ "description": "Qwen instruction model for multilingual chat, reasoning, and tool use",
2689
3054
  "family": "qwen",
2690
3055
  "attachment": false,
2691
3056
  "reasoning": false,
@@ -2716,6 +3081,7 @@
2716
3081
  "eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
2717
3082
  "id": "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
2718
3083
  "name": "Claude Haiku 4.5 (EU)",
3084
+ "description": "Fast Claude model for responsive assistance, classification, and lightweight agents",
2719
3085
  "family": "claude-haiku",
2720
3086
  "attachment": true,
2721
3087
  "reasoning": true,
@@ -2756,6 +3122,7 @@
2756
3122
  "openai.gpt-oss-20b-1:0": {
2757
3123
  "id": "openai.gpt-oss-20b-1:0",
2758
3124
  "name": "gpt-oss-20b",
3125
+ "description": "Open-weight GPT model for self-hosted reasoning and instruction-following workloads",
2759
3126
  "family": "gpt-oss",
2760
3127
  "attachment": false,
2761
3128
  "reasoning": true,
@@ -2795,6 +3162,7 @@
2795
3162
  "jp.anthropic.claude-opus-4-8": {
2796
3163
  "id": "jp.anthropic.claude-opus-4-8",
2797
3164
  "name": "Claude Opus 4.8 (JP)",
3165
+ "description": "Top Claude Opus tier for the hardest reasoning, coding, and long-horizon agents",
2798
3166
  "family": "claude-opus",
2799
3167
  "attachment": true,
2800
3168
  "reasoning": true,
@@ -2812,6 +3180,7 @@
2812
3180
  ],
2813
3181
  "tool_call": true,
2814
3182
  "temperature": false,
3183
+ "knowledge": "2026-01",
2815
3184
  "release_date": "2026-05-28",
2816
3185
  "last_updated": "2026-05-28",
2817
3186
  "modalities": {
@@ -2839,6 +3208,7 @@
2839
3208
  "anthropic.claude-opus-4-8": {
2840
3209
  "id": "anthropic.claude-opus-4-8",
2841
3210
  "name": "Claude Opus 4.8",
3211
+ "description": "Top Claude Opus tier for the hardest reasoning, coding, and long-horizon agents",
2842
3212
  "family": "claude-opus",
2843
3213
  "attachment": true,
2844
3214
  "reasoning": true,
@@ -2856,6 +3226,7 @@
2856
3226
  ],
2857
3227
  "tool_call": true,
2858
3228
  "temperature": false,
3229
+ "knowledge": "2026-01",
2859
3230
  "release_date": "2026-05-28",
2860
3231
  "last_updated": "2026-05-28",
2861
3232
  "modalities": {
@@ -2883,6 +3254,7 @@
2883
3254
  "qwen.qwen3-coder-30b-a3b-v1:0": {
2884
3255
  "id": "qwen.qwen3-coder-30b-a3b-v1:0",
2885
3256
  "name": "Qwen3 Coder 30B A3B Instruct",
3257
+ "description": "Qwen coding model for software agents, repository edits, and code reasoning",
2886
3258
  "family": "qwen",
2887
3259
  "attachment": false,
2888
3260
  "reasoning": false,
@@ -2913,6 +3285,7 @@
2913
3285
  "qwen.qwen3-next-80b-a3b": {
2914
3286
  "id": "qwen.qwen3-next-80b-a3b",
2915
3287
  "name": "Qwen/Qwen3-Next-80B-A3B-Instruct",
3288
+ "description": "Qwen instruction model for multilingual chat, reasoning, and tool use",
2916
3289
  "family": "qwen",
2917
3290
  "attachment": false,
2918
3291
  "reasoning": false,
@@ -2942,6 +3315,7 @@
2942
3315
  "openai.gpt-5.5": {
2943
3316
  "id": "openai.gpt-5.5",
2944
3317
  "name": "GPT-5.5",
3318
+ "description": "Default frontier GPT for coding, computer use, research, and knowledge work",
2945
3319
  "family": "gpt",
2946
3320
  "attachment": true,
2947
3321
  "reasoning": true,
@@ -2992,6 +3366,7 @@
2992
3366
  "au.anthropic.claude-sonnet-4-6": {
2993
3367
  "id": "au.anthropic.claude-sonnet-4-6",
2994
3368
  "name": "AU Anthropic Claude Sonnet 4.6",
3369
+ "description": "Balanced Claude model for coding, analysis, agent workflows, and cost control",
2995
3370
  "family": "claude-sonnet",
2996
3371
  "attachment": true,
2997
3372
  "reasoning": true,
@@ -3038,9 +3413,60 @@
3038
3413
  "cache_write": 4.125
3039
3414
  }
3040
3415
  },
3416
+ "us.anthropic.claude-sonnet-5": {
3417
+ "id": "us.anthropic.claude-sonnet-5",
3418
+ "name": "Claude Sonnet 5 (US)",
3419
+ "description": "Everyday Claude agent model for coding, planning, browsing, and general work",
3420
+ "family": "claude-sonnet",
3421
+ "attachment": true,
3422
+ "reasoning": true,
3423
+ "reasoning_options": [
3424
+ {
3425
+ "type": "toggle"
3426
+ },
3427
+ {
3428
+ "type": "effort",
3429
+ "values": [
3430
+ "low",
3431
+ "medium",
3432
+ "high",
3433
+ "xhigh",
3434
+ "max"
3435
+ ]
3436
+ }
3437
+ ],
3438
+ "tool_call": true,
3439
+ "structured_output": true,
3440
+ "temperature": false,
3441
+ "knowledge": "2026-01-31",
3442
+ "release_date": "2026-06-30",
3443
+ "last_updated": "2026-06-30",
3444
+ "modalities": {
3445
+ "input": [
3446
+ "text",
3447
+ "image",
3448
+ "pdf"
3449
+ ],
3450
+ "output": [
3451
+ "text"
3452
+ ]
3453
+ },
3454
+ "open_weights": false,
3455
+ "limit": {
3456
+ "context": 1000000,
3457
+ "output": 128000
3458
+ },
3459
+ "cost": {
3460
+ "input": 2,
3461
+ "output": 10,
3462
+ "cache_read": 0.2,
3463
+ "cache_write": 2.5
3464
+ }
3465
+ },
3041
3466
  "us.anthropic.claude-opus-4-5-20251101-v1:0": {
3042
3467
  "id": "us.anthropic.claude-opus-4-5-20251101-v1:0",
3043
3468
  "name": "Claude Opus 4.5 (US)",
3469
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
3044
3470
  "family": "claude-opus",
3045
3471
  "attachment": true,
3046
3472
  "reasoning": true,
@@ -3089,6 +3515,7 @@
3089
3515
  "minimax.minimax-m2.5": {
3090
3516
  "id": "minimax.minimax-m2.5",
3091
3517
  "name": "MiniMax M2.5",
3518
+ "description": "MiniMax model for chat, coding, office work, and agentic tasks",
3092
3519
  "family": "minimax",
3093
3520
  "attachment": false,
3094
3521
  "reasoning": true,
@@ -3119,6 +3546,7 @@
3119
3546
  "eu.anthropic.claude-opus-4-8": {
3120
3547
  "id": "eu.anthropic.claude-opus-4-8",
3121
3548
  "name": "Claude Opus 4.8 (EU)",
3549
+ "description": "Top Claude Opus tier for the hardest reasoning, coding, and long-horizon agents",
3122
3550
  "family": "claude-opus",
3123
3551
  "attachment": true,
3124
3552
  "reasoning": true,
@@ -3136,6 +3564,7 @@
3136
3564
  ],
3137
3565
  "tool_call": true,
3138
3566
  "temperature": false,
3567
+ "knowledge": "2026-01",
3139
3568
  "release_date": "2026-05-28",
3140
3569
  "last_updated": "2026-05-28",
3141
3570
  "modalities": {
@@ -3163,6 +3592,7 @@
3163
3592
  "eu.anthropic.claude-opus-4-7": {
3164
3593
  "id": "eu.anthropic.claude-opus-4-7",
3165
3594
  "name": "Claude Opus 4.7 (EU)",
3595
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
3166
3596
  "family": "claude-opus",
3167
3597
  "attachment": true,
3168
3598
  "reasoning": true,
@@ -3208,6 +3638,7 @@
3208
3638
  "meta.llama3-1-8b-instruct-v1:0": {
3209
3639
  "id": "meta.llama3-1-8b-instruct-v1:0",
3210
3640
  "name": "Llama 3.1 8B Instruct",
3641
+ "description": "Open Llama instruction model for multilingual chat, reasoning, and coding",
3211
3642
  "family": "llama",
3212
3643
  "attachment": false,
3213
3644
  "reasoning": false,
@@ -3237,6 +3668,7 @@
3237
3668
  "us.anthropic.claude-opus-4-1-20250805-v1:0": {
3238
3669
  "id": "us.anthropic.claude-opus-4-1-20250805-v1:0",
3239
3670
  "name": "Claude Opus 4.1 (US)",
3671
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
3240
3672
  "family": "claude-opus",
3241
3673
  "attachment": true,
3242
3674
  "reasoning": true,
@@ -3276,6 +3708,7 @@
3276
3708
  "meta.llama4-maverick-17b-instruct-v1:0": {
3277
3709
  "id": "meta.llama4-maverick-17b-instruct-v1:0",
3278
3710
  "name": "Llama 4 Maverick 17B Instruct",
3711
+ "description": "Open multimodal Llama model for strong reasoning and fast responses",
3279
3712
  "family": "llama",
3280
3713
  "attachment": true,
3281
3714
  "reasoning": false,
@@ -3306,6 +3739,7 @@
3306
3739
  "global.anthropic.claude-opus-4-5-20251101-v1:0": {
3307
3740
  "id": "global.anthropic.claude-opus-4-5-20251101-v1:0",
3308
3741
  "name": "Claude Opus 4.5 (Global)",
3742
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
3309
3743
  "family": "claude-opus",
3310
3744
  "attachment": true,
3311
3745
  "reasoning": true,
@@ -3354,6 +3788,7 @@
3354
3788
  "nvidia.nemotron-super-3-120b": {
3355
3789
  "id": "nvidia.nemotron-super-3-120b",
3356
3790
  "name": "NVIDIA Nemotron 3 Super 120B A12B",
3791
+ "description": "Nemotron middle tier for collaborative agents and high-volume reasoning workloads",
3357
3792
  "family": "nemotron",
3358
3793
  "attachment": false,
3359
3794
  "reasoning": true,
@@ -3381,9 +3816,60 @@
3381
3816
  "output": 0.65
3382
3817
  }
3383
3818
  },
3819
+ "eu.anthropic.claude-sonnet-5": {
3820
+ "id": "eu.anthropic.claude-sonnet-5",
3821
+ "name": "Claude Sonnet 5 (EU)",
3822
+ "description": "Everyday Claude agent model for coding, planning, browsing, and general work",
3823
+ "family": "claude-sonnet",
3824
+ "attachment": true,
3825
+ "reasoning": true,
3826
+ "reasoning_options": [
3827
+ {
3828
+ "type": "toggle"
3829
+ },
3830
+ {
3831
+ "type": "effort",
3832
+ "values": [
3833
+ "low",
3834
+ "medium",
3835
+ "high",
3836
+ "xhigh",
3837
+ "max"
3838
+ ]
3839
+ }
3840
+ ],
3841
+ "tool_call": true,
3842
+ "structured_output": true,
3843
+ "temperature": false,
3844
+ "knowledge": "2026-01-31",
3845
+ "release_date": "2026-06-30",
3846
+ "last_updated": "2026-06-30",
3847
+ "modalities": {
3848
+ "input": [
3849
+ "text",
3850
+ "image",
3851
+ "pdf"
3852
+ ],
3853
+ "output": [
3854
+ "text"
3855
+ ]
3856
+ },
3857
+ "open_weights": false,
3858
+ "limit": {
3859
+ "context": 1000000,
3860
+ "output": 128000
3861
+ },
3862
+ "cost": {
3863
+ "input": 2.2,
3864
+ "output": 11,
3865
+ "cache_read": 0.22,
3866
+ "cache_write": 2.75
3867
+ }
3868
+ },
3384
3869
  "nvidia.nemotron-nano-3-30b": {
3385
3870
  "id": "nvidia.nemotron-nano-3-30b",
3386
3871
  "name": "NVIDIA Nemotron Nano 3 30B",
3872
+ "description": "Small Nemotron 3 MoE for efficient coding, math, and long-context agents",
3387
3873
  "family": "nemotron",
3388
3874
  "attachment": false,
3389
3875
  "reasoning": true,
@@ -3414,6 +3900,7 @@
3414
3900
  "eu.anthropic.claude-opus-4-5-20251101-v1:0": {
3415
3901
  "id": "eu.anthropic.claude-opus-4-5-20251101-v1:0",
3416
3902
  "name": "Claude Opus 4.5 (EU)",
3903
+ "description": "Flagship Claude model for deep reasoning, coding, and long-horizon agents",
3417
3904
  "family": "claude-opus",
3418
3905
  "attachment": true,
3419
3906
  "reasoning": true,
@@ -3462,6 +3949,7 @@
3462
3949
  "global.anthropic.claude-opus-4-6-v1": {
3463
3950
  "id": "global.anthropic.claude-opus-4-6-v1",
3464
3951
  "name": "Claude Opus 4.6 (Global)",
3952
+ "description": "High-end Claude for difficult coding, planning, and slower expert reasoning",
3465
3953
  "family": "claude-opus",
3466
3954
  "attachment": true,
3467
3955
  "reasoning": true,
@@ -3511,6 +3999,7 @@
3511
3999
  "us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
3512
4000
  "id": "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
3513
4001
  "name": "Claude Sonnet 4.5 (US)",
4002
+ "description": "Balanced Claude model for coding, analysis, agent workflows, and cost control",
3514
4003
  "family": "claude-sonnet",
3515
4004
  "attachment": true,
3516
4005
  "reasoning": true,
@@ -3551,6 +4040,7 @@
3551
4040
  "google.gemma-3-12b-it": {
3552
4041
  "id": "google.gemma-3-12b-it",
3553
4042
  "name": "Google Gemma 3 12B",
4043
+ "description": "Open Gemma instruction model for efficient chat and self-hosted deployments",
3554
4044
  "family": "gemma",
3555
4045
  "attachment": false,
3556
4046
  "reasoning": false,
@@ -3582,6 +4072,7 @@
3582
4072
  "minimax.minimax-m2.1": {
3583
4073
  "id": "minimax.minimax-m2.1",
3584
4074
  "name": "MiniMax M2.1",
4075
+ "description": "MiniMax model for chat, coding, office work, and agentic tasks",
3585
4076
  "family": "minimax",
3586
4077
  "attachment": false,
3587
4078
  "reasoning": true,
@@ -3612,6 +4103,7 @@
3612
4103
  "eu.anthropic.claude-fable-5": {
3613
4104
  "id": "eu.anthropic.claude-fable-5",
3614
4105
  "name": "Claude Fable 5 (EU)",
4106
+ "description": "Claude model for creative writing, analysis, and controlled agent workflows",
3615
4107
  "family": "claude-fable",
3616
4108
  "attachment": true,
3617
4109
  "reasoning": true,
@@ -3635,7 +4127,8 @@
3635
4127
  "modalities": {
3636
4128
  "input": [
3637
4129
  "text",
3638
- "image"
4130
+ "image",
4131
+ "pdf"
3639
4132
  ],
3640
4133
  "output": [
3641
4134
  "text"
@@ -3656,6 +4149,7 @@
3656
4149
  "deepseek.v3.2": {
3657
4150
  "id": "deepseek.v3.2",
3658
4151
  "name": "DeepSeek-V3.2",
4152
+ "description": "DeepSeek chat model for instruction following, coding, and analysis",
3659
4153
  "family": "deepseek",
3660
4154
  "attachment": false,
3661
4155
  "reasoning": true,
@@ -3687,6 +4181,7 @@
3687
4181
  "mistral.ministral-3-14b-instruct": {
3688
4182
  "id": "mistral.ministral-3-14b-instruct",
3689
4183
  "name": "Ministral 14B 3.0",
4184
+ "description": "Compact Mistral model for edge, latency-sensitive, and cost-efficient workloads",
3690
4185
  "family": "ministral",
3691
4186
  "attachment": false,
3692
4187
  "reasoning": false,