@desplega.ai/agent-swarm 1.92.2 → 1.93.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. package/openapi.json +63 -3
  2. package/package.json +5 -5
  3. package/src/be/db.ts +91 -6
  4. package/src/be/memory/boot-reembed.ts +0 -1
  5. package/src/be/memory/providers/sqlite-store.ts +42 -25
  6. package/src/be/memory/raters/llm-client.ts +12 -5
  7. package/src/be/memory/types.ts +3 -0
  8. package/src/be/migrations/088_script_runs_list_indexes.sql +10 -0
  9. package/src/be/migrations/089_harness_variant.sql +2 -0
  10. package/src/be/modelsdev-cache.json +1222 -986
  11. package/src/be/seed-pricing.ts +1 -0
  12. package/src/be/seed-scripts/catalog/boot-triage.inline.ts +221 -0
  13. package/src/be/seed-scripts/catalog/catalog-report.inline.ts +457 -0
  14. package/src/be/seed-scripts/catalog/compound-insights.inline.ts +863 -0
  15. package/src/be/seed-scripts/catalog/ops-catalog-audit.inline.ts +506 -0
  16. package/src/be/seed-scripts/index.ts +5 -5
  17. package/src/be/skill-sync.ts +28 -179
  18. package/src/commands/runner.ts +124 -7
  19. package/src/http/api-keys.ts +42 -0
  20. package/src/http/mcp-bridge.ts +1 -1
  21. package/src/http/memory.ts +23 -24
  22. package/src/http/tasks.ts +10 -6
  23. package/src/providers/claude-adapter.ts +33 -1
  24. package/src/providers/claude-managed-adapter.ts +3 -0
  25. package/src/providers/claude-managed-models.ts +7 -0
  26. package/src/providers/codex-adapter.ts +8 -1
  27. package/src/providers/codex-models.ts +1 -0
  28. package/src/providers/codex-oauth/auth-json.ts +1 -0
  29. package/src/providers/harness-version.ts +7 -0
  30. package/src/providers/opencode-adapter.ts +11 -4
  31. package/src/providers/pi-mono-adapter.ts +12 -2
  32. package/src/providers/types.ts +2 -0
  33. package/src/scripts-runtime/egress-secrets.ts +83 -0
  34. package/src/scripts-runtime/eval-harness.ts +4 -0
  35. package/src/scripts-runtime/executors/types.ts +7 -0
  36. package/src/scripts-runtime/loader.ts +2 -0
  37. package/src/server-user.ts +2 -2
  38. package/src/slack/channel-join.ts +41 -0
  39. package/src/tests/additive-buffer.test.ts +0 -1
  40. package/src/tests/api-key-tracking.test.ts +113 -0
  41. package/src/tests/approval-requests.test.ts +0 -6
  42. package/src/tests/claude-managed-setup.test.ts +0 -4
  43. package/src/tests/codex-pool.test.ts +2 -6
  44. package/src/tests/http-api-integration.test.ts +4 -6
  45. package/src/tests/memory-edges.test.ts +0 -2
  46. package/src/tests/memory-rate-endpoint.test.ts +0 -2
  47. package/src/tests/memory-rater-e2e.test.ts +0 -2
  48. package/src/tests/memory-store.test.ts +19 -1
  49. package/src/tests/memory.test.ts +51 -0
  50. package/src/tests/model-control.test.ts +1 -1
  51. package/src/tests/reload-config.test.ts +33 -17
  52. package/src/tests/runner-skills-refresh.test.ts +216 -46
  53. package/src/tests/script-runs-http.test.ts +7 -1
  54. package/src/tests/scripts-runtime-secret-egress.test.ts +129 -0
  55. package/src/tests/seed-scripts.test.ts +13 -1
  56. package/src/tests/session-attach.test.ts +6 -6
  57. package/src/tests/skill-fs-writer.test.ts +250 -0
  58. package/src/tests/slack-attachments-block.test.ts +0 -1
  59. package/src/tests/slack-blocks.test.ts +0 -1
  60. package/src/tests/slack-channel-join.test.ts +80 -0
  61. package/src/tests/slack-identity-resolution.test.ts +0 -1
  62. package/src/tests/structured-output.test.ts +0 -2
  63. package/src/tests/use-dismissible-card.test.ts +0 -4
  64. package/src/tools/schedules/create-schedule.ts +2 -2
  65. package/src/tools/schedules/update-schedule.ts +1 -1
  66. package/src/tools/send-task.ts +2 -2
  67. package/src/tools/slack-post.ts +18 -15
  68. package/src/tools/slack-read.ts +9 -11
  69. package/src/tools/slack-reply.ts +18 -15
  70. package/src/tools/slack-start-thread.ts +17 -14
  71. package/src/tools/task-action.ts +2 -2
  72. package/src/types.ts +11 -0
  73. package/src/utils/context-window.ts +3 -0
  74. package/src/utils/credentials.ts +22 -2
  75. package/src/utils/skill-fs-writer.ts +220 -0
  76. package/src/utils/skills-refresh.ts +123 -40
@@ -30249,6 +30249,7 @@
30249
30249
  "family": "deepseek-thinking",
30250
30250
  "attachment": false,
30251
30251
  "reasoning": true,
30252
+ "reasoning_options": [],
30252
30253
  "tool_call": true,
30253
30254
  "structured_output": true,
30254
30255
  "temperature": true,
@@ -30311,6 +30312,11 @@
30311
30312
  "family": "deepseek",
30312
30313
  "attachment": false,
30313
30314
  "reasoning": true,
30315
+ "reasoning_options": [
30316
+ {
30317
+ "type": "toggle"
30318
+ }
30319
+ ],
30314
30320
  "tool_call": true,
30315
30321
  "interleaved": {
30316
30322
  "field": "reasoning_content"
@@ -30343,6 +30349,7 @@
30343
30349
  "name": "DeepSeek R1 (Turbo)\t",
30344
30350
  "attachment": false,
30345
30351
  "reasoning": true,
30352
+ "reasoning_options": [],
30346
30353
  "tool_call": true,
30347
30354
  "temperature": true,
30348
30355
  "release_date": "2025-03-05",
@@ -30398,6 +30405,7 @@
30398
30405
  "family": "deepseek-thinking",
30399
30406
  "attachment": false,
30400
30407
  "reasoning": true,
30408
+ "reasoning_options": [],
30401
30409
  "tool_call": false,
30402
30410
  "structured_output": true,
30403
30411
  "temperature": true,
@@ -30427,6 +30435,11 @@
30427
30435
  "family": "deepseek",
30428
30436
  "attachment": false,
30429
30437
  "reasoning": true,
30438
+ "reasoning_options": [
30439
+ {
30440
+ "type": "toggle"
30441
+ }
30442
+ ],
30430
30443
  "tool_call": true,
30431
30444
  "structured_output": true,
30432
30445
  "temperature": true,
@@ -30456,6 +30469,7 @@
30456
30469
  "name": "DeepSeek R1 0528 Qwen3 8B",
30457
30470
  "attachment": false,
30458
30471
  "reasoning": true,
30472
+ "reasoning_options": [],
30459
30473
  "tool_call": false,
30460
30474
  "temperature": true,
30461
30475
  "release_date": "2025-05-29",
@@ -30568,6 +30582,21 @@
30568
30582
  "family": "deepseek-flash",
30569
30583
  "attachment": false,
30570
30584
  "reasoning": true,
30585
+ "reasoning_options": [
30586
+ {
30587
+ "type": "toggle"
30588
+ },
30589
+ {
30590
+ "type": "effort",
30591
+ "values": [
30592
+ "minimal",
30593
+ "low",
30594
+ "medium",
30595
+ "high",
30596
+ "xhigh"
30597
+ ]
30598
+ }
30599
+ ],
30571
30600
  "tool_call": true,
30572
30601
  "interleaved": {
30573
30602
  "field": "reasoning_content"
@@ -30601,6 +30630,11 @@
30601
30630
  "name": "Deepseek V3.2 Exp",
30602
30631
  "attachment": false,
30603
30632
  "reasoning": true,
30633
+ "reasoning_options": [
30634
+ {
30635
+ "type": "toggle"
30636
+ }
30637
+ ],
30604
30638
  "tool_call": true,
30605
30639
  "structured_output": true,
30606
30640
  "temperature": true,
@@ -30630,6 +30664,20 @@
30630
30664
  "family": "deepseek-thinking",
30631
30665
  "attachment": false,
30632
30666
  "reasoning": true,
30667
+ "reasoning_options": [
30668
+ {
30669
+ "type": "toggle"
30670
+ },
30671
+ {
30672
+ "type": "effort",
30673
+ "values": [
30674
+ "low",
30675
+ "medium",
30676
+ "high",
30677
+ "xhigh"
30678
+ ]
30679
+ }
30680
+ ],
30633
30681
  "tool_call": true,
30634
30682
  "interleaved": {
30635
30683
  "field": "reasoning_content"
@@ -30691,6 +30739,11 @@
30691
30739
  "family": "deepseek",
30692
30740
  "attachment": false,
30693
30741
  "reasoning": true,
30742
+ "reasoning_options": [
30743
+ {
30744
+ "type": "toggle"
30745
+ }
30746
+ ],
30694
30747
  "tool_call": true,
30695
30748
  "structured_output": true,
30696
30749
  "temperature": true,
@@ -30749,6 +30802,7 @@
30749
30802
  "family": "mimo",
30750
30803
  "attachment": false,
30751
30804
  "reasoning": true,
30805
+ "reasoning_options": [],
30752
30806
  "tool_call": true,
30753
30807
  "interleaved": {
30754
30808
  "field": "reasoning_content"
@@ -30799,6 +30853,7 @@
30799
30853
  "family": "mimo",
30800
30854
  "attachment": false,
30801
30855
  "reasoning": true,
30856
+ "reasoning_options": [],
30802
30857
  "tool_call": true,
30803
30858
  "structured_output": true,
30804
30859
  "temperature": true,
@@ -30830,6 +30885,7 @@
30830
30885
  "family": "mimo",
30831
30886
  "attachment": false,
30832
30887
  "reasoning": true,
30888
+ "reasoning_options": [],
30833
30889
  "tool_call": true,
30834
30890
  "interleaved": {
30835
30891
  "field": "reasoning_content"
@@ -30880,6 +30936,11 @@
30880
30936
  "family": "glm",
30881
30937
  "attachment": false,
30882
30938
  "reasoning": true,
30939
+ "reasoning_options": [
30940
+ {
30941
+ "type": "toggle"
30942
+ }
30943
+ ],
30883
30944
  "tool_call": true,
30884
30945
  "interleaved": {
30885
30946
  "field": "reasoning_content"
@@ -30913,6 +30974,11 @@
30913
30974
  "family": "glm",
30914
30975
  "attachment": false,
30915
30976
  "reasoning": true,
30977
+ "reasoning_options": [
30978
+ {
30979
+ "type": "toggle"
30980
+ }
30981
+ ],
30916
30982
  "tool_call": true,
30917
30983
  "interleaved": {
30918
30984
  "field": "reasoning_content"
@@ -30946,6 +31012,11 @@
30946
31012
  "family": "glmv",
30947
31013
  "attachment": true,
30948
31014
  "reasoning": true,
31015
+ "reasoning_options": [
31016
+ {
31017
+ "type": "toggle"
31018
+ }
31019
+ ],
30949
31020
  "tool_call": true,
30950
31021
  "structured_output": true,
30951
31022
  "temperature": true,
@@ -30979,6 +31050,11 @@
30979
31050
  "family": "glmv",
30980
31051
  "attachment": true,
30981
31052
  "reasoning": true,
31053
+ "reasoning_options": [
31054
+ {
31055
+ "type": "toggle"
31056
+ }
31057
+ ],
30982
31058
  "tool_call": true,
30983
31059
  "structured_output": true,
30984
31060
  "temperature": true,
@@ -31012,6 +31088,11 @@
31012
31088
  "family": "glm",
31013
31089
  "attachment": false,
31014
31090
  "reasoning": true,
31091
+ "reasoning_options": [
31092
+ {
31093
+ "type": "toggle"
31094
+ }
31095
+ ],
31015
31096
  "tool_call": true,
31016
31097
  "structured_output": true,
31017
31098
  "temperature": true,
@@ -31043,6 +31124,11 @@
31043
31124
  "family": "glm",
31044
31125
  "attachment": false,
31045
31126
  "reasoning": true,
31127
+ "reasoning_options": [
31128
+ {
31129
+ "type": "toggle"
31130
+ }
31131
+ ],
31046
31132
  "tool_call": true,
31047
31133
  "interleaved": {
31048
31134
  "field": "reasoning_content"
@@ -31076,6 +31162,11 @@
31076
31162
  "family": "glm",
31077
31163
  "attachment": false,
31078
31164
  "reasoning": true,
31165
+ "reasoning_options": [
31166
+ {
31167
+ "type": "toggle"
31168
+ }
31169
+ ],
31079
31170
  "tool_call": true,
31080
31171
  "interleaved": {
31081
31172
  "field": "reasoning_content"
@@ -31136,6 +31227,11 @@
31136
31227
  "family": "glm-air",
31137
31228
  "attachment": false,
31138
31229
  "reasoning": true,
31230
+ "reasoning_options": [
31231
+ {
31232
+ "type": "toggle"
31233
+ }
31234
+ ],
31139
31235
  "tool_call": true,
31140
31236
  "temperature": true,
31141
31237
  "knowledge": "2025-04",
@@ -31165,6 +31261,11 @@
31165
31261
  "family": "glm",
31166
31262
  "attachment": false,
31167
31263
  "reasoning": true,
31264
+ "reasoning_options": [
31265
+ {
31266
+ "type": "toggle"
31267
+ }
31268
+ ],
31168
31269
  "tool_call": true,
31169
31270
  "interleaved": {
31170
31271
  "field": "reasoning_content"
@@ -31198,6 +31299,11 @@
31198
31299
  "family": "qwen",
31199
31300
  "attachment": true,
31200
31301
  "reasoning": true,
31302
+ "reasoning_options": [
31303
+ {
31304
+ "type": "toggle"
31305
+ }
31306
+ ],
31201
31307
  "tool_call": true,
31202
31308
  "structured_output": true,
31203
31309
  "temperature": true,
@@ -31316,6 +31422,7 @@
31316
31422
  "name": "Qwen3 8B",
31317
31423
  "attachment": false,
31318
31424
  "reasoning": true,
31425
+ "reasoning_options": [],
31319
31426
  "tool_call": false,
31320
31427
  "temperature": true,
31321
31428
  "release_date": "2025-04-29",
@@ -31401,6 +31508,7 @@
31401
31508
  "name": "Qwen3 235B A22B",
31402
31509
  "attachment": false,
31403
31510
  "reasoning": true,
31511
+ "reasoning_options": [],
31404
31512
  "tool_call": false,
31405
31513
  "temperature": true,
31406
31514
  "release_date": "2025-04-29",
@@ -31458,6 +31566,7 @@
31458
31566
  "name": "Qwen3 32B",
31459
31567
  "attachment": false,
31460
31568
  "reasoning": true,
31569
+ "reasoning_options": [],
31461
31570
  "tool_call": false,
31462
31571
  "temperature": true,
31463
31572
  "release_date": "2025-04-29",
@@ -31545,6 +31654,7 @@
31545
31654
  "family": "qwen",
31546
31655
  "attachment": false,
31547
31656
  "reasoning": true,
31657
+ "reasoning_options": [],
31548
31658
  "tool_call": true,
31549
31659
  "temperature": true,
31550
31660
  "knowledge": "2025-04",
@@ -31573,6 +31683,7 @@
31573
31683
  "name": "Qwen3 4B",
31574
31684
  "attachment": false,
31575
31685
  "reasoning": true,
31686
+ "reasoning_options": [],
31576
31687
  "tool_call": false,
31577
31688
  "temperature": true,
31578
31689
  "release_date": "2025-04-29",
@@ -31601,6 +31712,11 @@
31601
31712
  "family": "qwen",
31602
31713
  "attachment": false,
31603
31714
  "reasoning": true,
31715
+ "reasoning_options": [
31716
+ {
31717
+ "type": "toggle"
31718
+ }
31719
+ ],
31604
31720
  "tool_call": true,
31605
31721
  "structured_output": true,
31606
31722
  "temperature": true,
@@ -31631,6 +31747,7 @@
31631
31747
  "name": "Qwen3 Omni 30B A3B Thinking",
31632
31748
  "attachment": true,
31633
31749
  "reasoning": true,
31750
+ "reasoning_options": [],
31634
31751
  "tool_call": true,
31635
31752
  "structured_output": true,
31636
31753
  "temperature": true,
@@ -31724,6 +31841,7 @@
31724
31841
  "name": "Qwen3 Next 80B A3B Thinking",
31725
31842
  "attachment": false,
31726
31843
  "reasoning": true,
31844
+ "reasoning_options": [],
31727
31845
  "tool_call": true,
31728
31846
  "structured_output": true,
31729
31847
  "temperature": true,
@@ -31753,6 +31871,11 @@
31753
31871
  "family": "qwen",
31754
31872
  "attachment": true,
31755
31873
  "reasoning": true,
31874
+ "reasoning_options": [
31875
+ {
31876
+ "type": "toggle"
31877
+ }
31878
+ ],
31756
31879
  "tool_call": true,
31757
31880
  "structured_output": true,
31758
31881
  "temperature": true,
@@ -31878,6 +32001,11 @@
31878
32001
  "family": "qwen",
31879
32002
  "attachment": true,
31880
32003
  "reasoning": true,
32004
+ "reasoning_options": [
32005
+ {
32006
+ "type": "toggle"
32007
+ }
32008
+ ],
31881
32009
  "tool_call": true,
31882
32010
  "structured_output": true,
31883
32011
  "temperature": true,
@@ -31908,6 +32036,7 @@
31908
32036
  "name": "Qwen3 30B A3B",
31909
32037
  "attachment": false,
31910
32038
  "reasoning": true,
32039
+ "reasoning_options": [],
31911
32040
  "tool_call": false,
31912
32041
  "temperature": true,
31913
32042
  "release_date": "2025-04-29",
@@ -31936,6 +32065,11 @@
31936
32065
  "family": "qwen",
31937
32066
  "attachment": true,
31938
32067
  "reasoning": true,
32068
+ "reasoning_options": [
32069
+ {
32070
+ "type": "toggle"
32071
+ }
32072
+ ],
31939
32073
  "tool_call": true,
31940
32074
  "structured_output": true,
31941
32075
  "temperature": true,
@@ -31993,6 +32127,7 @@
31993
32127
  "name": "Qwen3 VL 235B A22B Thinking",
31994
32128
  "attachment": true,
31995
32129
  "reasoning": true,
32130
+ "reasoning_options": [],
31996
32131
  "tool_call": false,
31997
32132
  "temperature": true,
31998
32133
  "release_date": "2025-09-24",
@@ -32053,6 +32188,7 @@
32053
32188
  "family": "kimi",
32054
32189
  "attachment": false,
32055
32190
  "reasoning": true,
32191
+ "reasoning_options": [],
32056
32192
  "tool_call": true,
32057
32193
  "interleaved": {
32058
32194
  "field": "reasoning_content"
@@ -32085,7 +32221,6 @@
32085
32221
  "attachment": false,
32086
32222
  "reasoning": false,
32087
32223
  "tool_call": true,
32088
- "structured_output": true,
32089
32224
  "temperature": true,
32090
32225
  "release_date": "2025-07-11",
32091
32226
  "last_updated": "2025-07-11",
@@ -32100,7 +32235,7 @@
32100
32235
  "open_weights": true,
32101
32236
  "limit": {
32102
32237
  "context": 131072,
32103
- "output": 131072
32238
+ "output": 32768
32104
32239
  },
32105
32240
  "cost": {
32106
32241
  "input": 0.57,
@@ -32113,6 +32248,11 @@
32113
32248
  "family": "kimi-k2.6",
32114
32249
  "attachment": true,
32115
32250
  "reasoning": true,
32251
+ "reasoning_options": [
32252
+ {
32253
+ "type": "toggle"
32254
+ }
32255
+ ],
32116
32256
  "tool_call": true,
32117
32257
  "interleaved": {
32118
32258
  "field": "reasoning_content"
@@ -32179,6 +32319,11 @@
32179
32319
  "family": "kimi",
32180
32320
  "attachment": true,
32181
32321
  "reasoning": true,
32322
+ "reasoning_options": [
32323
+ {
32324
+ "type": "toggle"
32325
+ }
32326
+ ],
32182
32327
  "tool_call": true,
32183
32328
  "interleaved": {
32184
32329
  "field": "reasoning_content"
@@ -32412,6 +32557,7 @@
32412
32557
  "name": "ERNIE 4.5 VL 424B A47B",
32413
32558
  "attachment": true,
32414
32559
  "reasoning": true,
32560
+ "reasoning_options": [],
32415
32561
  "tool_call": false,
32416
32562
  "temperature": true,
32417
32563
  "release_date": "2025-06-30",
@@ -32440,6 +32586,7 @@
32440
32586
  "name": "ERNIE 4.5 VL 28B A3B",
32441
32587
  "attachment": true,
32442
32588
  "reasoning": true,
32589
+ "reasoning_options": [],
32443
32590
  "tool_call": true,
32444
32591
  "temperature": true,
32445
32592
  "release_date": "2025-06-30",
@@ -32526,6 +32673,7 @@
32526
32673
  "family": "ernie",
32527
32674
  "attachment": false,
32528
32675
  "reasoning": true,
32676
+ "reasoning_options": [],
32529
32677
  "tool_call": false,
32530
32678
  "temperature": true,
32531
32679
  "knowledge": "2025-03",
@@ -32554,6 +32702,7 @@
32554
32702
  "name": "ERNIE-4.5-VL-28B-A3B-Thinking",
32555
32703
  "attachment": true,
32556
32704
  "reasoning": true,
32705
+ "reasoning_options": [],
32557
32706
  "tool_call": true,
32558
32707
  "structured_output": true,
32559
32708
  "temperature": true,
@@ -32585,6 +32734,7 @@
32585
32734
  "family": "minimax",
32586
32735
  "attachment": false,
32587
32736
  "reasoning": true,
32737
+ "reasoning_options": [],
32588
32738
  "tool_call": true,
32589
32739
  "temperature": true,
32590
32740
  "release_date": "2025-06-17",
@@ -32726,6 +32876,7 @@
32726
32876
  "family": "ring",
32727
32877
  "attachment": false,
32728
32878
  "reasoning": true,
32879
+ "reasoning_options": [],
32729
32880
  "tool_call": true,
32730
32881
  "structured_output": true,
32731
32882
  "temperature": true,
@@ -32894,6 +33045,11 @@
32894
33045
  "family": "gemma",
32895
33046
  "attachment": true,
32896
33047
  "reasoning": true,
33048
+ "reasoning_options": [
33049
+ {
33050
+ "type": "toggle"
33051
+ }
33052
+ ],
32897
33053
  "tool_call": true,
32898
33054
  "structured_output": true,
32899
33055
  "temperature": true,
@@ -32982,6 +33138,11 @@
32982
33138
  "family": "gemma",
32983
33139
  "attachment": true,
32984
33140
  "reasoning": true,
33141
+ "reasoning_options": [
33142
+ {
33143
+ "type": "toggle"
33144
+ }
33145
+ ],
32985
33146
  "tool_call": true,
32986
33147
  "structured_output": true,
32987
33148
  "temperature": true,
@@ -33011,6 +33172,16 @@
33011
33172
  "name": "OpenAI GPT OSS 120B",
33012
33173
  "attachment": true,
33013
33174
  "reasoning": true,
33175
+ "reasoning_options": [
33176
+ {
33177
+ "type": "effort",
33178
+ "values": [
33179
+ "low",
33180
+ "medium",
33181
+ "high"
33182
+ ]
33183
+ }
33184
+ ],
33014
33185
  "tool_call": true,
33015
33186
  "structured_output": true,
33016
33187
  "temperature": true,
@@ -33040,6 +33211,16 @@
33040
33211
  "name": "OpenAI: GPT OSS 20B",
33041
33212
  "attachment": true,
33042
33213
  "reasoning": true,
33214
+ "reasoning_options": [
33215
+ {
33216
+ "type": "effort",
33217
+ "values": [
33218
+ "low",
33219
+ "medium",
33220
+ "high"
33221
+ ]
33222
+ }
33223
+ ],
33043
33224
  "tool_call": false,
33044
33225
  "structured_output": true,
33045
33226
  "temperature": true,
@@ -33100,6 +33281,7 @@
33100
33281
  "family": "minimax",
33101
33282
  "attachment": false,
33102
33283
  "reasoning": true,
33284
+ "reasoning_options": [],
33103
33285
  "tool_call": true,
33104
33286
  "structured_output": true,
33105
33287
  "temperature": true,
@@ -33164,6 +33346,7 @@
33164
33346
  "family": "minimax-m2.7",
33165
33347
  "attachment": false,
33166
33348
  "reasoning": true,
33349
+ "reasoning_options": [],
33167
33350
  "tool_call": true,
33168
33351
  "interleaved": {
33169
33352
  "field": "reasoning_content"
@@ -33197,6 +33380,7 @@
33197
33380
  "family": "minimax",
33198
33381
  "attachment": false,
33199
33382
  "reasoning": true,
33383
+ "reasoning_options": [],
33200
33384
  "tool_call": true,
33201
33385
  "interleaved": {
33202
33386
  "field": "reasoning_content"
@@ -33229,6 +33413,7 @@
33229
33413
  "family": "minimax",
33230
33414
  "attachment": false,
33231
33415
  "reasoning": true,
33416
+ "reasoning_options": [],
33232
33417
  "tool_call": true,
33233
33418
  "interleaved": {
33234
33419
  "field": "reasoning_content"
@@ -33262,6 +33447,7 @@
33262
33447
  "family": "minimax-m2.5",
33263
33448
  "attachment": false,
33264
33449
  "reasoning": true,
33450
+ "reasoning_options": [],
33265
33451
  "tool_call": true,
33266
33452
  "interleaved": {
33267
33453
  "field": "reasoning_content"
@@ -51958,56 +52144,28 @@
51958
52144
  "cache_write": 18.75
51959
52145
  }
51960
52146
  },
51961
- "claude-3-5-haiku-latest": {
51962
- "id": "claude-3-5-haiku-latest",
51963
- "name": "Claude Haiku 3.5 (latest)",
51964
- "family": "claude-haiku",
51965
- "attachment": true,
51966
- "reasoning": false,
51967
- "tool_call": true,
51968
- "temperature": true,
51969
- "knowledge": "2024-07-31",
51970
- "release_date": "2024-10-22",
51971
- "last_updated": "2024-10-22",
51972
- "modalities": {
51973
- "input": [
51974
- "text",
51975
- "image",
51976
- "pdf"
51977
- ],
51978
- "output": [
51979
- "text"
51980
- ]
51981
- },
51982
- "open_weights": false,
51983
- "limit": {
51984
- "context": 200000,
51985
- "output": 8192
51986
- },
51987
- "cost": {
51988
- "input": 0.8,
51989
- "output": 4,
51990
- "cache_read": 0.08,
51991
- "cache_write": 1
51992
- }
51993
- },
51994
- "claude-sonnet-4-5-20250929": {
51995
- "id": "claude-sonnet-4-5-20250929",
51996
- "name": "Claude Sonnet 4.5",
51997
- "family": "claude-sonnet",
52147
+ "claude-fable-5": {
52148
+ "id": "claude-fable-5",
52149
+ "name": "Claude Fable 5",
52150
+ "family": "claude-fable",
51998
52151
  "attachment": true,
51999
52152
  "reasoning": true,
52000
52153
  "reasoning_options": [
52001
52154
  {
52002
- "type": "budget_tokens",
52003
- "min": 1024
52155
+ "type": "effort",
52156
+ "values": [
52157
+ "low",
52158
+ "medium",
52159
+ "high",
52160
+ "xhigh",
52161
+ "max"
52162
+ ]
52004
52163
  }
52005
52164
  ],
52006
52165
  "tool_call": true,
52007
- "temperature": true,
52008
- "knowledge": "2025-07-31",
52009
- "release_date": "2025-09-29",
52010
- "last_updated": "2025-09-29",
52166
+ "temperature": false,
52167
+ "release_date": "2026-06-09",
52168
+ "last_updated": "2026-06-09",
52011
52169
  "modalities": {
52012
52170
  "input": [
52013
52171
  "text",
@@ -52020,19 +52178,91 @@
52020
52178
  },
52021
52179
  "open_weights": false,
52022
52180
  "limit": {
52023
- "context": 200000,
52024
- "output": 64000
52181
+ "context": 1000000,
52182
+ "output": 128000
52025
52183
  },
52026
52184
  "cost": {
52027
- "input": 3,
52028
- "output": 15,
52029
- "cache_read": 0.3,
52030
- "cache_write": 3.75
52185
+ "input": 10,
52186
+ "output": 50,
52187
+ "cache_read": 1,
52188
+ "cache_write": 12.5
52031
52189
  }
52032
52190
  },
52033
- "claude-3-5-haiku-20241022": {
52034
- "id": "claude-3-5-haiku-20241022",
52035
- "name": "Claude Haiku 3.5",
52191
+ "claude-3-5-haiku-latest": {
52192
+ "id": "claude-3-5-haiku-latest",
52193
+ "name": "Claude Haiku 3.5 (latest)",
52194
+ "family": "claude-haiku",
52195
+ "attachment": true,
52196
+ "reasoning": false,
52197
+ "tool_call": true,
52198
+ "temperature": true,
52199
+ "knowledge": "2024-07-31",
52200
+ "release_date": "2024-10-22",
52201
+ "last_updated": "2024-10-22",
52202
+ "modalities": {
52203
+ "input": [
52204
+ "text",
52205
+ "image",
52206
+ "pdf"
52207
+ ],
52208
+ "output": [
52209
+ "text"
52210
+ ]
52211
+ },
52212
+ "open_weights": false,
52213
+ "limit": {
52214
+ "context": 200000,
52215
+ "output": 8192
52216
+ },
52217
+ "cost": {
52218
+ "input": 0.8,
52219
+ "output": 4,
52220
+ "cache_read": 0.08,
52221
+ "cache_write": 1
52222
+ }
52223
+ },
52224
+ "claude-sonnet-4-5-20250929": {
52225
+ "id": "claude-sonnet-4-5-20250929",
52226
+ "name": "Claude Sonnet 4.5",
52227
+ "family": "claude-sonnet",
52228
+ "attachment": true,
52229
+ "reasoning": true,
52230
+ "reasoning_options": [
52231
+ {
52232
+ "type": "budget_tokens",
52233
+ "min": 1024
52234
+ }
52235
+ ],
52236
+ "tool_call": true,
52237
+ "temperature": true,
52238
+ "knowledge": "2025-07-31",
52239
+ "release_date": "2025-09-29",
52240
+ "last_updated": "2025-09-29",
52241
+ "modalities": {
52242
+ "input": [
52243
+ "text",
52244
+ "image",
52245
+ "pdf"
52246
+ ],
52247
+ "output": [
52248
+ "text"
52249
+ ]
52250
+ },
52251
+ "open_weights": false,
52252
+ "limit": {
52253
+ "context": 200000,
52254
+ "output": 64000
52255
+ },
52256
+ "cost": {
52257
+ "input": 3,
52258
+ "output": 15,
52259
+ "cache_read": 0.3,
52260
+ "cache_write": 3.75
52261
+ }
52262
+ },
52263
+ "claude-3-5-haiku-20241022": {
52264
+ "id": "claude-3-5-haiku-20241022",
52265
+ "name": "Claude Haiku 3.5",
52036
52266
  "family": "claude-haiku",
52037
52267
  "attachment": true,
52038
52268
  "reasoning": false,
@@ -54013,7 +54243,7 @@
54013
54243
  "open_weights": false,
54014
54244
  "limit": {
54015
54245
  "context": 1000000,
54016
- "output": 16384
54246
+ "output": 65536
54017
54247
  },
54018
54248
  "cost": {
54019
54249
  "input": 0.5,
@@ -54028,10 +54258,16 @@
54028
54258
  "cache_write": 2.5,
54029
54259
  "tier": {
54030
54260
  "type": "context",
54031
- "size": 128000
54261
+ "size": 256000
54032
54262
  }
54033
54263
  }
54034
- ]
54264
+ ],
54265
+ "context_over_200k": {
54266
+ "input": 2,
54267
+ "output": 6,
54268
+ "cache_read": 0.2,
54269
+ "cache_write": 2.5
54270
+ }
54035
54271
  }
54036
54272
  },
54037
54273
  "qwen3.5-27b": {
@@ -54302,6 +54538,45 @@
54302
54538
  "cache_read": 0.08
54303
54539
  }
54304
54540
  },
54541
+ "mimo-v2.5-pro-ultraspeed": {
54542
+ "id": "mimo-v2.5-pro-ultraspeed",
54543
+ "name": "MiMo-V2.5-Pro-UltraSpeed",
54544
+ "family": "mimo",
54545
+ "attachment": false,
54546
+ "reasoning": true,
54547
+ "reasoning_options": [
54548
+ {
54549
+ "type": "toggle"
54550
+ }
54551
+ ],
54552
+ "tool_call": true,
54553
+ "interleaved": {
54554
+ "field": "reasoning_content"
54555
+ },
54556
+ "temperature": true,
54557
+ "knowledge": "2024-12",
54558
+ "release_date": "2026-06-08",
54559
+ "last_updated": "2026-06-09",
54560
+ "modalities": {
54561
+ "input": [
54562
+ "text"
54563
+ ],
54564
+ "output": [
54565
+ "text"
54566
+ ]
54567
+ },
54568
+ "open_weights": true,
54569
+ "limit": {
54570
+ "context": 1048576,
54571
+ "output": 131072
54572
+ },
54573
+ "status": "beta",
54574
+ "cost": {
54575
+ "input": 1.305,
54576
+ "output": 2.61,
54577
+ "cache_read": 0.0108
54578
+ }
54579
+ },
54305
54580
  "mimo-v2-pro": {
54306
54581
  "id": "mimo-v2-pro",
54307
54582
  "name": "MiMo-V2-Pro",
@@ -62775,6 +63050,92 @@
62775
63050
  "output": 4000
62776
63051
  }
62777
63052
  },
63053
+ "command-a-plus-05-2026": {
63054
+ "id": "command-a-plus-05-2026",
63055
+ "name": "Command A Plus",
63056
+ "family": "command-a",
63057
+ "attachment": true,
63058
+ "reasoning": true,
63059
+ "reasoning_options": [
63060
+ {
63061
+ "type": "toggle"
63062
+ },
63063
+ {
63064
+ "type": "budget_tokens",
63065
+ "min": 1
63066
+ }
63067
+ ],
63068
+ "tool_call": true,
63069
+ "structured_output": true,
63070
+ "temperature": true,
63071
+ "knowledge": "2025-04-01",
63072
+ "release_date": "2026-05-20",
63073
+ "last_updated": "2026-06-09",
63074
+ "modalities": {
63075
+ "input": [
63076
+ "text",
63077
+ "image"
63078
+ ],
63079
+ "output": [
63080
+ "text"
63081
+ ]
63082
+ },
63083
+ "open_weights": true,
63084
+ "limit": {
63085
+ "context": 128000,
63086
+ "output": 64000
63087
+ },
63088
+ "cost": {
63089
+ "input": 2.5,
63090
+ "output": 10
63091
+ }
63092
+ },
63093
+ "north-mini-code-1-0": {
63094
+ "id": "north-mini-code-1-0",
63095
+ "name": "North Mini Code",
63096
+ "family": "north",
63097
+ "attachment": false,
63098
+ "reasoning": true,
63099
+ "reasoning_options": [
63100
+ {
63101
+ "type": "effort",
63102
+ "values": [
63103
+ "none",
63104
+ "high"
63105
+ ]
63106
+ }
63107
+ ],
63108
+ "tool_call": true,
63109
+ "interleaved": {
63110
+ "field": "reasoning_content"
63111
+ },
63112
+ "structured_output": true,
63113
+ "temperature": true,
63114
+ "knowledge": "2025-09-23",
63115
+ "release_date": "2026-06-09",
63116
+ "last_updated": "2026-06-09",
63117
+ "modalities": {
63118
+ "input": [
63119
+ "text"
63120
+ ],
63121
+ "output": [
63122
+ "text"
63123
+ ]
63124
+ },
63125
+ "open_weights": true,
63126
+ "limit": {
63127
+ "context": 256000,
63128
+ "output": 64000
63129
+ },
63130
+ "provider": {
63131
+ "npm": "@ai-sdk/openai-compatible",
63132
+ "api": "https://api.cohere.ai/compatibility/v1"
63133
+ },
63134
+ "cost": {
63135
+ "input": 0,
63136
+ "output": 0
63137
+ }
63138
+ },
62778
63139
  "command-r-08-2024": {
62779
63140
  "id": "command-r-08-2024",
62780
63141
  "name": "Command R",
@@ -66280,36 +66641,6 @@
66280
66641
  "cache_read": 0.06
66281
66642
  }
66282
66643
  },
66283
- "z-ai/glm-4.5-air:free": {
66284
- "id": "z-ai/glm-4.5-air:free",
66285
- "name": "GLM 4.5 Air (free)",
66286
- "family": "glm-air",
66287
- "attachment": false,
66288
- "reasoning": true,
66289
- "tool_call": true,
66290
- "structured_output": false,
66291
- "temperature": true,
66292
- "knowledge": "2025-04",
66293
- "release_date": "2025-07-28",
66294
- "last_updated": "2025-07-28",
66295
- "modalities": {
66296
- "input": [
66297
- "text"
66298
- ],
66299
- "output": [
66300
- "text"
66301
- ]
66302
- },
66303
- "open_weights": true,
66304
- "limit": {
66305
- "context": 131072,
66306
- "output": 96000
66307
- },
66308
- "cost": {
66309
- "input": 0,
66310
- "output": 0
66311
- }
66312
- },
66313
66644
  "z-ai/glm-4.6": {
66314
66645
  "id": "z-ai/glm-4.6",
66315
66646
  "name": "GLM-4.6",
@@ -66375,36 +66706,6 @@
66375
66706
  "cache_read": 0.08
66376
66707
  }
66377
66708
  },
66378
- "z-ai/glm-4-32b": {
66379
- "id": "z-ai/glm-4-32b",
66380
- "name": "GLM 4 32B ",
66381
- "family": "glm",
66382
- "attachment": false,
66383
- "reasoning": false,
66384
- "tool_call": true,
66385
- "structured_output": false,
66386
- "temperature": true,
66387
- "knowledge": "2024-06-30",
66388
- "release_date": "2025-07-24",
66389
- "last_updated": "2025-07-24",
66390
- "modalities": {
66391
- "input": [
66392
- "text"
66393
- ],
66394
- "output": [
66395
- "text"
66396
- ]
66397
- },
66398
- "open_weights": false,
66399
- "limit": {
66400
- "context": 128000,
66401
- "output": 128000
66402
- },
66403
- "cost": {
66404
- "input": 0.1,
66405
- "output": 0.1
66406
- }
66407
- },
66408
66709
  "z-ai/glm-4.5v": {
66409
66710
  "id": "z-ai/glm-4.5v",
66410
66711
  "name": "GLM-4.5V",
@@ -66462,12 +66763,12 @@
66462
66763
  "open_weights": true,
66463
66764
  "limit": {
66464
66765
  "context": 131072,
66465
- "output": 24000
66766
+ "output": 32768
66466
66767
  },
66467
66768
  "cost": {
66468
66769
  "input": 0.3,
66469
66770
  "output": 0.9,
66470
- "cache_read": 0.05
66771
+ "cache_read": 0.055
66471
66772
  }
66472
66773
  },
66473
66774
  "z-ai/glm-4.7-flash": {
@@ -66504,41 +66805,6 @@
66504
66805
  "cache_read": 0.01
66505
66806
  }
66506
66807
  },
66507
- "z-ai/glm-5v-turbo": {
66508
- "id": "z-ai/glm-5v-turbo",
66509
- "name": "GLM-5V-Turbo",
66510
- "family": "glm",
66511
- "attachment": true,
66512
- "reasoning": true,
66513
- "tool_call": true,
66514
- "interleaved": {
66515
- "field": "reasoning_content"
66516
- },
66517
- "structured_output": false,
66518
- "temperature": true,
66519
- "release_date": "2026-04-01",
66520
- "last_updated": "2026-04-01",
66521
- "modalities": {
66522
- "input": [
66523
- "image",
66524
- "text",
66525
- "video"
66526
- ],
66527
- "output": [
66528
- "text"
66529
- ]
66530
- },
66531
- "open_weights": false,
66532
- "limit": {
66533
- "context": 202752,
66534
- "output": 131072
66535
- },
66536
- "cost": {
66537
- "input": 1.2,
66538
- "output": 4,
66539
- "cache_read": 0.24
66540
- }
66541
- },
66542
66808
  "z-ai/glm-5": {
66543
66809
  "id": "z-ai/glm-5",
66544
66810
  "name": "GLM-5",
@@ -66596,7 +66862,7 @@
66596
66862
  },
66597
66863
  "open_weights": false,
66598
66864
  "limit": {
66599
- "context": 202752,
66865
+ "context": 262144,
66600
66866
  "output": 131072
66601
66867
  },
66602
66868
  "cost": {
@@ -68675,6 +68941,40 @@
68675
68941
  "cache_write": 0.3
68676
68942
  }
68677
68943
  },
68944
+ "anthropic/claude-fable-5": {
68945
+ "id": "anthropic/claude-fable-5",
68946
+ "name": "Claude Fable 5",
68947
+ "family": "claude-fable",
68948
+ "attachment": true,
68949
+ "reasoning": true,
68950
+ "tool_call": true,
68951
+ "structured_output": true,
68952
+ "temperature": false,
68953
+ "knowledge": "2026-01-31",
68954
+ "release_date": "2026-06-09",
68955
+ "last_updated": "2026-06-09",
68956
+ "modalities": {
68957
+ "input": [
68958
+ "text",
68959
+ "image",
68960
+ "pdf"
68961
+ ],
68962
+ "output": [
68963
+ "text"
68964
+ ]
68965
+ },
68966
+ "open_weights": false,
68967
+ "limit": {
68968
+ "context": 1000000,
68969
+ "output": 128000
68970
+ },
68971
+ "cost": {
68972
+ "input": 10,
68973
+ "output": 50,
68974
+ "cache_read": 1,
68975
+ "cache_write": 12.5
68976
+ }
68977
+ },
68678
68978
  "anthropic/claude-opus-4.6-fast": {
68679
68979
  "id": "anthropic/claude-opus-4.6-fast",
68680
68980
  "name": "Claude Opus 4.6 (Fast)",
@@ -72642,35 +72942,6 @@
72642
72942
  "cache_read": 0.06
72643
72943
  }
72644
72944
  },
72645
- "arcee-ai/maestro-reasoning": {
72646
- "id": "arcee-ai/maestro-reasoning",
72647
- "name": "Maestro Reasoning",
72648
- "attachment": false,
72649
- "reasoning": false,
72650
- "tool_call": false,
72651
- "structured_output": false,
72652
- "temperature": true,
72653
- "knowledge": "2025-03-31",
72654
- "release_date": "2025-05-05",
72655
- "last_updated": "2025-05-05",
72656
- "modalities": {
72657
- "input": [
72658
- "text"
72659
- ],
72660
- "output": [
72661
- "text"
72662
- ]
72663
- },
72664
- "open_weights": false,
72665
- "limit": {
72666
- "context": 131072,
72667
- "output": 32000
72668
- },
72669
- "cost": {
72670
- "input": 0.9,
72671
- "output": 3.3
72672
- }
72673
- },
72674
72945
  "arcee-ai/coder-large": {
72675
72946
  "id": "arcee-ai/coder-large",
72676
72947
  "name": "Coder Large",
@@ -76776,6 +77047,39 @@
76776
77047
  "cache_write": 1.25
76777
77048
  }
76778
77049
  },
77050
+ "~anthropic/claude-fable-latest": {
77051
+ "id": "~anthropic/claude-fable-latest",
77052
+ "name": "Claude Fable Latest",
77053
+ "family": "claude-fable",
77054
+ "attachment": true,
77055
+ "reasoning": true,
77056
+ "tool_call": true,
77057
+ "structured_output": true,
77058
+ "temperature": false,
77059
+ "release_date": "2026-06-09",
77060
+ "last_updated": "2026-06-09",
77061
+ "modalities": {
77062
+ "input": [
77063
+ "text",
77064
+ "image",
77065
+ "pdf"
77066
+ ],
77067
+ "output": [
77068
+ "text"
77069
+ ]
77070
+ },
77071
+ "open_weights": false,
77072
+ "limit": {
77073
+ "context": 1000000,
77074
+ "output": 128000
77075
+ },
77076
+ "cost": {
77077
+ "input": 10,
77078
+ "output": 50,
77079
+ "cache_read": 1,
77080
+ "cache_write": 12.5
77081
+ }
77082
+ },
76779
77083
  "~anthropic/claude-sonnet-latest": {
76780
77084
  "id": "~anthropic/claude-sonnet-latest",
76781
77085
  "name": "Anthropic Claude Sonnet Latest",
@@ -76956,12 +77260,13 @@
76956
77260
  },
76957
77261
  "open_weights": true,
76958
77262
  "limit": {
76959
- "context": 196608,
76960
- "output": 196608
77263
+ "context": 204800,
77264
+ "output": 131072
76961
77265
  },
76962
77266
  "cost": {
76963
- "input": 0.279,
76964
- "output": 1.2
77267
+ "input": 0.27,
77268
+ "output": 1.08,
77269
+ "cache_read": 0.054
76965
77270
  }
76966
77271
  },
76967
77272
  "minimax/minimax-m2": {
@@ -77026,7 +77331,8 @@
77026
77331
  },
77027
77332
  "cost": {
77028
77333
  "input": 0.15,
77029
- "output": 1.15
77334
+ "output": 0.9,
77335
+ "cache_read": 0.05
77030
77336
  }
77031
77337
  },
77032
77338
  "minimax/minimax-m2-her": {
@@ -87698,6 +88004,43 @@
87698
88004
  "cache_write": 1
87699
88005
  }
87700
88006
  },
88007
+ "anthropic/claude-fable-5": {
88008
+ "id": "anthropic/claude-fable-5",
88009
+ "name": "Claude Fable 5",
88010
+ "family": "claude-fable",
88011
+ "attachment": true,
88012
+ "reasoning": true,
88013
+ "tool_call": true,
88014
+ "temperature": false,
88015
+ "knowledge": "2026-01-31",
88016
+ "release_date": "2026-06-09",
88017
+ "last_updated": "2026-06-09",
88018
+ "modalities": {
88019
+ "input": [
88020
+ "text",
88021
+ "image",
88022
+ "pdf"
88023
+ ],
88024
+ "output": [
88025
+ "text"
88026
+ ]
88027
+ },
88028
+ "open_weights": false,
88029
+ "limit": {
88030
+ "context": 1000000,
88031
+ "output": 128000
88032
+ },
88033
+ "provider": {
88034
+ "npm": "@ai-sdk/anthropic",
88035
+ "api": "https://zenmux.ai/api/anthropic/v1"
88036
+ },
88037
+ "cost": {
88038
+ "input": 10,
88039
+ "output": 50,
88040
+ "cache_read": 1,
88041
+ "cache_write": 12.5
88042
+ }
88043
+ },
87701
88044
  "anthropic/claude-sonnet-4.5": {
87702
88045
  "id": "anthropic/claude-sonnet-4.5",
87703
88046
  "name": "Claude Sonnet 4.5",
@@ -98739,44 +99082,17 @@
98739
99082
  "name": "Nvidia",
98740
99083
  "doc": "https://docs.api.nvidia.com/nim/",
98741
99084
  "models": {
98742
- "z-ai/glm4.7": {
98743
- "id": "z-ai/glm4.7",
98744
- "name": "GLM-4.7",
98745
- "family": "glm",
98746
- "attachment": false,
98747
- "reasoning": true,
98748
- "tool_call": true,
98749
- "interleaved": {
98750
- "field": "reasoning_content"
98751
- },
98752
- "temperature": true,
98753
- "knowledge": "2025-04",
98754
- "release_date": "2025-12-22",
98755
- "last_updated": "2025-12-22",
98756
- "modalities": {
98757
- "input": [
98758
- "text"
98759
- ],
98760
- "output": [
98761
- "text"
98762
- ]
98763
- },
98764
- "open_weights": true,
98765
- "limit": {
98766
- "context": 204800,
98767
- "output": 131072
98768
- },
98769
- "cost": {
98770
- "input": 0,
98771
- "output": 0
98772
- }
98773
- },
98774
99085
  "z-ai/glm-5.1": {
98775
99086
  "id": "z-ai/glm-5.1",
98776
99087
  "name": "GLM-5.1",
98777
99088
  "family": "glm",
98778
99089
  "attachment": false,
98779
99090
  "reasoning": true,
99091
+ "reasoning_options": [
99092
+ {
99093
+ "type": "toggle"
99094
+ }
99095
+ ],
98780
99096
  "tool_call": true,
98781
99097
  "interleaved": {
98782
99098
  "field": "reasoning_content"
@@ -99059,15 +99375,26 @@
99059
99375
  "mistralai/mistral-small-4-119b-2603": {
99060
99376
  "id": "mistralai/mistral-small-4-119b-2603",
99061
99377
  "name": "mistral-small-4-119b-2603",
99062
- "attachment": false,
99063
- "reasoning": false,
99378
+ "attachment": true,
99379
+ "reasoning": true,
99380
+ "reasoning_options": [
99381
+ {
99382
+ "type": "effort",
99383
+ "values": [
99384
+ "none",
99385
+ "high"
99386
+ ]
99387
+ }
99388
+ ],
99064
99389
  "tool_call": true,
99390
+ "structured_output": true,
99065
99391
  "temperature": true,
99066
99392
  "release_date": "2026-03-16",
99067
99393
  "last_updated": "2026-03-16",
99068
99394
  "modalities": {
99069
99395
  "input": [
99070
- "text"
99396
+ "text",
99397
+ "image"
99071
99398
  ],
99072
99399
  "output": [
99073
99400
  "text"
@@ -99083,36 +99410,6 @@
99083
99410
  "output": 0
99084
99411
  }
99085
99412
  },
99086
- "mistralai/devstral-2-123b-instruct-2512": {
99087
- "id": "mistralai/devstral-2-123b-instruct-2512",
99088
- "name": "Devstral-2-123B-Instruct-2512",
99089
- "family": "devstral",
99090
- "attachment": true,
99091
- "reasoning": true,
99092
- "tool_call": true,
99093
- "structured_output": true,
99094
- "temperature": true,
99095
- "knowledge": "2025-12",
99096
- "release_date": "2025-12-08",
99097
- "last_updated": "2025-12-09",
99098
- "modalities": {
99099
- "input": [
99100
- "text"
99101
- ],
99102
- "output": [
99103
- "text"
99104
- ]
99105
- },
99106
- "open_weights": true,
99107
- "limit": {
99108
- "context": 262144,
99109
- "output": 262144
99110
- },
99111
- "cost": {
99112
- "input": 0,
99113
- "output": 0
99114
- }
99115
- },
99116
99413
  "qwen/qwen2.5-coder-32b-instruct": {
99117
99414
  "id": "qwen/qwen2.5-coder-32b-instruct",
99118
99415
  "name": "Qwen2.5 Coder 32b Instruct",
@@ -99147,6 +99444,11 @@
99147
99444
  "family": "qwen",
99148
99445
  "attachment": true,
99149
99446
  "reasoning": true,
99447
+ "reasoning_options": [
99448
+ {
99449
+ "type": "toggle"
99450
+ }
99451
+ ],
99150
99452
  "tool_call": true,
99151
99453
  "structured_output": true,
99152
99454
  "temperature": true,
@@ -99261,35 +99563,6 @@
99261
99563
  "output": 0
99262
99564
  }
99263
99565
  },
99264
- "qwen/qwen3-next-80b-a3b-thinking": {
99265
- "id": "qwen/qwen3-next-80b-a3b-thinking",
99266
- "name": "Qwen3-Next-80B-A3B-Thinking",
99267
- "family": "qwen",
99268
- "attachment": false,
99269
- "reasoning": true,
99270
- "tool_call": true,
99271
- "temperature": true,
99272
- "knowledge": "2024-12",
99273
- "release_date": "2024-12-01",
99274
- "last_updated": "2025-09-05",
99275
- "modalities": {
99276
- "input": [
99277
- "text"
99278
- ],
99279
- "output": [
99280
- "text"
99281
- ]
99282
- },
99283
- "open_weights": true,
99284
- "limit": {
99285
- "context": 262144,
99286
- "output": 16384
99287
- },
99288
- "cost": {
99289
- "input": 0,
99290
- "output": 0
99291
- }
99292
- },
99293
99566
  "qwen/qwen-image": {
99294
99567
  "id": "qwen/qwen-image",
99295
99568
  "name": "Qwen Image",
@@ -99326,6 +99599,11 @@
99326
99599
  "family": "qwen",
99327
99600
  "attachment": true,
99328
99601
  "reasoning": true,
99602
+ "reasoning_options": [
99603
+ {
99604
+ "type": "toggle"
99605
+ }
99606
+ ],
99329
99607
  "tool_call": true,
99330
99608
  "structured_output": true,
99331
99609
  "temperature": true,
@@ -99468,74 +99746,26 @@
99468
99746
  "output": 0
99469
99747
  }
99470
99748
  },
99471
- "moonshotai/kimi-k2-thinking": {
99472
- "id": "moonshotai/kimi-k2-thinking",
99473
- "name": "Kimi K2 Thinking",
99474
- "family": "kimi-thinking",
99475
- "attachment": false,
99476
- "reasoning": true,
99477
- "tool_call": true,
99478
- "interleaved": true,
99479
- "structured_output": true,
99480
- "temperature": true,
99481
- "knowledge": "2025-07",
99482
- "release_date": "2025-11",
99483
- "last_updated": "2025-12",
99484
- "modalities": {
99485
- "input": [
99486
- "text"
99487
- ],
99488
- "output": [
99489
- "text"
99490
- ]
99491
- },
99492
- "open_weights": true,
99493
- "limit": {
99494
- "context": 262144,
99495
- "output": 262144
99496
- },
99497
- "cost": {
99498
- "input": 0,
99499
- "output": 0,
99500
- "cache_read": 0,
99501
- "cache_write": 0
99502
- }
99503
- },
99504
- "moonshotai/kimi-k2-instruct": {
99505
- "id": "moonshotai/kimi-k2-instruct",
99506
- "name": "Kimi K2 Instruct",
99507
- "family": "kimi",
99508
- "attachment": false,
99509
- "reasoning": true,
99510
- "tool_call": true,
99511
- "temperature": true,
99512
- "knowledge": "2024-01",
99513
- "release_date": "2025-01-01",
99514
- "last_updated": "2025-09-05",
99515
- "modalities": {
99516
- "input": [
99517
- "text"
99518
- ],
99519
- "output": [
99520
- "text"
99521
- ]
99522
- },
99523
- "open_weights": false,
99524
- "limit": {
99525
- "context": 128000,
99526
- "output": 8192
99527
- },
99528
- "cost": {
99529
- "input": 0,
99530
- "output": 0
99531
- }
99532
- },
99533
99749
  "moonshotai/kimi-k2.6": {
99534
99750
  "id": "moonshotai/kimi-k2.6",
99535
99751
  "name": "Kimi K2.6",
99536
99752
  "family": "kimi-k2.6",
99537
99753
  "attachment": true,
99538
99754
  "reasoning": true,
99755
+ "reasoning_options": [
99756
+ {
99757
+ "type": "effort",
99758
+ "values": [
99759
+ "none",
99760
+ "minimal",
99761
+ "low",
99762
+ "medium",
99763
+ "high",
99764
+ "xhigh",
99765
+ "max"
99766
+ ]
99767
+ }
99768
+ ],
99539
99769
  "tool_call": true,
99540
99770
  "interleaved": {
99541
99771
  "field": "reasoning_content"
@@ -99621,70 +99851,22 @@
99621
99851
  "output": 0
99622
99852
  }
99623
99853
  },
99624
- "deepseek-ai/deepseek-v3.2": {
99625
- "id": "deepseek-ai/deepseek-v3.2",
99626
- "name": "DeepSeek V3.2",
99627
- "family": "deepseek",
99628
- "attachment": false,
99629
- "reasoning": true,
99630
- "tool_call": true,
99631
- "temperature": true,
99632
- "knowledge": "2024-07",
99633
- "release_date": "2025-12-01",
99634
- "last_updated": "2025-12-01",
99635
- "modalities": {
99636
- "input": [
99637
- "text"
99638
- ],
99639
- "output": [
99640
- "text"
99641
- ]
99642
- },
99643
- "open_weights": false,
99644
- "limit": {
99645
- "context": 163840,
99646
- "output": 65536
99647
- },
99648
- "cost": {
99649
- "input": 0,
99650
- "output": 0
99651
- }
99652
- },
99653
- "deepseek-ai/deepseek-v3.1-terminus": {
99654
- "id": "deepseek-ai/deepseek-v3.1-terminus",
99655
- "name": "DeepSeek V3.1 Terminus",
99656
- "family": "deepseek",
99657
- "attachment": false,
99658
- "reasoning": true,
99659
- "tool_call": true,
99660
- "temperature": true,
99661
- "knowledge": "2025-01",
99662
- "release_date": "2025-09-22",
99663
- "last_updated": "2025-09-22",
99664
- "modalities": {
99665
- "input": [
99666
- "text"
99667
- ],
99668
- "output": [
99669
- "text"
99670
- ]
99671
- },
99672
- "open_weights": false,
99673
- "limit": {
99674
- "context": 128000,
99675
- "output": 8192
99676
- },
99677
- "cost": {
99678
- "input": 0,
99679
- "output": 0
99680
- }
99681
- },
99682
99854
  "deepseek-ai/deepseek-v4-flash": {
99683
99855
  "id": "deepseek-ai/deepseek-v4-flash",
99684
99856
  "name": "DeepSeek V4 Flash",
99685
99857
  "family": "deepseek-flash",
99686
99858
  "attachment": false,
99687
99859
  "reasoning": true,
99860
+ "reasoning_options": [
99861
+ {
99862
+ "type": "effort",
99863
+ "values": [
99864
+ "none",
99865
+ "high",
99866
+ "max"
99867
+ ]
99868
+ }
99869
+ ],
99688
99870
  "tool_call": true,
99689
99871
  "interleaved": {
99690
99872
  "field": "reasoning_content"
@@ -99719,6 +99901,16 @@
99719
99901
  "family": "deepseek-thinking",
99720
99902
  "attachment": false,
99721
99903
  "reasoning": true,
99904
+ "reasoning_options": [
99905
+ {
99906
+ "type": "effort",
99907
+ "values": [
99908
+ "none",
99909
+ "high",
99910
+ "max"
99911
+ ]
99912
+ }
99913
+ ],
99722
99914
  "tool_call": true,
99723
99915
  "interleaved": {
99724
99916
  "field": "reasoning_content"
@@ -99864,6 +100056,16 @@
99864
100056
  "family": "nemotron",
99865
100057
  "attachment": true,
99866
100058
  "reasoning": true,
100059
+ "reasoning_options": [
100060
+ {
100061
+ "type": "toggle"
100062
+ },
100063
+ {
100064
+ "type": "budget_tokens",
100065
+ "min": -1,
100066
+ "max": 32768
100067
+ }
100068
+ ],
99867
100069
  "tool_call": true,
99868
100070
  "structured_output": true,
99869
100071
  "temperature": true,
@@ -99896,6 +100098,11 @@
99896
100098
  "family": "nemotron",
99897
100099
  "attachment": false,
99898
100100
  "reasoning": true,
100101
+ "reasoning_options": [
100102
+ {
100103
+ "type": "toggle"
100104
+ }
100105
+ ],
99899
100106
  "tool_call": true,
99900
100107
  "temperature": true,
99901
100108
  "knowledge": "2024-09",
@@ -100230,6 +100437,11 @@
100230
100437
  "family": "nemotron",
100231
100438
  "attachment": false,
100232
100439
  "reasoning": true,
100440
+ "reasoning_options": [
100441
+ {
100442
+ "type": "toggle"
100443
+ }
100444
+ ],
100233
100445
  "tool_call": true,
100234
100446
  "structured_output": true,
100235
100447
  "temperature": true,
@@ -100260,6 +100472,11 @@
100260
100472
  "family": "nemotron",
100261
100473
  "attachment": false,
100262
100474
  "reasoning": true,
100475
+ "reasoning_options": [
100476
+ {
100477
+ "type": "toggle"
100478
+ }
100479
+ ],
100263
100480
  "tool_call": true,
100264
100481
  "temperature": true,
100265
100482
  "knowledge": "2024-09",
@@ -100310,35 +100527,6 @@
100310
100527
  "output": 0
100311
100528
  }
100312
100529
  },
100313
- "nvidia/llama-3_3-nemotron-super-49b-v1_5": {
100314
- "id": "nvidia/llama-3_3-nemotron-super-49b-v1_5",
100315
- "name": "Llama 3.3 Nemotron Super 49B v1.5",
100316
- "family": "nemotron",
100317
- "attachment": false,
100318
- "reasoning": true,
100319
- "tool_call": true,
100320
- "temperature": true,
100321
- "knowledge": "2023-12",
100322
- "release_date": "2025-07-25",
100323
- "last_updated": "2025-07-25",
100324
- "modalities": {
100325
- "input": [
100326
- "text"
100327
- ],
100328
- "output": [
100329
- "text"
100330
- ]
100331
- },
100332
- "open_weights": true,
100333
- "limit": {
100334
- "context": 131072,
100335
- "output": 131072
100336
- },
100337
- "cost": {
100338
- "input": 0,
100339
- "output": 0
100340
- }
100341
- },
100342
100530
  "nvidia/nv-embedcode-7b-v1": {
100343
100531
  "id": "nvidia/nv-embedcode-7b-v1",
100344
100532
  "name": "nv-embedcode-7b-v1",
@@ -100479,41 +100667,13 @@
100479
100667
  "output": 0
100480
100668
  }
100481
100669
  },
100482
- "nvidia/llama-3_3-nemotron-super-49b-v1": {
100483
- "id": "nvidia/llama-3_3-nemotron-super-49b-v1",
100484
- "name": "Llama 3.3 Nemotron Super 49B v1",
100485
- "family": "nemotron",
100486
- "attachment": false,
100487
- "reasoning": true,
100488
- "tool_call": true,
100489
- "temperature": true,
100490
- "knowledge": "2023-12",
100491
- "release_date": "2025-04-07",
100492
- "last_updated": "2025-04-07",
100493
- "modalities": {
100494
- "input": [
100495
- "text"
100496
- ],
100497
- "output": [
100498
- "text"
100499
- ]
100500
- },
100501
- "open_weights": true,
100502
- "limit": {
100503
- "context": 131072,
100504
- "output": 131072
100505
- },
100506
- "cost": {
100507
- "input": 0,
100508
- "output": 0
100509
- }
100510
- },
100511
100670
  "nvidia/nemotron-content-safety-reasoning-4b": {
100512
100671
  "id": "nvidia/nemotron-content-safety-reasoning-4b",
100513
100672
  "name": "nemotron-content-safety-reasoning-4b",
100514
100673
  "family": "nemotron",
100515
100674
  "attachment": false,
100516
100675
  "reasoning": true,
100676
+ "reasoning_options": [],
100517
100677
  "tool_call": false,
100518
100678
  "temperature": false,
100519
100679
  "release_date": "2026-01-22",
@@ -100542,6 +100702,11 @@
100542
100702
  "family": "nemotron",
100543
100703
  "attachment": false,
100544
100704
  "reasoning": true,
100705
+ "reasoning_options": [
100706
+ {
100707
+ "type": "toggle"
100708
+ }
100709
+ ],
100545
100710
  "tool_call": true,
100546
100711
  "temperature": true,
100547
100712
  "knowledge": "2024-04",
@@ -100652,6 +100817,7 @@
100652
100817
  "family": "minimax",
100653
100818
  "attachment": false,
100654
100819
  "reasoning": true,
100820
+ "reasoning_options": [],
100655
100821
  "tool_call": true,
100656
100822
  "temperature": true,
100657
100823
  "release_date": "2026-03-18",
@@ -100674,35 +100840,6 @@
100674
100840
  "output": 0
100675
100841
  }
100676
100842
  },
100677
- "minimaxai/minimax-m2.5": {
100678
- "id": "minimaxai/minimax-m2.5",
100679
- "name": "MiniMax-M2.5",
100680
- "family": "minimax",
100681
- "attachment": false,
100682
- "reasoning": true,
100683
- "tool_call": true,
100684
- "temperature": true,
100685
- "knowledge": "2025-08",
100686
- "release_date": "2026-02-12",
100687
- "last_updated": "2026-02-12",
100688
- "modalities": {
100689
- "input": [
100690
- "text"
100691
- ],
100692
- "output": [
100693
- "text"
100694
- ]
100695
- },
100696
- "open_weights": true,
100697
- "limit": {
100698
- "context": 204800,
100699
- "output": 131072
100700
- },
100701
- "cost": {
100702
- "input": 0,
100703
- "output": 0
100704
- }
100705
- },
100706
100843
  "microsoft/phi-4-multimodal-instruct": {
100707
100844
  "id": "microsoft/phi-4-multimodal-instruct",
100708
100845
  "name": "Phi 4 Multimodal",
@@ -100735,8 +100872,8 @@
100735
100872
  "id": "microsoft/phi-4-mini-instruct",
100736
100873
  "name": "Phi-4-Mini",
100737
100874
  "family": "phi",
100738
- "attachment": true,
100739
- "reasoning": true,
100875
+ "attachment": false,
100876
+ "reasoning": false,
100740
100877
  "tool_call": true,
100741
100878
  "temperature": true,
100742
100879
  "knowledge": "2024-12",
@@ -100744,15 +100881,13 @@
100744
100881
  "last_updated": "2025-09-05",
100745
100882
  "modalities": {
100746
100883
  "input": [
100747
- "text",
100748
- "image",
100749
- "audio"
100884
+ "text"
100750
100885
  ],
100751
100886
  "output": [
100752
100887
  "text"
100753
100888
  ]
100754
100889
  },
100755
- "open_weights": false,
100890
+ "open_weights": true,
100756
100891
  "limit": {
100757
100892
  "context": 131072,
100758
100893
  "output": 8192
@@ -100767,6 +100902,19 @@
100767
100902
  "name": "Step 3.7 Flash",
100768
100903
  "attachment": true,
100769
100904
  "reasoning": true,
100905
+ "reasoning_options": [
100906
+ {
100907
+ "type": "effort",
100908
+ "values": [
100909
+ "minimal",
100910
+ "low",
100911
+ "medium",
100912
+ "high",
100913
+ "xhigh",
100914
+ "max"
100915
+ ]
100916
+ }
100917
+ ],
100770
100918
  "tool_call": true,
100771
100919
  "temperature": true,
100772
100920
  "release_date": "2026-05-28",
@@ -100795,6 +100943,16 @@
100795
100943
  "name": "Step 3.5 Flash",
100796
100944
  "attachment": false,
100797
100945
  "reasoning": true,
100946
+ "reasoning_options": [
100947
+ {
100948
+ "type": "effort",
100949
+ "values": [
100950
+ "low",
100951
+ "medium",
100952
+ "high"
100953
+ ]
100954
+ }
100955
+ ],
100798
100956
  "tool_call": true,
100799
100957
  "temperature": true,
100800
100958
  "release_date": "2026-02-02",
@@ -101167,6 +101325,11 @@
101167
101325
  "family": "gemma",
101168
101326
  "attachment": true,
101169
101327
  "reasoning": true,
101328
+ "reasoning_options": [
101329
+ {
101330
+ "type": "toggle"
101331
+ }
101332
+ ],
101170
101333
  "tool_call": true,
101171
101334
  "temperature": true,
101172
101335
  "knowledge": "2025-01",
@@ -101308,43 +101471,24 @@
101308
101471
  "output": 0
101309
101472
  }
101310
101473
  },
101311
- "google/gemma-3-27b-it": {
101312
- "id": "google/gemma-3-27b-it",
101313
- "name": "Gemma-3-27B-IT",
101314
- "family": "gemma",
101315
- "attachment": true,
101316
- "reasoning": true,
101317
- "tool_call": true,
101318
- "temperature": true,
101319
- "knowledge": "2024-12",
101320
- "release_date": "2024-12-01",
101321
- "last_updated": "2025-09-05",
101322
- "modalities": {
101323
- "input": [
101324
- "text",
101325
- "image"
101326
- ],
101327
- "output": [
101328
- "text"
101329
- ]
101330
- },
101331
- "open_weights": false,
101332
- "limit": {
101333
- "context": 131072,
101334
- "output": 8192
101335
- },
101336
- "cost": {
101337
- "input": 0,
101338
- "output": 0
101339
- }
101340
- },
101341
101474
  "openai/gpt-oss-120b": {
101342
101475
  "id": "openai/gpt-oss-120b",
101343
101476
  "name": "GPT-OSS-120B",
101344
101477
  "family": "gpt-oss",
101345
- "attachment": true,
101478
+ "attachment": false,
101346
101479
  "reasoning": true,
101347
- "tool_call": false,
101480
+ "reasoning_options": [
101481
+ {
101482
+ "type": "effort",
101483
+ "values": [
101484
+ "low",
101485
+ "medium",
101486
+ "high"
101487
+ ]
101488
+ }
101489
+ ],
101490
+ "tool_call": true,
101491
+ "structured_output": true,
101348
101492
  "temperature": true,
101349
101493
  "knowledge": "2025-08",
101350
101494
  "release_date": "2025-08-04",
@@ -101357,7 +101501,7 @@
101357
101501
  "text"
101358
101502
  ]
101359
101503
  },
101360
- "open_weights": false,
101504
+ "open_weights": true,
101361
101505
  "limit": {
101362
101506
  "context": 128000,
101363
101507
  "output": 8192
@@ -101373,6 +101517,16 @@
101373
101517
  "family": "gpt-oss",
101374
101518
  "attachment": false,
101375
101519
  "reasoning": true,
101520
+ "reasoning_options": [
101521
+ {
101522
+ "type": "effort",
101523
+ "values": [
101524
+ "low",
101525
+ "medium",
101526
+ "high"
101527
+ ]
101528
+ }
101529
+ ],
101376
101530
  "tool_call": true,
101377
101531
  "structured_output": true,
101378
101532
  "temperature": true,
@@ -105152,13 +105306,12 @@
105152
105306
  "models": {
105153
105307
  "whisper-large-v3-turbo": {
105154
105308
  "id": "whisper-large-v3-turbo",
105155
- "name": "Whisper Large v3 Turbo",
105309
+ "name": "Whisper Large V3 Turbo",
105156
105310
  "family": "whisper",
105157
105311
  "attachment": false,
105158
105312
  "reasoning": false,
105159
105313
  "tool_call": false,
105160
105314
  "temperature": true,
105161
- "knowledge": "2024-10",
105162
105315
  "release_date": "2024-10-01",
105163
105316
  "last_updated": "2024-10-01",
105164
105317
  "modalities": {
@@ -105171,106 +105324,13 @@
105171
105324
  },
105172
105325
  "open_weights": true,
105173
105326
  "limit": {
105174
- "context": 448,
105175
- "output": 448
105176
- },
105177
- "cost": {
105178
- "input": 0,
105179
- "output": 0
105180
- }
105181
- },
105182
- "llama3-8b-8192": {
105183
- "id": "llama3-8b-8192",
105184
- "name": "Llama 3 8B",
105185
- "family": "llama",
105186
- "attachment": false,
105187
- "reasoning": false,
105188
- "tool_call": true,
105189
- "temperature": true,
105190
- "knowledge": "2023-03",
105191
- "release_date": "2024-04-18",
105192
- "last_updated": "2024-04-18",
105193
- "modalities": {
105194
- "input": [
105195
- "text"
105196
- ],
105197
- "output": [
105198
- "text"
105199
- ]
105200
- },
105201
- "open_weights": true,
105202
- "limit": {
105203
- "context": 8192,
105204
- "output": 8192
105205
- },
105206
- "status": "deprecated",
105207
- "cost": {
105208
- "input": 0.05,
105209
- "output": 0.08
105210
- }
105211
- },
105212
- "mistral-saba-24b": {
105213
- "id": "mistral-saba-24b",
105214
- "name": "Mistral Saba 24B",
105215
- "family": "mistral",
105216
- "attachment": false,
105217
- "reasoning": false,
105218
- "tool_call": true,
105219
- "temperature": true,
105220
- "knowledge": "2024-08",
105221
- "release_date": "2025-02-06",
105222
- "last_updated": "2025-02-06",
105223
- "modalities": {
105224
- "input": [
105225
- "text"
105226
- ],
105227
- "output": [
105228
- "text"
105229
- ]
105230
- },
105231
- "open_weights": false,
105232
- "limit": {
105233
- "context": 32768,
105234
- "output": 32768
105235
- },
105236
- "status": "deprecated",
105237
- "cost": {
105238
- "input": 0.79,
105239
- "output": 0.79
105240
- }
105241
- },
105242
- "allam-2-7b": {
105243
- "id": "allam-2-7b",
105244
- "name": "ALLaM-2-7b",
105245
- "family": "allam",
105246
- "attachment": false,
105247
- "reasoning": false,
105248
- "tool_call": false,
105249
- "temperature": true,
105250
- "knowledge": "2024-09",
105251
- "release_date": "2024-09",
105252
- "last_updated": "2024-09",
105253
- "modalities": {
105254
- "input": [
105255
- "text"
105256
- ],
105257
- "output": [
105258
- "text"
105259
- ]
105260
- },
105261
- "open_weights": false,
105262
- "limit": {
105263
- "context": 4096,
105264
- "output": 4096
105265
- },
105266
- "cost": {
105267
- "input": 0,
105327
+ "context": 0,
105268
105328
  "output": 0
105269
105329
  }
105270
105330
  },
105271
105331
  "llama-3.1-8b-instant": {
105272
105332
  "id": "llama-3.1-8b-instant",
105273
- "name": "Llama 3.1 8B Instant",
105333
+ "name": "Llama 3.1 8B",
105274
105334
  "family": "llama",
105275
105335
  "attachment": false,
105276
105336
  "reasoning": false,
@@ -105297,75 +105357,14 @@
105297
105357
  "output": 0.08
105298
105358
  }
105299
105359
  },
105300
- "qwen-qwq-32b": {
105301
- "id": "qwen-qwq-32b",
105302
- "name": "Qwen QwQ 32B",
105303
- "family": "qwen",
105304
- "attachment": false,
105305
- "reasoning": true,
105306
- "tool_call": true,
105307
- "temperature": true,
105308
- "knowledge": "2024-09",
105309
- "release_date": "2024-11-27",
105310
- "last_updated": "2024-11-27",
105311
- "modalities": {
105312
- "input": [
105313
- "text"
105314
- ],
105315
- "output": [
105316
- "text"
105317
- ]
105318
- },
105319
- "open_weights": true,
105320
- "limit": {
105321
- "context": 131072,
105322
- "output": 16384
105323
- },
105324
- "status": "deprecated",
105325
- "cost": {
105326
- "input": 0.29,
105327
- "output": 0.39
105328
- }
105329
- },
105330
- "deepseek-r1-distill-llama-70b": {
105331
- "id": "deepseek-r1-distill-llama-70b",
105332
- "name": "DeepSeek R1 Distill Llama 70B",
105333
- "family": "deepseek-thinking",
105334
- "attachment": false,
105335
- "reasoning": true,
105336
- "tool_call": true,
105337
- "temperature": true,
105338
- "knowledge": "2024-07",
105339
- "release_date": "2025-01-20",
105340
- "last_updated": "2025-01-20",
105341
- "modalities": {
105342
- "input": [
105343
- "text"
105344
- ],
105345
- "output": [
105346
- "text"
105347
- ]
105348
- },
105349
- "open_weights": true,
105350
- "limit": {
105351
- "context": 131072,
105352
- "output": 8192
105353
- },
105354
- "status": "deprecated",
105355
- "cost": {
105356
- "input": 0.75,
105357
- "output": 0.99
105358
- }
105359
- },
105360
105360
  "whisper-large-v3": {
105361
105361
  "id": "whisper-large-v3",
105362
- "name": "Whisper Large V3",
105362
+ "name": "Whisper",
105363
105363
  "family": "whisper",
105364
105364
  "attachment": false,
105365
105365
  "reasoning": false,
105366
105366
  "tool_call": false,
105367
105367
  "temperature": true,
105368
- "knowledge": "2023-09",
105369
105368
  "release_date": "2023-09-01",
105370
105369
  "last_updated": "2025-09-05",
105371
105370
  "modalities": {
@@ -105378,47 +105377,13 @@
105378
105377
  },
105379
105378
  "open_weights": true,
105380
105379
  "limit": {
105381
- "context": 448,
105382
- "output": 448
105383
- },
105384
- "cost": {
105385
- "input": 0,
105380
+ "context": 0,
105386
105381
  "output": 0
105387
105382
  }
105388
105383
  },
105389
- "gemma2-9b-it": {
105390
- "id": "gemma2-9b-it",
105391
- "name": "Gemma 2 9B",
105392
- "family": "gemma",
105393
- "attachment": false,
105394
- "reasoning": false,
105395
- "tool_call": true,
105396
- "temperature": true,
105397
- "knowledge": "2024-06",
105398
- "release_date": "2024-06-27",
105399
- "last_updated": "2024-06-27",
105400
- "modalities": {
105401
- "input": [
105402
- "text"
105403
- ],
105404
- "output": [
105405
- "text"
105406
- ]
105407
- },
105408
- "open_weights": true,
105409
- "limit": {
105410
- "context": 8192,
105411
- "output": 8192
105412
- },
105413
- "status": "deprecated",
105414
- "cost": {
105415
- "input": 0.2,
105416
- "output": 0.2
105417
- }
105418
- },
105419
105384
  "llama-3.3-70b-versatile": {
105420
105385
  "id": "llama-3.3-70b-versatile",
105421
- "name": "Llama 3.3 70B Versatile",
105386
+ "name": "Llama 3.3 70B",
105422
105387
  "family": "llama",
105423
105388
  "attachment": false,
105424
105389
  "reasoning": false,
@@ -105445,76 +105410,25 @@
105445
105410
  "output": 0.79
105446
105411
  }
105447
105412
  },
105448
- "llama3-70b-8192": {
105449
- "id": "llama3-70b-8192",
105450
- "name": "Llama 3 70B",
105451
- "family": "llama",
105452
- "attachment": false,
105453
- "reasoning": false,
105454
- "tool_call": true,
105455
- "temperature": true,
105456
- "knowledge": "2023-03",
105457
- "release_date": "2024-04-18",
105458
- "last_updated": "2024-04-18",
105459
- "modalities": {
105460
- "input": [
105461
- "text"
105462
- ],
105463
- "output": [
105464
- "text"
105465
- ]
105466
- },
105467
- "open_weights": true,
105468
- "limit": {
105469
- "context": 8192,
105470
- "output": 8192
105471
- },
105472
- "status": "deprecated",
105473
- "cost": {
105474
- "input": 0.59,
105475
- "output": 0.79
105476
- }
105477
- },
105478
- "llama-guard-3-8b": {
105479
- "id": "llama-guard-3-8b",
105480
- "name": "Llama Guard 3 8B",
105481
- "family": "llama",
105482
- "attachment": false,
105483
- "reasoning": false,
105484
- "tool_call": false,
105485
- "temperature": true,
105486
- "release_date": "2024-07-23",
105487
- "last_updated": "2024-07-23",
105488
- "modalities": {
105489
- "input": [
105490
- "text"
105491
- ],
105492
- "output": [
105493
- "text"
105494
- ]
105495
- },
105496
- "open_weights": true,
105497
- "limit": {
105498
- "context": 8192,
105499
- "output": 8192
105500
- },
105501
- "status": "deprecated",
105502
- "cost": {
105503
- "input": 0.2,
105504
- "output": 0.2
105505
- }
105506
- },
105507
105413
  "qwen/qwen3-32b": {
105508
105414
  "id": "qwen/qwen3-32b",
105509
- "name": "Qwen3 32B",
105415
+ "name": "Qwen3-32B",
105510
105416
  "family": "qwen",
105511
105417
  "attachment": false,
105512
105418
  "reasoning": true,
105419
+ "reasoning_options": [
105420
+ {
105421
+ "type": "effort",
105422
+ "values": [
105423
+ "none",
105424
+ "default"
105425
+ ]
105426
+ }
105427
+ ],
105513
105428
  "tool_call": true,
105514
105429
  "temperature": true,
105515
- "knowledge": "2024-11-08",
105516
- "release_date": "2024-12-23",
105517
- "last_updated": "2024-12-23",
105430
+ "release_date": "2025-06-11",
105431
+ "last_updated": "2025-06-12",
105518
105432
  "modalities": {
105519
105433
  "input": [
105520
105434
  "text"
@@ -105528,139 +105442,17 @@
105528
105442
  "context": 131072,
105529
105443
  "output": 40960
105530
105444
  },
105445
+ "status": "beta",
105531
105446
  "cost": {
105532
105447
  "input": 0.29,
105533
105448
  "output": 0.59
105534
105449
  }
105535
105450
  },
105536
- "moonshotai/kimi-k2-instruct": {
105537
- "id": "moonshotai/kimi-k2-instruct",
105538
- "name": "Kimi K2 Instruct",
105539
- "family": "kimi",
105540
- "attachment": false,
105541
- "reasoning": false,
105542
- "tool_call": true,
105543
- "temperature": true,
105544
- "knowledge": "2024-10",
105545
- "release_date": "2025-07-14",
105546
- "last_updated": "2025-07-14",
105547
- "modalities": {
105548
- "input": [
105549
- "text"
105550
- ],
105551
- "output": [
105552
- "text"
105553
- ]
105554
- },
105555
- "open_weights": true,
105556
- "limit": {
105557
- "context": 131072,
105558
- "output": 16384
105559
- },
105560
- "status": "deprecated",
105561
- "cost": {
105562
- "input": 1,
105563
- "output": 3
105564
- }
105565
- },
105566
- "moonshotai/kimi-k2-instruct-0905": {
105567
- "id": "moonshotai/kimi-k2-instruct-0905",
105568
- "name": "Kimi K2 Instruct 0905",
105569
- "family": "kimi",
105570
- "attachment": false,
105571
- "reasoning": false,
105572
- "tool_call": true,
105573
- "structured_output": true,
105574
- "temperature": true,
105575
- "knowledge": "2024-10",
105576
- "release_date": "2025-09-05",
105577
- "last_updated": "2026-05-27",
105578
- "modalities": {
105579
- "input": [
105580
- "text"
105581
- ],
105582
- "output": [
105583
- "text"
105584
- ]
105585
- },
105586
- "open_weights": true,
105587
- "limit": {
105588
- "context": 262144,
105589
- "output": 16384
105590
- },
105591
- "cost": {
105592
- "input": 1,
105593
- "output": 3,
105594
- "cache_read": 0.5
105595
- }
105596
- },
105597
- "meta-llama/llama-guard-4-12b": {
105598
- "id": "meta-llama/llama-guard-4-12b",
105599
- "name": "Llama Guard 4 12B",
105600
- "family": "llama",
105601
- "attachment": false,
105602
- "reasoning": false,
105603
- "tool_call": false,
105604
- "temperature": true,
105605
- "release_date": "2025-04-05",
105606
- "last_updated": "2025-04-05",
105607
- "modalities": {
105608
- "input": [
105609
- "text",
105610
- "image"
105611
- ],
105612
- "output": [
105613
- "text"
105614
- ]
105615
- },
105616
- "open_weights": true,
105617
- "limit": {
105618
- "context": 131072,
105619
- "output": 1024
105620
- },
105621
- "status": "deprecated",
105622
- "cost": {
105623
- "input": 0.2,
105624
- "output": 0.2
105625
- }
105626
- },
105627
- "meta-llama/llama-4-maverick-17b-128e-instruct": {
105628
- "id": "meta-llama/llama-4-maverick-17b-128e-instruct",
105629
- "name": "Llama 4 Maverick 17B",
105630
- "family": "llama",
105631
- "attachment": false,
105632
- "reasoning": false,
105633
- "tool_call": true,
105634
- "structured_output": true,
105635
- "temperature": true,
105636
- "knowledge": "2024-08",
105637
- "release_date": "2025-04-05",
105638
- "last_updated": "2025-04-05",
105639
- "modalities": {
105640
- "input": [
105641
- "text",
105642
- "image"
105643
- ],
105644
- "output": [
105645
- "text"
105646
- ]
105647
- },
105648
- "open_weights": true,
105649
- "limit": {
105650
- "context": 131072,
105651
- "output": 8192
105652
- },
105653
- "status": "deprecated",
105654
- "cost": {
105655
- "input": 0.2,
105656
- "output": 0.6
105657
- }
105658
- },
105659
105451
  "meta-llama/llama-4-scout-17b-16e-instruct": {
105660
105452
  "id": "meta-llama/llama-4-scout-17b-16e-instruct",
105661
- "name": "Llama 4 Scout 17B",
105453
+ "name": "Llama 4 Scout 17B 16E",
105662
105454
  "family": "llama",
105663
- "attachment": false,
105455
+ "attachment": true,
105664
105456
  "reasoning": false,
105665
105457
  "tool_call": true,
105666
105458
  "structured_output": true,
@@ -105682,6 +105474,7 @@
105682
105474
  "context": 131072,
105683
105475
  "output": 8192
105684
105476
  },
105477
+ "status": "beta",
105685
105478
  "cost": {
105686
105479
  "input": 0.11,
105687
105480
  "output": 0.34
@@ -105689,15 +105482,14 @@
105689
105482
  },
105690
105483
  "meta-llama/llama-prompt-guard-2-86m": {
105691
105484
  "id": "meta-llama/llama-prompt-guard-2-86m",
105692
- "name": "Llama Prompt Guard 2 86M",
105485
+ "name": "Prompt Guard 2 86M",
105693
105486
  "family": "llama",
105694
105487
  "attachment": false,
105695
105488
  "reasoning": false,
105696
105489
  "tool_call": false,
105697
- "temperature": true,
105698
- "knowledge": "2024-10",
105699
- "release_date": "2024-10-01",
105700
- "last_updated": "2024-10-01",
105490
+ "temperature": false,
105491
+ "release_date": "2025-05-29",
105492
+ "last_updated": "2025-05-29",
105701
105493
  "modalities": {
105702
105494
  "input": [
105703
105495
  "text"
@@ -105711,6 +105503,7 @@
105711
105503
  "context": 512,
105712
105504
  "output": 512
105713
105505
  },
105506
+ "status": "beta",
105714
105507
  "cost": {
105715
105508
  "input": 0.04,
105716
105509
  "output": 0.04
@@ -105723,10 +105516,9 @@
105723
105516
  "attachment": false,
105724
105517
  "reasoning": false,
105725
105518
  "tool_call": false,
105726
- "temperature": true,
105727
- "knowledge": "2024-10",
105728
- "release_date": "2024-10-01",
105729
- "last_updated": "2024-10-01",
105519
+ "temperature": false,
105520
+ "release_date": "2025-05-29",
105521
+ "last_updated": "2025-05-29",
105730
105522
  "modalities": {
105731
105523
  "input": [
105732
105524
  "text"
@@ -105740,6 +105532,7 @@
105740
105532
  "context": 512,
105741
105533
  "output": 512
105742
105534
  },
105535
+ "status": "beta",
105743
105536
  "cost": {
105744
105537
  "input": 0.03,
105745
105538
  "output": 0.03
@@ -105750,10 +105543,9 @@
105750
105543
  "name": "Compound Mini",
105751
105544
  "family": "groq",
105752
105545
  "attachment": false,
105753
- "reasoning": true,
105754
- "tool_call": true,
105546
+ "reasoning": false,
105547
+ "tool_call": false,
105755
105548
  "temperature": true,
105756
- "knowledge": "2025-09-04",
105757
105549
  "release_date": "2025-09-04",
105758
105550
  "last_updated": "2025-09-04",
105759
105551
  "modalities": {
@@ -105768,10 +105560,6 @@
105768
105560
  "limit": {
105769
105561
  "context": 131072,
105770
105562
  "output": 8192
105771
- },
105772
- "cost": {
105773
- "input": 0,
105774
- "output": 0
105775
105563
  }
105776
105564
  },
105777
105565
  "groq/compound": {
@@ -105779,10 +105567,9 @@
105779
105567
  "name": "Compound",
105780
105568
  "family": "groq",
105781
105569
  "attachment": false,
105782
- "reasoning": true,
105783
- "tool_call": true,
105570
+ "reasoning": false,
105571
+ "tool_call": false,
105784
105572
  "temperature": true,
105785
- "knowledge": "2025-09-04",
105786
105573
  "release_date": "2025-09-04",
105787
105574
  "last_updated": "2025-09-04",
105788
105575
  "modalities": {
@@ -105797,21 +105584,16 @@
105797
105584
  "limit": {
105798
105585
  "context": 131072,
105799
105586
  "output": 8192
105800
- },
105801
- "cost": {
105802
- "input": 0,
105803
- "output": 0
105804
105587
  }
105805
105588
  },
105806
105589
  "canopylabs/orpheus-v1-english": {
105807
105590
  "id": "canopylabs/orpheus-v1-english",
105808
- "name": "Orpheus V1 English",
105591
+ "name": "Canopy Labs Orpheus V1 English",
105809
105592
  "family": "canopylabs",
105810
105593
  "attachment": false,
105811
105594
  "reasoning": false,
105812
105595
  "tool_call": false,
105813
- "temperature": true,
105814
- "knowledge": "2025-12-19",
105596
+ "temperature": false,
105815
105597
  "release_date": "2025-12-19",
105816
105598
  "last_updated": "2025-12-19",
105817
105599
  "modalities": {
@@ -105827,20 +105609,16 @@
105827
105609
  "context": 4000,
105828
105610
  "output": 50000
105829
105611
  },
105830
- "cost": {
105831
- "input": 0,
105832
- "output": 0
105833
- }
105612
+ "status": "beta"
105834
105613
  },
105835
105614
  "canopylabs/orpheus-arabic-saudi": {
105836
105615
  "id": "canopylabs/orpheus-arabic-saudi",
105837
- "name": "Orpheus Arabic Saudi",
105616
+ "name": "Canopy Labs Orpheus Arabic Saudi",
105838
105617
  "family": "canopylabs",
105839
105618
  "attachment": false,
105840
105619
  "reasoning": false,
105841
105620
  "tool_call": false,
105842
- "temperature": true,
105843
- "knowledge": "2025-12-16",
105621
+ "temperature": false,
105844
105622
  "release_date": "2025-12-16",
105845
105623
  "last_updated": "2025-12-16",
105846
105624
  "modalities": {
@@ -105856,10 +105634,7 @@
105856
105634
  "context": 4000,
105857
105635
  "output": 50000
105858
105636
  },
105859
- "cost": {
105860
- "input": 40,
105861
- "output": 0
105862
- }
105637
+ "status": "beta"
105863
105638
  },
105864
105639
  "openai/gpt-oss-120b": {
105865
105640
  "id": "openai/gpt-oss-120b",
@@ -105867,11 +105642,21 @@
105867
105642
  "family": "gpt-oss",
105868
105643
  "attachment": false,
105869
105644
  "reasoning": true,
105645
+ "reasoning_options": [
105646
+ {
105647
+ "type": "effort",
105648
+ "values": [
105649
+ "low",
105650
+ "medium",
105651
+ "high"
105652
+ ]
105653
+ }
105654
+ ],
105870
105655
  "tool_call": true,
105871
105656
  "structured_output": true,
105872
105657
  "temperature": true,
105873
105658
  "release_date": "2025-08-05",
105874
- "last_updated": "2026-05-27",
105659
+ "last_updated": "2025-10-21",
105875
105660
  "modalities": {
105876
105661
  "input": [
105877
105662
  "text"
@@ -105897,11 +105682,21 @@
105897
105682
  "family": "gpt-oss",
105898
105683
  "attachment": false,
105899
105684
  "reasoning": true,
105685
+ "reasoning_options": [
105686
+ {
105687
+ "type": "effort",
105688
+ "values": [
105689
+ "low",
105690
+ "medium",
105691
+ "high"
105692
+ ]
105693
+ }
105694
+ ],
105900
105695
  "tool_call": true,
105901
105696
  "structured_output": true,
105902
105697
  "temperature": true,
105903
105698
  "release_date": "2025-08-05",
105904
- "last_updated": "2026-05-27",
105699
+ "last_updated": "2025-09-25",
105905
105700
  "modalities": {
105906
105701
  "input": [
105907
105702
  "text"
@@ -105927,10 +105722,21 @@
105927
105722
  "family": "gpt-oss",
105928
105723
  "attachment": false,
105929
105724
  "reasoning": true,
105725
+ "reasoning_options": [
105726
+ {
105727
+ "type": "effort",
105728
+ "values": [
105729
+ "low",
105730
+ "medium",
105731
+ "high"
105732
+ ]
105733
+ }
105734
+ ],
105930
105735
  "tool_call": true,
105736
+ "structured_output": true,
105931
105737
  "temperature": true,
105932
- "release_date": "2025-03-05",
105933
- "last_updated": "2025-03-05",
105738
+ "release_date": "2025-10-29",
105739
+ "last_updated": "2025-10-29",
105934
105740
  "modalities": {
105935
105741
  "input": [
105936
105742
  "text"
@@ -105944,6 +105750,7 @@
105944
105750
  "context": 131072,
105945
105751
  "output": 65536
105946
105752
  },
105753
+ "status": "beta",
105947
105754
  "cost": {
105948
105755
  "input": 0.075,
105949
105756
  "output": 0.3,
@@ -111799,6 +111606,39 @@
111799
111606
  "cache_write": 0.3
111800
111607
  }
111801
111608
  },
111609
+ "anthropic/claude-fable-5": {
111610
+ "id": "anthropic/claude-fable-5",
111611
+ "name": "Claude Fable 5",
111612
+ "family": "claude-fable",
111613
+ "attachment": true,
111614
+ "reasoning": true,
111615
+ "tool_call": true,
111616
+ "temperature": false,
111617
+ "knowledge": "2026-01-31",
111618
+ "release_date": "2026-06-09",
111619
+ "last_updated": "2026-06-09",
111620
+ "modalities": {
111621
+ "input": [
111622
+ "text",
111623
+ "image",
111624
+ "pdf"
111625
+ ],
111626
+ "output": [
111627
+ "text"
111628
+ ]
111629
+ },
111630
+ "open_weights": false,
111631
+ "limit": {
111632
+ "context": 1000000,
111633
+ "output": 128000
111634
+ },
111635
+ "cost": {
111636
+ "input": 10,
111637
+ "output": 50,
111638
+ "cache_read": 1,
111639
+ "cache_write": 12.5
111640
+ }
111641
+ },
111802
111642
  "anthropic/claude-3-5-haiku": {
111803
111643
  "id": "anthropic/claude-3-5-haiku",
111804
111644
  "name": "Claude Haiku 3.5 (latest)",
@@ -120203,6 +120043,41 @@
120203
120043
  "cache_read": 0.175
120204
120044
  }
120205
120045
  },
120046
+ "deepseek-v4-flash": {
120047
+ "id": "deepseek-v4-flash",
120048
+ "name": "DeepSeek-V4-Flash",
120049
+ "family": "deepseek-flash",
120050
+ "attachment": false,
120051
+ "reasoning": true,
120052
+ "tool_call": false,
120053
+ "structured_output": true,
120054
+ "temperature": true,
120055
+ "knowledge": "2025-05",
120056
+ "release_date": "2026-04-24",
120057
+ "last_updated": "2026-04-24",
120058
+ "modalities": {
120059
+ "input": [
120060
+ "text"
120061
+ ],
120062
+ "output": [
120063
+ "text"
120064
+ ]
120065
+ },
120066
+ "open_weights": true,
120067
+ "limit": {
120068
+ "context": 1000000,
120069
+ "output": 384000
120070
+ },
120071
+ "provider": {
120072
+ "npm": "@ai-sdk/openai-compatible",
120073
+ "api": "https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models",
120074
+ "shape": "completions"
120075
+ },
120076
+ "cost": {
120077
+ "input": 1.74,
120078
+ "output": 3.48
120079
+ }
120080
+ },
120206
120081
  "o1-mini": {
120207
120082
  "id": "o1-mini",
120208
120083
  "name": "o1-mini",
@@ -120700,6 +120575,41 @@
120700
120575
  "cache_read": 7.5
120701
120576
  }
120702
120577
  },
120578
+ "deepseek-v4-pro": {
120579
+ "id": "deepseek-v4-pro",
120580
+ "name": "DeepSeek-V4-Pro",
120581
+ "family": "deepseek-thinking",
120582
+ "attachment": false,
120583
+ "reasoning": true,
120584
+ "tool_call": false,
120585
+ "structured_output": true,
120586
+ "temperature": true,
120587
+ "knowledge": "2025-05",
120588
+ "release_date": "2026-04-24",
120589
+ "last_updated": "2026-04-24",
120590
+ "modalities": {
120591
+ "input": [
120592
+ "text"
120593
+ ],
120594
+ "output": [
120595
+ "text"
120596
+ ]
120597
+ },
120598
+ "open_weights": true,
120599
+ "limit": {
120600
+ "context": 1000000,
120601
+ "output": 384000
120602
+ },
120603
+ "provider": {
120604
+ "npm": "@ai-sdk/openai-compatible",
120605
+ "api": "https://${AZURE_RESOURCE_NAME}.services.ai.azure.com/models",
120606
+ "shape": "completions"
120607
+ },
120608
+ "cost": {
120609
+ "input": 0.19,
120610
+ "output": 0.51
120611
+ }
120612
+ },
120703
120613
  "kimi-k2.5": {
120704
120614
  "id": "kimi-k2.5",
120705
120615
  "name": "Kimi K2.5",
@@ -128396,6 +128306,94 @@
128396
128306
  "output": 0.2
128397
128307
  }
128398
128308
  },
128309
+ "global.anthropic.claude-fable-5": {
128310
+ "id": "global.anthropic.claude-fable-5",
128311
+ "name": "Claude Fable 5 (Global)",
128312
+ "family": "claude-fable",
128313
+ "attachment": true,
128314
+ "reasoning": true,
128315
+ "reasoning_options": [
128316
+ {
128317
+ "type": "effort",
128318
+ "values": [
128319
+ "low",
128320
+ "medium",
128321
+ "high",
128322
+ "xhigh",
128323
+ "max"
128324
+ ]
128325
+ }
128326
+ ],
128327
+ "tool_call": true,
128328
+ "temperature": false,
128329
+ "knowledge": "2026-01-31",
128330
+ "release_date": "2026-06-09",
128331
+ "last_updated": "2026-06-09",
128332
+ "modalities": {
128333
+ "input": [
128334
+ "text",
128335
+ "image"
128336
+ ],
128337
+ "output": [
128338
+ "text"
128339
+ ]
128340
+ },
128341
+ "open_weights": false,
128342
+ "limit": {
128343
+ "context": 1000000,
128344
+ "output": 128000
128345
+ },
128346
+ "cost": {
128347
+ "input": 10,
128348
+ "output": 50,
128349
+ "cache_read": 1,
128350
+ "cache_write": 12.5
128351
+ }
128352
+ },
128353
+ "eu.anthropic.claude-fable-5": {
128354
+ "id": "eu.anthropic.claude-fable-5",
128355
+ "name": "Claude Fable 5 (EU)",
128356
+ "family": "claude-fable",
128357
+ "attachment": true,
128358
+ "reasoning": true,
128359
+ "reasoning_options": [
128360
+ {
128361
+ "type": "effort",
128362
+ "values": [
128363
+ "low",
128364
+ "medium",
128365
+ "high",
128366
+ "xhigh",
128367
+ "max"
128368
+ ]
128369
+ }
128370
+ ],
128371
+ "tool_call": true,
128372
+ "temperature": false,
128373
+ "knowledge": "2026-01-31",
128374
+ "release_date": "2026-06-09",
128375
+ "last_updated": "2026-06-09",
128376
+ "modalities": {
128377
+ "input": [
128378
+ "text",
128379
+ "image"
128380
+ ],
128381
+ "output": [
128382
+ "text"
128383
+ ]
128384
+ },
128385
+ "open_weights": false,
128386
+ "limit": {
128387
+ "context": 1000000,
128388
+ "output": 128000
128389
+ },
128390
+ "cost": {
128391
+ "input": 11,
128392
+ "output": 55,
128393
+ "cache_read": 1.1,
128394
+ "cache_write": 13.75
128395
+ }
128396
+ },
128399
128397
  "us.meta.llama4-maverick-17b-instruct-v1:0": {
128400
128398
  "id": "us.meta.llama4-maverick-17b-instruct-v1:0",
128401
128399
  "name": "Llama 4 Maverick 17B Instruct (US)",
@@ -128812,6 +128810,50 @@
128812
128810
  "cache_write": 3.75
128813
128811
  }
128814
128812
  },
128813
+ "us.anthropic.claude-fable-5": {
128814
+ "id": "us.anthropic.claude-fable-5",
128815
+ "name": "Claude Fable 5 (US)",
128816
+ "family": "claude-fable",
128817
+ "attachment": true,
128818
+ "reasoning": true,
128819
+ "reasoning_options": [
128820
+ {
128821
+ "type": "effort",
128822
+ "values": [
128823
+ "low",
128824
+ "medium",
128825
+ "high",
128826
+ "xhigh",
128827
+ "max"
128828
+ ]
128829
+ }
128830
+ ],
128831
+ "tool_call": true,
128832
+ "temperature": false,
128833
+ "knowledge": "2026-01-31",
128834
+ "release_date": "2026-06-09",
128835
+ "last_updated": "2026-06-09",
128836
+ "modalities": {
128837
+ "input": [
128838
+ "text",
128839
+ "image"
128840
+ ],
128841
+ "output": [
128842
+ "text"
128843
+ ]
128844
+ },
128845
+ "open_weights": false,
128846
+ "limit": {
128847
+ "context": 1000000,
128848
+ "output": 128000
128849
+ },
128850
+ "cost": {
128851
+ "input": 10,
128852
+ "output": 50,
128853
+ "cache_read": 1,
128854
+ "cache_write": 12.5
128855
+ }
128856
+ },
128815
128857
  "zai.glm-4.7-flash": {
128816
128858
  "id": "zai.glm-4.7-flash",
128817
128859
  "name": "GLM-4.7-Flash",
@@ -144195,6 +144237,51 @@
144195
144237
  "cache_write": 6.25
144196
144238
  }
144197
144239
  },
144240
+ "anthropic/claude-fable-5": {
144241
+ "id": "anthropic/claude-fable-5",
144242
+ "name": "Claude Fable 5",
144243
+ "family": "claude",
144244
+ "attachment": true,
144245
+ "reasoning": true,
144246
+ "reasoning_options": [
144247
+ {
144248
+ "type": "effort",
144249
+ "values": [
144250
+ "low",
144251
+ "medium",
144252
+ "high",
144253
+ "xhigh",
144254
+ "max"
144255
+ ]
144256
+ }
144257
+ ],
144258
+ "tool_call": true,
144259
+ "temperature": true,
144260
+ "knowledge": "2026-01-31",
144261
+ "release_date": "2026-06-09",
144262
+ "last_updated": "2026-06-09",
144263
+ "modalities": {
144264
+ "input": [
144265
+ "text",
144266
+ "image",
144267
+ "pdf"
144268
+ ],
144269
+ "output": [
144270
+ "text"
144271
+ ]
144272
+ },
144273
+ "open_weights": false,
144274
+ "limit": {
144275
+ "context": 1000000,
144276
+ "output": 128000
144277
+ },
144278
+ "cost": {
144279
+ "input": 10,
144280
+ "output": 50,
144281
+ "cache_read": 1,
144282
+ "cache_write": 12.5
144283
+ }
144284
+ },
144198
144285
  "anthropic/claude-opus-4.6": {
144199
144286
  "id": "anthropic/claude-opus-4.6",
144200
144287
  "name": "Claude Opus 4.6",
@@ -146783,36 +146870,6 @@
146783
146870
  "cache_read": 0.1
146784
146871
  }
146785
146872
  },
146786
- "moonshotai/kimi-k2": {
146787
- "id": "moonshotai/kimi-k2",
146788
- "name": "Kimi K2 Instruct",
146789
- "family": "kimi",
146790
- "attachment": false,
146791
- "reasoning": false,
146792
- "tool_call": true,
146793
- "temperature": true,
146794
- "knowledge": "2024-10",
146795
- "release_date": "2025-07-14",
146796
- "last_updated": "2025-07-14",
146797
- "modalities": {
146798
- "input": [
146799
- "text"
146800
- ],
146801
- "output": [
146802
- "text"
146803
- ]
146804
- },
146805
- "open_weights": true,
146806
- "limit": {
146807
- "context": 131072,
146808
- "output": 16384
146809
- },
146810
- "status": "deprecated",
146811
- "cost": {
146812
- "input": 1,
146813
- "output": 3
146814
- }
146815
- },
146816
146873
  "perplexity/sonar": {
146817
146874
  "id": "perplexity/sonar",
146818
146875
  "name": "Sonar",
@@ -156761,6 +156818,54 @@
156761
156818
  "output": 0
156762
156819
  }
156763
156820
  },
156821
+ "claude-fable-5": {
156822
+ "id": "claude-fable-5",
156823
+ "name": "Claude Fable 5",
156824
+ "family": "claude-fable",
156825
+ "attachment": true,
156826
+ "reasoning": true,
156827
+ "reasoning_options": [
156828
+ {
156829
+ "type": "effort",
156830
+ "values": [
156831
+ "low",
156832
+ "medium",
156833
+ "high",
156834
+ "xhigh",
156835
+ "max"
156836
+ ]
156837
+ }
156838
+ ],
156839
+ "tool_call": true,
156840
+ "temperature": false,
156841
+ "knowledge": "2026-01-31",
156842
+ "release_date": "2026-06-09",
156843
+ "last_updated": "2026-06-09",
156844
+ "modalities": {
156845
+ "input": [
156846
+ "text",
156847
+ "image",
156848
+ "pdf"
156849
+ ],
156850
+ "output": [
156851
+ "text"
156852
+ ]
156853
+ },
156854
+ "open_weights": false,
156855
+ "limit": {
156856
+ "context": 1000000,
156857
+ "output": 128000
156858
+ },
156859
+ "provider": {
156860
+ "npm": "@ai-sdk/anthropic"
156861
+ },
156862
+ "cost": {
156863
+ "input": 10,
156864
+ "output": 50,
156865
+ "cache_read": 1,
156866
+ "cache_write": 12.5
156867
+ }
156868
+ },
156764
156869
  "gemini-3-flash": {
156765
156870
  "id": "gemini-3-flash",
156766
156871
  "name": "Gemini 3 Flash",
@@ -157992,6 +158097,48 @@
157992
158097
  "cache_write": 6.25
157993
158098
  }
157994
158099
  },
158100
+ "north-mini-code-free": {
158101
+ "id": "north-mini-code-free",
158102
+ "name": "North Mini Code Free",
158103
+ "family": "north-free",
158104
+ "attachment": false,
158105
+ "reasoning": true,
158106
+ "reasoning_options": [
158107
+ {
158108
+ "type": "effort",
158109
+ "values": [
158110
+ "none",
158111
+ "high"
158112
+ ]
158113
+ }
158114
+ ],
158115
+ "tool_call": true,
158116
+ "interleaved": {
158117
+ "field": "reasoning_content"
158118
+ },
158119
+ "structured_output": true,
158120
+ "temperature": true,
158121
+ "knowledge": "2025-09-23",
158122
+ "release_date": "2026-06-09",
158123
+ "last_updated": "2026-06-09",
158124
+ "modalities": {
158125
+ "input": [
158126
+ "text"
158127
+ ],
158128
+ "output": [
158129
+ "text"
158130
+ ]
158131
+ },
158132
+ "open_weights": true,
158133
+ "limit": {
158134
+ "context": 256000,
158135
+ "output": 64000
158136
+ },
158137
+ "cost": {
158138
+ "input": 0,
158139
+ "output": 0
158140
+ }
158141
+ },
157995
158142
  "glm-5.1": {
157996
158143
  "id": "glm-5.1",
157997
158144
  "name": "GLM-5.1",
@@ -162486,7 +162633,23 @@
162486
162633
  "family": "glm-flash",
162487
162634
  "attachment": false,
162488
162635
  "reasoning": true,
162636
+ "reasoning_options": [
162637
+ {
162638
+ "type": "toggle"
162639
+ },
162640
+ {
162641
+ "type": "effort",
162642
+ "values": [
162643
+ "low",
162644
+ "medium",
162645
+ "high"
162646
+ ]
162647
+ }
162648
+ ],
162489
162649
  "tool_call": true,
162650
+ "interleaved": {
162651
+ "field": "reasoning_content"
162652
+ },
162490
162653
  "structured_output": true,
162491
162654
  "temperature": true,
162492
162655
  "knowledge": "2025-04",
@@ -162545,6 +162708,7 @@
162545
162708
  "family": "qwen",
162546
162709
  "attachment": false,
162547
162710
  "reasoning": true,
162711
+ "reasoning_options": [],
162548
162712
  "tool_call": false,
162549
162713
  "structured_output": false,
162550
162714
  "temperature": true,
@@ -162574,6 +162738,19 @@
162574
162738
  "family": "qwen",
162575
162739
  "attachment": false,
162576
162740
  "reasoning": true,
162741
+ "reasoning_options": [
162742
+ {
162743
+ "type": "toggle"
162744
+ },
162745
+ {
162746
+ "type": "effort",
162747
+ "values": [
162748
+ "low",
162749
+ "medium",
162750
+ "high"
162751
+ ]
162752
+ }
162753
+ ],
162577
162754
  "tool_call": true,
162578
162755
  "structured_output": false,
162579
162756
  "temperature": true,
@@ -162603,6 +162780,19 @@
162603
162780
  "family": "kimi-k2.6",
162604
162781
  "attachment": true,
162605
162782
  "reasoning": true,
162783
+ "reasoning_options": [
162784
+ {
162785
+ "type": "toggle"
162786
+ },
162787
+ {
162788
+ "type": "effort",
162789
+ "values": [
162790
+ "low",
162791
+ "medium",
162792
+ "high"
162793
+ ]
162794
+ }
162795
+ ],
162606
162796
  "tool_call": true,
162607
162797
  "interleaved": {
162608
162798
  "field": "reasoning_content"
@@ -162638,6 +162828,7 @@
162638
162828
  "family": "deepseek-thinking",
162639
162829
  "attachment": false,
162640
162830
  "reasoning": true,
162831
+ "reasoning_options": [],
162641
162832
  "tool_call": false,
162642
162833
  "structured_output": false,
162643
162834
  "temperature": true,
@@ -162668,10 +162859,21 @@
162668
162859
  "family": "nemotron",
162669
162860
  "attachment": false,
162670
162861
  "reasoning": true,
162862
+ "reasoning_options": [
162863
+ {
162864
+ "type": "toggle"
162865
+ },
162866
+ {
162867
+ "type": "effort",
162868
+ "values": [
162869
+ "low",
162870
+ "medium",
162871
+ "high"
162872
+ ]
162873
+ }
162874
+ ],
162671
162875
  "tool_call": true,
162672
- "interleaved": {
162673
- "field": "reasoning_content"
162674
- },
162876
+ "interleaved": true,
162675
162877
  "structured_output": true,
162676
162878
  "temperature": true,
162677
162879
  "release_date": "2026-03-11",
@@ -162965,7 +163167,21 @@
162965
163167
  "family": "gemma",
162966
163168
  "attachment": true,
162967
163169
  "reasoning": true,
163170
+ "reasoning_options": [
163171
+ {
163172
+ "type": "toggle"
163173
+ },
163174
+ {
163175
+ "type": "effort",
163176
+ "values": [
163177
+ "low",
163178
+ "medium",
163179
+ "high"
163180
+ ]
163181
+ }
163182
+ ],
162968
163183
  "tool_call": true,
163184
+ "interleaved": true,
162969
163185
  "structured_output": true,
162970
163186
  "temperature": true,
162971
163187
  "release_date": "2026-04-02",
@@ -162995,6 +163211,16 @@
162995
163211
  "family": "gpt-oss",
162996
163212
  "attachment": false,
162997
163213
  "reasoning": true,
163214
+ "reasoning_options": [
163215
+ {
163216
+ "type": "effort",
163217
+ "values": [
163218
+ "low",
163219
+ "medium",
163220
+ "high"
163221
+ ]
163222
+ }
163223
+ ],
162998
163224
  "tool_call": true,
162999
163225
  "structured_output": true,
163000
163226
  "temperature": true,
@@ -163024,6 +163250,16 @@
163024
163250
  "family": "gpt-oss",
163025
163251
  "attachment": false,
163026
163252
  "reasoning": true,
163253
+ "reasoning_options": [
163254
+ {
163255
+ "type": "effort",
163256
+ "values": [
163257
+ "low",
163258
+ "medium",
163259
+ "high"
163260
+ ]
163261
+ }
163262
+ ],
163027
163263
  "tool_call": true,
163028
163264
  "structured_output": true,
163029
163265
  "temperature": true,