@desplega.ai/agent-swarm 1.87.0 → 1.88.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 (59) hide show
  1. package/README.md +2 -1
  2. package/openapi.json +13 -1
  3. package/package.json +5 -5
  4. package/src/be/db.ts +49 -7
  5. package/src/be/migrations/080_skill_system_defaults.sql +8 -0
  6. package/src/be/modelsdev-cache.json +1123 -1034
  7. package/src/be/seed/registry.ts +3 -2
  8. package/src/be/seed-skills/index.ts +172 -0
  9. package/src/cli.tsx +33 -4
  10. package/src/commands/e2b-stack-wizard.tsx +394 -0
  11. package/src/commands/e2b.ts +1352 -53
  12. package/src/commands/onboard/dashboard-url.ts +29 -0
  13. package/src/commands/onboard/steps/post-dashboard.tsx +3 -1
  14. package/src/commands/onboard.tsx +3 -1
  15. package/src/commands/runner.ts +1 -0
  16. package/src/e2b/dispatch.ts +234 -18
  17. package/src/http/memory.ts +13 -1
  18. package/src/http/skills.ts +53 -0
  19. package/src/http/webhooks.ts +75 -0
  20. package/src/integrations/kapso/client.ts +82 -0
  21. package/src/memory/automatic-task-gate.ts +47 -0
  22. package/src/prompts/base-prompt.ts +16 -1
  23. package/src/prompts/session-templates.ts +51 -0
  24. package/src/providers/claude-adapter.ts +19 -0
  25. package/src/providers/codex-adapter.ts +22 -0
  26. package/src/providers/ctx-mode-env.ts +10 -0
  27. package/src/providers/opencode-adapter.ts +50 -1
  28. package/src/slack/blocks.ts +12 -4
  29. package/src/slack/watcher.ts +3 -3
  30. package/src/telemetry.ts +14 -1
  31. package/src/templates.d.ts +4 -0
  32. package/src/tests/base-prompt.test.ts +41 -0
  33. package/src/tests/claude-adapter.test.ts +86 -1
  34. package/src/tests/codex-adapter.test.ts +89 -0
  35. package/src/tests/e2b-dispatch.test.ts +603 -11
  36. package/src/tests/http-api-integration.test.ts +113 -0
  37. package/src/tests/kapso-client.test.ts +74 -1
  38. package/src/tests/kapso-inbound.test.ts +60 -2
  39. package/src/tests/opencode-adapter.test.ts +95 -0
  40. package/src/tests/prompt-template-session.test.ts +4 -2
  41. package/src/tests/self-improvement.test.ts +89 -0
  42. package/src/tests/skill-update-scope.test.ts +88 -1
  43. package/src/tests/slack-blocks.test.ts +15 -0
  44. package/src/tests/system-default-skills.test.ts +119 -0
  45. package/src/tests/telemetry-init.test.ts +86 -0
  46. package/src/tools/skills/skill-delete.ts +14 -0
  47. package/src/tools/skills/skill-update.ts +14 -0
  48. package/src/tools/store-progress.ts +19 -5
  49. package/src/types.ts +1 -0
  50. package/templates/skills/artifacts/config.json +1 -0
  51. package/templates/skills/kv-storage/config.json +1 -0
  52. package/templates/skills/pages/config.json +1 -0
  53. package/templates/skills/scheduled-task-resilience/config.json +1 -0
  54. package/templates/skills/swarm-scripts/SKILL.md +91 -0
  55. package/templates/skills/swarm-scripts/config.json +14 -0
  56. package/templates/skills/swarm-scripts/content.md +86 -0
  57. package/templates/skills/workflow-iterate/config.json +1 -0
  58. package/templates/skills/workflow-structured-output/config.json +1 -0
  59. package/tsconfig.json +2 -1
@@ -25689,6 +25689,37 @@
25689
25689
  "output": 0
25690
25690
  }
25691
25691
  },
25692
+ "anthropic-claude-opus-4.8": {
25693
+ "id": "anthropic-claude-opus-4.8",
25694
+ "name": "Claude Opus 4.8",
25695
+ "family": "claude-opus",
25696
+ "attachment": true,
25697
+ "reasoning": true,
25698
+ "tool_call": true,
25699
+ "temperature": true,
25700
+ "release_date": "2026-05-28",
25701
+ "last_updated": "2026-05-29",
25702
+ "modalities": {
25703
+ "input": [
25704
+ "text",
25705
+ "image"
25706
+ ],
25707
+ "output": [
25708
+ "text"
25709
+ ]
25710
+ },
25711
+ "open_weights": false,
25712
+ "limit": {
25713
+ "context": 1000000,
25714
+ "output": 128000
25715
+ },
25716
+ "cost": {
25717
+ "input": 5,
25718
+ "output": 25,
25719
+ "cache_read": 0.5,
25720
+ "cache_write": 6.25
25721
+ }
25722
+ },
25692
25723
  "qwen3.5-397b-a17b": {
25693
25724
  "id": "qwen3.5-397b-a17b",
25694
25725
  "name": "Qwen 3.5 397B A17B",
@@ -25781,6 +25812,30 @@
25781
25812
  "cache_write": 1.25
25782
25813
  }
25783
25814
  },
25815
+ "deepseek-4-flash": {
25816
+ "id": "deepseek-4-flash",
25817
+ "name": "Deepseek V4 Flash",
25818
+ "family": "deepseek",
25819
+ "attachment": false,
25820
+ "reasoning": false,
25821
+ "tool_call": true,
25822
+ "temperature": true,
25823
+ "release_date": "2026-05-27",
25824
+ "last_updated": "2026-05-29",
25825
+ "modalities": {
25826
+ "input": [
25827
+ "text"
25828
+ ],
25829
+ "output": [
25830
+ "text"
25831
+ ]
25832
+ },
25833
+ "open_weights": false,
25834
+ "limit": {
25835
+ "context": 262144,
25836
+ "output": 8192
25837
+ }
25838
+ },
25784
25839
  "mistral-nemo-instruct-2407": {
25785
25840
  "id": "mistral-nemo-instruct-2407",
25786
25841
  "name": "Mistral Nemo Instruct",
@@ -55746,6 +55801,37 @@
55746
55801
  "cache_write": 0
55747
55802
  }
55748
55803
  },
55804
+ "glm-4.6v": {
55805
+ "id": "glm-4.6v",
55806
+ "name": "GLM-4.6V",
55807
+ "family": "glm",
55808
+ "attachment": true,
55809
+ "reasoning": true,
55810
+ "tool_call": true,
55811
+ "temperature": true,
55812
+ "knowledge": "2025-04",
55813
+ "release_date": "2025-12-08",
55814
+ "last_updated": "2025-12-08",
55815
+ "modalities": {
55816
+ "input": [
55817
+ "text",
55818
+ "image",
55819
+ "video"
55820
+ ],
55821
+ "output": [
55822
+ "text"
55823
+ ]
55824
+ },
55825
+ "open_weights": true,
55826
+ "limit": {
55827
+ "context": 128000,
55828
+ "output": 32768
55829
+ },
55830
+ "cost": {
55831
+ "input": 0.3,
55832
+ "output": 0.9
55833
+ }
55834
+ },
55749
55835
  "glm-4.7": {
55750
55836
  "id": "glm-4.7",
55751
55837
  "name": "GLM-4.7",
@@ -62276,36 +62362,6 @@
62276
62362
  "output": 1.1
62277
62363
  }
62278
62364
  },
62279
- "alfredpros/codellama-7b-instruct-solidity": {
62280
- "id": "alfredpros/codellama-7b-instruct-solidity",
62281
- "name": "CodeLLaMa 7B Instruct Solidity",
62282
- "family": "llama",
62283
- "attachment": false,
62284
- "reasoning": false,
62285
- "tool_call": false,
62286
- "structured_output": false,
62287
- "temperature": true,
62288
- "knowledge": "2023-06-30",
62289
- "release_date": "2025-04-14",
62290
- "last_updated": "2025-04-14",
62291
- "modalities": {
62292
- "input": [
62293
- "text"
62294
- ],
62295
- "output": [
62296
- "text"
62297
- ]
62298
- },
62299
- "open_weights": true,
62300
- "limit": {
62301
- "context": 4096,
62302
- "output": 4096
62303
- },
62304
- "cost": {
62305
- "input": 0.8,
62306
- "output": 1.2
62307
- }
62308
- },
62309
62365
  "rekaai/reka-edge": {
62310
62366
  "id": "rekaai/reka-edge",
62311
62367
  "name": "Reka Edge",
@@ -62547,38 +62603,6 @@
62547
62603
  "output": 3
62548
62604
  }
62549
62605
  },
62550
- "mistralai/devstral-medium": {
62551
- "id": "mistralai/devstral-medium",
62552
- "name": "Devstral Medium",
62553
- "family": "devstral",
62554
- "attachment": true,
62555
- "reasoning": false,
62556
- "tool_call": true,
62557
- "structured_output": true,
62558
- "temperature": true,
62559
- "knowledge": "2025-06-30",
62560
- "release_date": "2025-07-10",
62561
- "last_updated": "2025-07-10",
62562
- "modalities": {
62563
- "input": [
62564
- "text",
62565
- "pdf"
62566
- ],
62567
- "output": [
62568
- "text"
62569
- ]
62570
- },
62571
- "open_weights": false,
62572
- "limit": {
62573
- "context": 131072,
62574
- "output": 131072
62575
- },
62576
- "cost": {
62577
- "input": 0.4,
62578
- "output": 2,
62579
- "cache_read": 0.04
62580
- }
62581
- },
62582
62606
  "mistralai/mistral-small-24b-instruct-2501": {
62583
62607
  "id": "mistralai/mistral-small-24b-instruct-2501",
62584
62608
  "name": "Mistral Small 3",
@@ -62609,36 +62633,6 @@
62609
62633
  "output": 0.08
62610
62634
  }
62611
62635
  },
62612
- "mistralai/mistral-7b-instruct-v0.1": {
62613
- "id": "mistralai/mistral-7b-instruct-v0.1",
62614
- "name": "Mistral 7B Instruct v0.1",
62615
- "family": "mistral",
62616
- "attachment": false,
62617
- "reasoning": false,
62618
- "tool_call": false,
62619
- "structured_output": false,
62620
- "temperature": true,
62621
- "knowledge": "2023-09-30",
62622
- "release_date": "2023-09-28",
62623
- "last_updated": "2023-09-28",
62624
- "modalities": {
62625
- "input": [
62626
- "text"
62627
- ],
62628
- "output": [
62629
- "text"
62630
- ]
62631
- },
62632
- "open_weights": true,
62633
- "limit": {
62634
- "context": 2824,
62635
- "output": 2824
62636
- },
62637
- "cost": {
62638
- "input": 0.11,
62639
- "output": 0.19
62640
- }
62641
- },
62642
62636
  "mistralai/mistral-medium-3.1": {
62643
62637
  "id": "mistralai/mistral-medium-3.1",
62644
62638
  "name": "Mistral Medium 3.1",
@@ -63020,38 +63014,6 @@
63020
63014
  "cache_read": 0.2
63021
63015
  }
63022
63016
  },
63023
- "mistralai/devstral-small": {
63024
- "id": "mistralai/devstral-small",
63025
- "name": "Devstral Small 1.1",
63026
- "family": "devstral",
63027
- "attachment": true,
63028
- "reasoning": false,
63029
- "tool_call": true,
63030
- "structured_output": true,
63031
- "temperature": true,
63032
- "knowledge": "2025-03-31",
63033
- "release_date": "2025-07-10",
63034
- "last_updated": "2025-07-10",
63035
- "modalities": {
63036
- "input": [
63037
- "text",
63038
- "pdf"
63039
- ],
63040
- "output": [
63041
- "text"
63042
- ]
63043
- },
63044
- "open_weights": true,
63045
- "limit": {
63046
- "context": 131072,
63047
- "output": 131072
63048
- },
63049
- "cost": {
63050
- "input": 0.1,
63051
- "output": 0.3,
63052
- "cache_read": 0.01
63053
- }
63054
- },
63055
63017
  "mistralai/mistral-small-3.2-24b-instruct": {
63056
63018
  "id": "mistralai/mistral-small-3.2-24b-instruct",
63057
63019
  "name": "Mistral Small 3.2 24B",
@@ -63115,39 +63077,6 @@
63115
63077
  "cache_read": 0.03
63116
63078
  }
63117
63079
  },
63118
- "mistralai/pixtral-large-2411": {
63119
- "id": "mistralai/pixtral-large-2411",
63120
- "name": "Pixtral Large 2411",
63121
- "family": "mistral",
63122
- "attachment": true,
63123
- "reasoning": false,
63124
- "tool_call": true,
63125
- "structured_output": true,
63126
- "temperature": true,
63127
- "knowledge": "2024-07-31",
63128
- "release_date": "2024-11-19",
63129
- "last_updated": "2024-11-19",
63130
- "modalities": {
63131
- "input": [
63132
- "text",
63133
- "image",
63134
- "pdf"
63135
- ],
63136
- "output": [
63137
- "text"
63138
- ]
63139
- },
63140
- "open_weights": false,
63141
- "limit": {
63142
- "context": 131072,
63143
- "output": 131072
63144
- },
63145
- "cost": {
63146
- "input": 2,
63147
- "output": 6,
63148
- "cache_read": 0.2
63149
- }
63150
- },
63151
63080
  "sao10k/l3.1-euryale-70b": {
63152
63081
  "id": "sao10k/l3.1-euryale-70b",
63153
63082
  "name": "Llama 3.1 Euryale 70B v2.2",
@@ -64842,12 +64771,13 @@
64842
64771
  },
64843
64772
  "open_weights": true,
64844
64773
  "limit": {
64845
- "context": 131072,
64846
- "output": 81920
64774
+ "context": 262144,
64775
+ "output": 262144
64847
64776
  },
64848
64777
  "cost": {
64849
- "input": 0.1495,
64850
- "output": 1.495
64778
+ "input": 0.1,
64779
+ "output": 0.1,
64780
+ "cache_read": 0.1
64851
64781
  }
64852
64782
  },
64853
64783
  "qwen/qwen3-8b": {
@@ -65183,11 +65113,12 @@
65183
65113
  "open_weights": true,
65184
65114
  "limit": {
65185
65115
  "context": 262144,
65186
- "output": 81920
65116
+ "output": 262144
65187
65117
  },
65188
65118
  "cost": {
65189
- "input": 0.139,
65190
- "output": 1
65119
+ "input": 0.14,
65120
+ "output": 1,
65121
+ "cache_read": 0.05
65191
65122
  }
65192
65123
  },
65193
65124
  "qwen/qwen3.6-flash": {
@@ -65413,7 +65344,7 @@
65413
65344
  "family": "qwen",
65414
65345
  "attachment": false,
65415
65346
  "reasoning": false,
65416
- "tool_call": true,
65347
+ "tool_call": false,
65417
65348
  "structured_output": false,
65418
65349
  "temperature": true,
65419
65350
  "knowledge": "2024-06-30",
@@ -65672,13 +65603,13 @@
65672
65603
  },
65673
65604
  "open_weights": false,
65674
65605
  "limit": {
65675
- "context": 262142,
65676
- "output": 262142
65606
+ "context": 262144,
65607
+ "output": 262144
65677
65608
  },
65678
65609
  "cost": {
65679
- "input": 0.73,
65680
- "output": 3.49,
65681
- "cache_read": 0.25
65610
+ "input": 0.684,
65611
+ "output": 3.42,
65612
+ "cache_read": 0.144
65682
65613
  }
65683
65614
  },
65684
65615
  "~google/gemini-pro-latest": {
@@ -66136,7 +66067,7 @@
66136
66067
  "family": "llama",
66137
66068
  "attachment": true,
66138
66069
  "reasoning": false,
66139
- "tool_call": false,
66070
+ "tool_call": true,
66140
66071
  "structured_output": true,
66141
66072
  "temperature": true,
66142
66073
  "knowledge": "2024-08-31",
@@ -66735,66 +66666,6 @@
66735
66666
  "output": 0.56
66736
66667
  }
66737
66668
  },
66738
- "baidu/ernie-4.5-21b-a3b-thinking": {
66739
- "id": "baidu/ernie-4.5-21b-a3b-thinking",
66740
- "name": "ERNIE 4.5 21B A3B Thinking",
66741
- "family": "ernie",
66742
- "attachment": false,
66743
- "reasoning": true,
66744
- "tool_call": false,
66745
- "structured_output": false,
66746
- "temperature": true,
66747
- "knowledge": "2025-03-31",
66748
- "release_date": "2025-10-09",
66749
- "last_updated": "2025-10-09",
66750
- "modalities": {
66751
- "input": [
66752
- "text"
66753
- ],
66754
- "output": [
66755
- "text"
66756
- ]
66757
- },
66758
- "open_weights": true,
66759
- "limit": {
66760
- "context": 131072,
66761
- "output": 65536
66762
- },
66763
- "cost": {
66764
- "input": 0.07,
66765
- "output": 0.28
66766
- }
66767
- },
66768
- "baidu/ernie-4.5-21b-a3b": {
66769
- "id": "baidu/ernie-4.5-21b-a3b",
66770
- "name": "ERNIE 4.5 21B A3B",
66771
- "family": "ernie",
66772
- "attachment": false,
66773
- "reasoning": false,
66774
- "tool_call": true,
66775
- "structured_output": false,
66776
- "temperature": true,
66777
- "knowledge": "2025-03-31",
66778
- "release_date": "2025-08-12",
66779
- "last_updated": "2025-08-12",
66780
- "modalities": {
66781
- "input": [
66782
- "text"
66783
- ],
66784
- "output": [
66785
- "text"
66786
- ]
66787
- },
66788
- "open_weights": true,
66789
- "limit": {
66790
- "context": 120000,
66791
- "output": 8000
66792
- },
66793
- "cost": {
66794
- "input": 0.07,
66795
- "output": 0.28
66796
- }
66797
- },
66798
66669
  "baidu/ernie-4.5-300b-a47b": {
66799
66670
  "id": "baidu/ernie-4.5-300b-a47b",
66800
66671
  "name": "ERNIE 4.5 300B A47B ",
@@ -68301,9 +68172,9 @@
68301
68172
  "output": 65536
68302
68173
  },
68303
68174
  "cost": {
68304
- "input": 0.075,
68305
- "output": 0.625,
68306
- "cache_read": 0.015
68175
+ "input": 0.3,
68176
+ "output": 2.5,
68177
+ "cache_read": 0.06
68307
68178
  }
68308
68179
  },
68309
68180
  "morph/morph-v3-fast": {
@@ -68453,7 +68324,7 @@
68453
68324
  },
68454
68325
  "open_weights": false,
68455
68326
  "limit": {
68456
- "context": 1000000,
68327
+ "context": 1048576,
68457
68328
  "output": 8192
68458
68329
  },
68459
68330
  "cost": {
@@ -69228,7 +69099,7 @@
69228
69099
  "output": 131072
69229
69100
  },
69230
69101
  "cost": {
69231
- "input": 0.03,
69102
+ "input": 0.029,
69232
69103
  "output": 0.14
69233
69104
  }
69234
69105
  },
@@ -69417,38 +69288,6 @@
69417
69288
  "output": 0
69418
69289
  }
69419
69290
  },
69420
- "openai/gpt-4o-audio-preview": {
69421
- "id": "openai/gpt-4o-audio-preview",
69422
- "name": "GPT-4o Audio",
69423
- "family": "gpt",
69424
- "attachment": true,
69425
- "reasoning": false,
69426
- "tool_call": true,
69427
- "structured_output": true,
69428
- "temperature": true,
69429
- "knowledge": "2023-10-31",
69430
- "release_date": "2025-08-15",
69431
- "last_updated": "2025-08-15",
69432
- "modalities": {
69433
- "input": [
69434
- "audio",
69435
- "text"
69436
- ],
69437
- "output": [
69438
- "text",
69439
- "audio"
69440
- ]
69441
- },
69442
- "open_weights": false,
69443
- "limit": {
69444
- "context": 128000,
69445
- "output": 16384
69446
- },
69447
- "cost": {
69448
- "input": 2.5,
69449
- "output": 10
69450
- }
69451
- },
69452
69291
  "openai/gpt-5.2-chat": {
69453
69292
  "id": "openai/gpt-5.2-chat",
69454
69293
  "name": "GPT-5.2 Chat",
@@ -70369,38 +70208,6 @@
70369
70208
  "cache_read": 0.182
70370
70209
  }
70371
70210
  },
70372
- "mistralai/mistral-large-2411": {
70373
- "id": "mistralai/mistral-large-2411",
70374
- "name": "Mistral Large 2.1",
70375
- "family": "mistral-large",
70376
- "attachment": true,
70377
- "reasoning": false,
70378
- "tool_call": true,
70379
- "structured_output": true,
70380
- "temperature": true,
70381
- "knowledge": "2024-11",
70382
- "release_date": "2024-11-01",
70383
- "last_updated": "2024-11-04",
70384
- "modalities": {
70385
- "input": [
70386
- "text",
70387
- "pdf"
70388
- ],
70389
- "output": [
70390
- "text"
70391
- ]
70392
- },
70393
- "open_weights": true,
70394
- "limit": {
70395
- "context": 131072,
70396
- "output": 131072
70397
- },
70398
- "cost": {
70399
- "input": 2,
70400
- "output": 6,
70401
- "cache_read": 0.2
70402
- }
70403
- },
70404
70211
  "mistralai/mistral-small-2603": {
70405
70212
  "id": "mistralai/mistral-small-2603",
70406
70213
  "name": "Mistral Small 4",
@@ -70528,39 +70335,6 @@
70528
70335
  "cache_read": 0.04
70529
70336
  }
70530
70337
  },
70531
- "deepseek/deepseek-v4-flash:free": {
70532
- "id": "deepseek/deepseek-v4-flash:free",
70533
- "name": "DeepSeek V4 Flash (free)",
70534
- "family": "deepseek-flash",
70535
- "attachment": false,
70536
- "reasoning": true,
70537
- "tool_call": true,
70538
- "interleaved": {
70539
- "field": "reasoning_content"
70540
- },
70541
- "structured_output": false,
70542
- "temperature": false,
70543
- "knowledge": "2025-05",
70544
- "release_date": "2026-04-24",
70545
- "last_updated": "2026-04-24",
70546
- "modalities": {
70547
- "input": [
70548
- "text"
70549
- ],
70550
- "output": [
70551
- "text"
70552
- ]
70553
- },
70554
- "open_weights": true,
70555
- "limit": {
70556
- "context": 1048576,
70557
- "output": 384000
70558
- },
70559
- "cost": {
70560
- "input": 0,
70561
- "output": 0
70562
- }
70563
- },
70564
70338
  "deepseek/deepseek-chat": {
70565
70339
  "id": "deepseek/deepseek-chat",
70566
70340
  "name": "DeepSeek Chat",
@@ -70617,12 +70391,12 @@
70617
70391
  "open_weights": true,
70618
70392
  "limit": {
70619
70393
  "context": 1048576,
70620
- "output": 16384
70394
+ "output": 131072
70621
70395
  },
70622
70396
  "cost": {
70623
- "input": 0.1,
70624
- "output": 0.2,
70625
- "cache_read": 0.02
70397
+ "input": 0.0983,
70398
+ "output": 0.1966,
70399
+ "cache_read": 0.0197
70626
70400
  }
70627
70401
  },
70628
70402
  "deepseek/deepseek-v4-pro": {
@@ -71002,77 +70776,6 @@
71002
70776
  "cache_write": 6.25
71003
70777
  }
71004
70778
  },
71005
- "xiaomi/mimo-v2-omni": {
71006
- "id": "xiaomi/mimo-v2-omni",
71007
- "name": "MiMo-V2-Omni",
71008
- "family": "mimo",
71009
- "attachment": true,
71010
- "reasoning": true,
71011
- "tool_call": true,
71012
- "interleaved": {
71013
- "field": "reasoning_details"
71014
- },
71015
- "structured_output": false,
71016
- "temperature": true,
71017
- "knowledge": "2024-12",
71018
- "release_date": "2026-03-18",
71019
- "last_updated": "2026-03-18",
71020
- "modalities": {
71021
- "input": [
71022
- "text",
71023
- "audio",
71024
- "image",
71025
- "video"
71026
- ],
71027
- "output": [
71028
- "text"
71029
- ]
71030
- },
71031
- "open_weights": false,
71032
- "limit": {
71033
- "context": 262144,
71034
- "output": 65536
71035
- },
71036
- "cost": {
71037
- "input": 0.4,
71038
- "output": 2,
71039
- "cache_read": 0.08
71040
- }
71041
- },
71042
- "xiaomi/mimo-v2-pro": {
71043
- "id": "xiaomi/mimo-v2-pro",
71044
- "name": "MiMo-V2-Pro",
71045
- "family": "mimo",
71046
- "attachment": false,
71047
- "reasoning": true,
71048
- "tool_call": true,
71049
- "interleaved": {
71050
- "field": "reasoning_details"
71051
- },
71052
- "structured_output": false,
71053
- "temperature": true,
71054
- "knowledge": "2024-12",
71055
- "release_date": "2026-03-18",
71056
- "last_updated": "2026-03-18",
71057
- "modalities": {
71058
- "input": [
71059
- "text"
71060
- ],
71061
- "output": [
71062
- "text"
71063
- ]
71064
- },
71065
- "open_weights": false,
71066
- "limit": {
71067
- "context": 1048576,
71068
- "output": 131072
71069
- },
71070
- "cost": {
71071
- "input": 1,
71072
- "output": 3,
71073
- "cache_read": 0.2
71074
- }
71075
- },
71076
70779
  "xiaomi/mimo-v2.5": {
71077
70780
  "id": "xiaomi/mimo-v2.5",
71078
70781
  "name": "MiMo-V2.5",
@@ -71327,13 +71030,13 @@
71327
71030
  },
71328
71031
  "open_weights": true,
71329
71032
  "limit": {
71330
- "context": 262142,
71331
- "output": 262142
71033
+ "context": 262144,
71034
+ "output": 262144
71332
71035
  },
71333
71036
  "cost": {
71334
- "input": 0.73,
71335
- "output": 3.49,
71336
- "cache_read": 0.25
71037
+ "input": 0.684,
71038
+ "output": 3.42,
71039
+ "cache_read": 0.144
71337
71040
  }
71338
71041
  },
71339
71042
  "moonshotai/kimi-k2.6:free": {
@@ -73398,7 +73101,7 @@
73398
73101
  "output": 131072
73399
73102
  },
73400
73103
  "cost": {
73401
- "input": 0.279,
73104
+ "input": 0.26,
73402
73105
  "output": 1.2
73403
73106
  }
73404
73107
  },
@@ -73466,38 +73169,6 @@
73466
73169
  "input": 0.15,
73467
73170
  "output": 1.15
73468
73171
  }
73469
- },
73470
- "minimax/minimax-m2.5:free": {
73471
- "id": "minimax/minimax-m2.5:free",
73472
- "name": "MiniMax M2.5 (free)",
73473
- "family": "minimax",
73474
- "attachment": false,
73475
- "reasoning": true,
73476
- "tool_call": true,
73477
- "interleaved": {
73478
- "field": "reasoning_details"
73479
- },
73480
- "structured_output": false,
73481
- "temperature": true,
73482
- "release_date": "2026-02-12",
73483
- "last_updated": "2026-02-12",
73484
- "modalities": {
73485
- "input": [
73486
- "text"
73487
- ],
73488
- "output": [
73489
- "text"
73490
- ]
73491
- },
73492
- "open_weights": true,
73493
- "limit": {
73494
- "context": 196608,
73495
- "output": 8192
73496
- },
73497
- "cost": {
73498
- "input": 0,
73499
- "output": 0
73500
- }
73501
73172
  }
73502
73173
  }
73503
73174
  },
@@ -73665,6 +73336,365 @@
73665
73336
  }
73666
73337
  }
73667
73338
  },
73339
+ "snowflake-cortex": {
73340
+ "id": "snowflake-cortex",
73341
+ "env": [
73342
+ "SNOWFLAKE_ACCOUNT",
73343
+ "SNOWFLAKE_CORTEX_PAT"
73344
+ ],
73345
+ "npm": "@ai-sdk/openai-compatible",
73346
+ "api": "https://${SNOWFLAKE_ACCOUNT}.snowflakecomputing.com/api/v2/cortex/v1",
73347
+ "name": "Snowflake Cortex",
73348
+ "doc": "https://docs.snowflake.com/en/user-guide/snowflake-cortex/cortex-rest-api",
73349
+ "models": {
73350
+ "openai-gpt-5.2": {
73351
+ "id": "openai-gpt-5.2",
73352
+ "name": "GPT-5.2",
73353
+ "family": "gpt",
73354
+ "attachment": true,
73355
+ "reasoning": true,
73356
+ "tool_call": true,
73357
+ "structured_output": true,
73358
+ "temperature": false,
73359
+ "knowledge": "2025-08-31",
73360
+ "release_date": "2025-12-11",
73361
+ "last_updated": "2025-12-11",
73362
+ "modalities": {
73363
+ "input": [
73364
+ "text",
73365
+ "image"
73366
+ ],
73367
+ "output": [
73368
+ "text"
73369
+ ]
73370
+ },
73371
+ "open_weights": false,
73372
+ "limit": {
73373
+ "context": 400000,
73374
+ "input": 272000,
73375
+ "output": 128000
73376
+ }
73377
+ },
73378
+ "claude-sonnet-4-6": {
73379
+ "id": "claude-sonnet-4-6",
73380
+ "name": "Claude Sonnet 4.6",
73381
+ "family": "claude-sonnet",
73382
+ "attachment": true,
73383
+ "reasoning": true,
73384
+ "tool_call": true,
73385
+ "temperature": true,
73386
+ "knowledge": "2025-08-31",
73387
+ "release_date": "2026-02-17",
73388
+ "last_updated": "2026-03-13",
73389
+ "modalities": {
73390
+ "input": [
73391
+ "text",
73392
+ "image",
73393
+ "pdf"
73394
+ ],
73395
+ "output": [
73396
+ "text"
73397
+ ]
73398
+ },
73399
+ "open_weights": false,
73400
+ "limit": {
73401
+ "context": 1000000,
73402
+ "output": 16384
73403
+ }
73404
+ },
73405
+ "openai-gpt-4.1": {
73406
+ "id": "openai-gpt-4.1",
73407
+ "name": "GPT-4.1",
73408
+ "family": "gpt",
73409
+ "attachment": true,
73410
+ "reasoning": false,
73411
+ "tool_call": true,
73412
+ "structured_output": true,
73413
+ "temperature": true,
73414
+ "knowledge": "2024-04",
73415
+ "release_date": "2025-04-14",
73416
+ "last_updated": "2025-04-14",
73417
+ "modalities": {
73418
+ "input": [
73419
+ "text",
73420
+ "image",
73421
+ "pdf"
73422
+ ],
73423
+ "output": [
73424
+ "text"
73425
+ ]
73426
+ },
73427
+ "open_weights": false,
73428
+ "limit": {
73429
+ "context": 1047576,
73430
+ "output": 32768
73431
+ }
73432
+ },
73433
+ "openai-gpt-5.4": {
73434
+ "id": "openai-gpt-5.4",
73435
+ "name": "GPT-5.4",
73436
+ "family": "gpt",
73437
+ "attachment": true,
73438
+ "reasoning": true,
73439
+ "tool_call": true,
73440
+ "structured_output": true,
73441
+ "temperature": false,
73442
+ "knowledge": "2025-08-31",
73443
+ "release_date": "2026-03-05",
73444
+ "last_updated": "2026-03-05",
73445
+ "modalities": {
73446
+ "input": [
73447
+ "text",
73448
+ "image",
73449
+ "pdf"
73450
+ ],
73451
+ "output": [
73452
+ "text"
73453
+ ]
73454
+ },
73455
+ "open_weights": false,
73456
+ "limit": {
73457
+ "context": 1050000,
73458
+ "input": 922000,
73459
+ "output": 128000
73460
+ },
73461
+ "status": "beta",
73462
+ "experimental": {
73463
+ "modes": {
73464
+ "fast": {
73465
+ "cost": {
73466
+ "input": 5,
73467
+ "output": 30,
73468
+ "cache_read": 0.5
73469
+ },
73470
+ "provider": {
73471
+ "body": {
73472
+ "service_tier": "priority"
73473
+ }
73474
+ }
73475
+ }
73476
+ }
73477
+ }
73478
+ },
73479
+ "claude-haiku-4-5": {
73480
+ "id": "claude-haiku-4-5",
73481
+ "name": "Claude Haiku 4.5 (latest)",
73482
+ "family": "claude-haiku",
73483
+ "attachment": true,
73484
+ "reasoning": true,
73485
+ "tool_call": true,
73486
+ "temperature": true,
73487
+ "knowledge": "2025-02-28",
73488
+ "release_date": "2025-10-15",
73489
+ "last_updated": "2025-10-15",
73490
+ "modalities": {
73491
+ "input": [
73492
+ "text",
73493
+ "image",
73494
+ "pdf"
73495
+ ],
73496
+ "output": [
73497
+ "text"
73498
+ ]
73499
+ },
73500
+ "open_weights": false,
73501
+ "limit": {
73502
+ "context": 200000,
73503
+ "output": 16384
73504
+ }
73505
+ },
73506
+ "openai-gpt-5": {
73507
+ "id": "openai-gpt-5",
73508
+ "name": "GPT-5",
73509
+ "family": "gpt",
73510
+ "attachment": true,
73511
+ "reasoning": true,
73512
+ "tool_call": true,
73513
+ "structured_output": true,
73514
+ "temperature": false,
73515
+ "knowledge": "2024-09-30",
73516
+ "release_date": "2025-08-07",
73517
+ "last_updated": "2025-08-07",
73518
+ "modalities": {
73519
+ "input": [
73520
+ "text",
73521
+ "image"
73522
+ ],
73523
+ "output": [
73524
+ "text"
73525
+ ]
73526
+ },
73527
+ "open_weights": false,
73528
+ "limit": {
73529
+ "context": 400000,
73530
+ "input": 272000,
73531
+ "output": 128000
73532
+ },
73533
+ "status": "beta"
73534
+ },
73535
+ "openai-gpt-5-mini": {
73536
+ "id": "openai-gpt-5-mini",
73537
+ "name": "GPT-5 Mini",
73538
+ "family": "gpt-mini",
73539
+ "attachment": true,
73540
+ "reasoning": true,
73541
+ "tool_call": true,
73542
+ "structured_output": true,
73543
+ "temperature": false,
73544
+ "knowledge": "2024-05-30",
73545
+ "release_date": "2025-08-07",
73546
+ "last_updated": "2025-08-07",
73547
+ "modalities": {
73548
+ "input": [
73549
+ "text",
73550
+ "image"
73551
+ ],
73552
+ "output": [
73553
+ "text"
73554
+ ]
73555
+ },
73556
+ "open_weights": false,
73557
+ "limit": {
73558
+ "context": 272000,
73559
+ "input": 272000,
73560
+ "output": 8192
73561
+ },
73562
+ "status": "beta"
73563
+ },
73564
+ "openai-gpt-5-nano": {
73565
+ "id": "openai-gpt-5-nano",
73566
+ "name": "GPT-5 Nano",
73567
+ "family": "gpt-nano",
73568
+ "attachment": true,
73569
+ "reasoning": true,
73570
+ "tool_call": true,
73571
+ "structured_output": true,
73572
+ "temperature": false,
73573
+ "knowledge": "2024-05-30",
73574
+ "release_date": "2025-08-07",
73575
+ "last_updated": "2025-08-07",
73576
+ "modalities": {
73577
+ "input": [
73578
+ "text",
73579
+ "image"
73580
+ ],
73581
+ "output": [
73582
+ "text"
73583
+ ]
73584
+ },
73585
+ "open_weights": false,
73586
+ "limit": {
73587
+ "context": 400000,
73588
+ "input": 272000,
73589
+ "output": 128000
73590
+ },
73591
+ "status": "beta"
73592
+ },
73593
+ "openai-gpt-5.1": {
73594
+ "id": "openai-gpt-5.1",
73595
+ "name": "GPT-5.1",
73596
+ "family": "gpt",
73597
+ "attachment": true,
73598
+ "reasoning": true,
73599
+ "tool_call": true,
73600
+ "structured_output": true,
73601
+ "temperature": false,
73602
+ "knowledge": "2024-09-30",
73603
+ "release_date": "2025-11-13",
73604
+ "last_updated": "2025-11-13",
73605
+ "modalities": {
73606
+ "input": [
73607
+ "text",
73608
+ "image"
73609
+ ],
73610
+ "output": [
73611
+ "text"
73612
+ ]
73613
+ },
73614
+ "open_weights": false,
73615
+ "limit": {
73616
+ "context": 400000,
73617
+ "input": 272000,
73618
+ "output": 128000
73619
+ }
73620
+ },
73621
+ "claude-sonnet-4-5": {
73622
+ "id": "claude-sonnet-4-5",
73623
+ "name": "Claude Sonnet 4.5 (latest)",
73624
+ "family": "claude-sonnet",
73625
+ "attachment": true,
73626
+ "reasoning": true,
73627
+ "tool_call": true,
73628
+ "temperature": true,
73629
+ "knowledge": "2025-07-31",
73630
+ "release_date": "2025-09-29",
73631
+ "last_updated": "2025-09-29",
73632
+ "modalities": {
73633
+ "input": [
73634
+ "text",
73635
+ "image",
73636
+ "pdf"
73637
+ ],
73638
+ "output": [
73639
+ "text"
73640
+ ]
73641
+ },
73642
+ "open_weights": false,
73643
+ "limit": {
73644
+ "context": 200000,
73645
+ "output": 16384
73646
+ }
73647
+ },
73648
+ "claude-opus-4-7": {
73649
+ "id": "claude-opus-4-7",
73650
+ "name": "Claude Opus 4.7",
73651
+ "family": "claude-opus",
73652
+ "attachment": true,
73653
+ "reasoning": true,
73654
+ "tool_call": true,
73655
+ "temperature": false,
73656
+ "knowledge": "2026-01-31",
73657
+ "release_date": "2026-04-16",
73658
+ "last_updated": "2026-04-16",
73659
+ "modalities": {
73660
+ "input": [
73661
+ "text",
73662
+ "image",
73663
+ "pdf"
73664
+ ],
73665
+ "output": [
73666
+ "text"
73667
+ ]
73668
+ },
73669
+ "open_weights": false,
73670
+ "limit": {
73671
+ "context": 1000000,
73672
+ "output": 128000
73673
+ },
73674
+ "status": "beta",
73675
+ "experimental": {
73676
+ "modes": {
73677
+ "fast": {
73678
+ "cost": {
73679
+ "input": 30,
73680
+ "output": 150,
73681
+ "cache_read": 3,
73682
+ "cache_write": 37.5
73683
+ },
73684
+ "provider": {
73685
+ "body": {
73686
+ "speed": "fast"
73687
+ },
73688
+ "headers": {
73689
+ "anthropic-beta": "fast-mode-2026-02-01"
73690
+ }
73691
+ }
73692
+ }
73693
+ }
73694
+ }
73695
+ }
73696
+ }
73697
+ },
73668
73698
  "moonshotai": {
73669
73699
  "id": "moonshotai",
73670
73700
  "env": [
@@ -96164,6 +96194,34 @@
96164
96194
  "output": 0
96165
96195
  }
96166
96196
  },
96197
+ "stepfun-ai/step-3.7-flash": {
96198
+ "id": "stepfun-ai/step-3.7-flash",
96199
+ "name": "Step 3.7 Flash",
96200
+ "attachment": true,
96201
+ "reasoning": true,
96202
+ "tool_call": true,
96203
+ "temperature": true,
96204
+ "release_date": "2026-05-28",
96205
+ "last_updated": "2026-05-28",
96206
+ "modalities": {
96207
+ "input": [
96208
+ "text",
96209
+ "image"
96210
+ ],
96211
+ "output": [
96212
+ "text"
96213
+ ]
96214
+ },
96215
+ "open_weights": true,
96216
+ "limit": {
96217
+ "context": 256000,
96218
+ "output": 16384
96219
+ },
96220
+ "cost": {
96221
+ "input": 0,
96222
+ "output": 0
96223
+ }
96224
+ },
96167
96225
  "stepfun-ai/step-3.5-flash": {
96168
96226
  "id": "stepfun-ai/step-3.5-flash",
96169
96227
  "name": "Step 3.5 Flash",
@@ -102921,6 +102979,41 @@
102921
102979
  "name": "OpenCode Go",
102922
102980
  "doc": "https://opencode.ai/docs/zen",
102923
102981
  "models": {
102982
+ "minimax-m3": {
102983
+ "id": "minimax-m3",
102984
+ "name": "MiniMax M3",
102985
+ "family": "minimax-m3",
102986
+ "attachment": false,
102987
+ "reasoning": true,
102988
+ "tool_call": true,
102989
+ "temperature": true,
102990
+ "knowledge": "2025-01",
102991
+ "release_date": "2026-05-31",
102992
+ "last_updated": "2026-05-31",
102993
+ "modalities": {
102994
+ "input": [
102995
+ "text",
102996
+ "image",
102997
+ "video"
102998
+ ],
102999
+ "output": [
103000
+ "text"
103001
+ ]
103002
+ },
103003
+ "open_weights": true,
103004
+ "limit": {
103005
+ "context": 512000,
103006
+ "output": 131072
103007
+ },
103008
+ "provider": {
103009
+ "npm": "@ai-sdk/anthropic"
103010
+ },
103011
+ "cost": {
103012
+ "input": 0.6,
103013
+ "output": 2.4,
103014
+ "cache_read": 0.12
103015
+ }
103016
+ },
102924
103017
  "qwen3.5-plus": {
102925
103018
  "id": "qwen3.5-plus",
102926
103019
  "name": "Qwen3.5 Plus",
@@ -102947,6 +103040,7 @@
102947
103040
  "context": 262144,
102948
103041
  "output": 65536
102949
103042
  },
103043
+ "status": "deprecated",
102950
103044
  "provider": {
102951
103045
  "npm": "@ai-sdk/anthropic"
102952
103046
  },
@@ -106117,7 +106211,7 @@
106117
106211
  "models": {
106118
106212
  "Kimi-K2.6": {
106119
106213
  "id": "Kimi-K2.6",
106120
- "name": "Kimi K2.6",
106214
+ "name": "Kimi-K2.6",
106121
106215
  "family": "kimi",
106122
106216
  "attachment": true,
106123
106217
  "reasoning": true,
@@ -106126,11 +106220,12 @@
106126
106220
  "temperature": true,
106127
106221
  "knowledge": "2025-01",
106128
106222
  "release_date": "2026-05-13",
106129
- "last_updated": "2026-05-13",
106223
+ "last_updated": "2026-06-01",
106130
106224
  "modalities": {
106131
106225
  "input": [
106132
106226
  "text",
106133
- "image"
106227
+ "image",
106228
+ "video"
106134
106229
  ],
106135
106230
  "output": [
106136
106231
  "text"
@@ -106142,15 +106237,15 @@
106142
106237
  "output": 65536
106143
106238
  },
106144
106239
  "cost": {
106145
- "input": 1.1,
106146
- "output": 4.8,
106147
- "cache_read": 0.11,
106240
+ "input": 0.68,
106241
+ "output": 3.15,
106242
+ "cache_read": 0.07,
106148
106243
  "cache_write": 0
106149
106244
  }
106150
106245
  },
106151
106246
  "Qwen3.6-35B-A3B": {
106152
106247
  "id": "Qwen3.6-35B-A3B",
106153
- "name": "Qwen3.6 35B A3B",
106248
+ "name": "Qwen3.6-35B-A3B",
106154
106249
  "family": "qwen",
106155
106250
  "attachment": true,
106156
106251
  "reasoning": true,
@@ -106159,7 +106254,7 @@
106159
106254
  "temperature": true,
106160
106255
  "knowledge": "2025-04",
106161
106256
  "release_date": "2026-05-11",
106162
- "last_updated": "2026-05-11",
106257
+ "last_updated": "2026-05-30",
106163
106258
  "modalities": {
106164
106259
  "input": [
106165
106260
  "text",
@@ -106172,19 +106267,51 @@
106172
106267
  },
106173
106268
  "open_weights": true,
106174
106269
  "limit": {
106175
- "context": 32768,
106176
- "output": 16384
106270
+ "context": 256000,
106271
+ "input": 229376,
106272
+ "output": 65536
106177
106273
  },
106178
106274
  "cost": {
106179
- "input": 0.19,
106180
- "output": 1.25,
106275
+ "input": 0.15,
106276
+ "output": 1,
106181
106277
  "cache_read": 0.02,
106182
106278
  "cache_write": 0
106183
106279
  }
106184
106280
  },
106281
+ "qwen3.7-max": {
106282
+ "id": "qwen3.7-max",
106283
+ "name": "Qwen3.7-Max",
106284
+ "family": "qwen3.7-max",
106285
+ "attachment": false,
106286
+ "reasoning": true,
106287
+ "tool_call": true,
106288
+ "structured_output": true,
106289
+ "temperature": true,
106290
+ "release_date": "2026-05-21",
106291
+ "last_updated": "2026-05-30",
106292
+ "modalities": {
106293
+ "input": [
106294
+ "text"
106295
+ ],
106296
+ "output": [
106297
+ "text"
106298
+ ]
106299
+ },
106300
+ "open_weights": false,
106301
+ "limit": {
106302
+ "context": 256000,
106303
+ "output": 65536
106304
+ },
106305
+ "cost": {
106306
+ "input": 5,
106307
+ "output": 15,
106308
+ "cache_read": 0.5,
106309
+ "cache_write": 0
106310
+ }
106311
+ },
106185
106312
  "Qwen3.5-397B-A17B": {
106186
106313
  "id": "Qwen3.5-397B-A17B",
106187
- "name": "Qwen3.5 397B A17B",
106314
+ "name": "Qwen3.5-397B-A17B",
106188
106315
  "family": "qwen",
106189
106316
  "attachment": true,
106190
106317
  "reasoning": true,
@@ -106193,7 +106320,7 @@
106193
106320
  "temperature": true,
106194
106321
  "knowledge": "2025-04",
106195
106322
  "release_date": "2026-02-16",
106196
- "last_updated": "2026-02-16",
106323
+ "last_updated": "2026-06-01",
106197
106324
  "modalities": {
106198
106325
  "input": [
106199
106326
  "text",
@@ -106210,9 +106337,9 @@
106210
106337
  "output": 65536
106211
106338
  },
106212
106339
  "cost": {
106213
- "input": 0,
106214
- "output": 0,
106215
- "cache_read": 0,
106340
+ "input": 0.43,
106341
+ "output": 2.6,
106342
+ "cache_read": 0.04,
106216
106343
  "cache_write": 0
106217
106344
  }
106218
106345
  },
@@ -106227,7 +106354,7 @@
106227
106354
  "temperature": true,
106228
106355
  "knowledge": "2025-04",
106229
106356
  "release_date": "2026-04-07",
106230
- "last_updated": "2026-04-07",
106357
+ "last_updated": "2026-06-01",
106231
106358
  "modalities": {
106232
106359
  "input": [
106233
106360
  "text"
@@ -106242,9 +106369,79 @@
106242
106369
  "output": 131072
106243
106370
  },
106244
106371
  "cost": {
106245
- "input": 0,
106246
- "output": 0,
106247
- "cache_read": 0,
106372
+ "input": 1,
106373
+ "output": 3.2,
106374
+ "cache_read": 0.1,
106375
+ "cache_write": 0
106376
+ }
106377
+ },
106378
+ "deepseek-v4-flash": {
106379
+ "id": "deepseek-v4-flash",
106380
+ "name": "DeepSeek V4 Flash",
106381
+ "family": "deepseek-flash",
106382
+ "attachment": false,
106383
+ "reasoning": true,
106384
+ "tool_call": true,
106385
+ "interleaved": {
106386
+ "field": "reasoning_content"
106387
+ },
106388
+ "structured_output": true,
106389
+ "temperature": true,
106390
+ "knowledge": "2025-05",
106391
+ "release_date": "2026-04-24",
106392
+ "last_updated": "2026-05-30",
106393
+ "modalities": {
106394
+ "input": [
106395
+ "text"
106396
+ ],
106397
+ "output": [
106398
+ "text"
106399
+ ]
106400
+ },
106401
+ "open_weights": true,
106402
+ "limit": {
106403
+ "context": 1000000,
106404
+ "output": 384000
106405
+ },
106406
+ "cost": {
106407
+ "input": 0.14,
106408
+ "output": 0.28,
106409
+ "cache_read": 0.01,
106410
+ "cache_write": 0
106411
+ }
106412
+ },
106413
+ "deepseek-v4-pro": {
106414
+ "id": "deepseek-v4-pro",
106415
+ "name": "DeepSeek V4 Pro",
106416
+ "family": "deepseek-thinking",
106417
+ "attachment": false,
106418
+ "reasoning": true,
106419
+ "tool_call": true,
106420
+ "interleaved": {
106421
+ "field": "reasoning_content"
106422
+ },
106423
+ "structured_output": true,
106424
+ "temperature": true,
106425
+ "knowledge": "2025-05",
106426
+ "release_date": "2026-04-24",
106427
+ "last_updated": "2026-05-30",
106428
+ "modalities": {
106429
+ "input": [
106430
+ "text"
106431
+ ],
106432
+ "output": [
106433
+ "text"
106434
+ ]
106435
+ },
106436
+ "open_weights": true,
106437
+ "limit": {
106438
+ "context": 1000000,
106439
+ "output": 384000
106440
+ },
106441
+ "cost": {
106442
+ "input": 1.74,
106443
+ "output": 3.48,
106444
+ "cache_read": 0.02,
106248
106445
  "cache_write": 0
106249
106446
  }
106250
106447
  }
@@ -108770,6 +108967,38 @@
108770
108967
  "output": 60
108771
108968
  }
108772
108969
  },
108970
+ "anthropic/claude-opus-4-8": {
108971
+ "id": "anthropic/claude-opus-4-8",
108972
+ "name": "Claude Opus 4.8",
108973
+ "family": "claude-opus",
108974
+ "attachment": true,
108975
+ "reasoning": true,
108976
+ "tool_call": true,
108977
+ "temperature": false,
108978
+ "release_date": "2026-05-28",
108979
+ "last_updated": "2026-05-28",
108980
+ "modalities": {
108981
+ "input": [
108982
+ "text",
108983
+ "image",
108984
+ "pdf"
108985
+ ],
108986
+ "output": [
108987
+ "text"
108988
+ ]
108989
+ },
108990
+ "open_weights": false,
108991
+ "limit": {
108992
+ "context": 1000000,
108993
+ "output": 128000
108994
+ },
108995
+ "cost": {
108996
+ "input": 5,
108997
+ "output": 25,
108998
+ "cache_read": 0.5,
108999
+ "cache_write": 6.25
109000
+ }
109001
+ },
108773
109002
  "openai/gpt-5.5": {
108774
109003
  "id": "openai/gpt-5.5",
108775
109004
  "name": "GPT-5.5",
@@ -118716,7 +118945,7 @@
118716
118945
  ],
118717
118946
  "npm": "@ai-sdk/openai-compatible",
118718
118947
  "api": "https://api.stepfun.com/v1",
118719
- "name": "StepFun",
118948
+ "name": "StepFun (China)",
118720
118949
  "doc": "https://platform.stepfun.com/docs/zh/overview/concept",
118721
118950
  "models": {
118722
118951
  "step-2-16k": {
@@ -119649,10 +119878,10 @@
119649
119878
  "output": 128000
119650
119879
  },
119651
119880
  "cost": {
119652
- "input": 5,
119653
- "output": 25,
119654
- "cache_read": 0.5,
119655
- "cache_write": 6.25
119881
+ "input": 5.5,
119882
+ "output": 27.5,
119883
+ "cache_read": 0.55,
119884
+ "cache_write": 6.875
119656
119885
  }
119657
119886
  },
119658
119887
  "qwen.qwen3-vl-235b-a22b": {
@@ -120523,341 +120752,341 @@
120523
120752
  "cache_write": 3.75
120524
120753
  }
120525
120754
  },
120526
- "nvidia.nemotron-nano-12b-v2": {
120527
- "id": "nvidia.nemotron-nano-12b-v2",
120528
- "name": "NVIDIA Nemotron Nano 12B v2 VL BF16",
120529
- "family": "nemotron",
120530
- "attachment": false,
120531
- "reasoning": false,
120532
- "tool_call": true,
120533
- "structured_output": true,
120534
- "temperature": true,
120535
- "release_date": "2024-12-01",
120536
- "last_updated": "2024-12-01",
120537
- "modalities": {
120538
- "input": [
120539
- "text",
120540
- "image"
120541
- ],
120542
- "output": [
120543
- "text"
120544
- ]
120545
- },
120546
- "open_weights": false,
120547
- "limit": {
120548
- "context": 128000,
120549
- "output": 4096
120550
- },
120551
- "cost": {
120552
- "input": 0.2,
120553
- "output": 0.6
120554
- }
120555
- },
120556
- "zai.glm-5": {
120557
- "id": "zai.glm-5",
120558
- "name": "GLM-5",
120559
- "family": "glm",
120560
- "attachment": false,
120561
- "reasoning": true,
120562
- "tool_call": true,
120563
- "interleaved": {
120564
- "field": "reasoning_content"
120565
- },
120566
- "structured_output": true,
120567
- "temperature": true,
120568
- "release_date": "2026-03-18",
120569
- "last_updated": "2026-03-18",
120570
- "modalities": {
120571
- "input": [
120572
- "text"
120573
- ],
120574
- "output": [
120575
- "text"
120576
- ]
120577
- },
120578
- "open_weights": true,
120579
- "limit": {
120580
- "context": 202752,
120581
- "output": 101376
120582
- },
120583
- "cost": {
120584
- "input": 1,
120585
- "output": 3.2
120586
- }
120587
- },
120588
- "meta.llama4-maverick-17b-instruct-v1:0": {
120589
- "id": "meta.llama4-maverick-17b-instruct-v1:0",
120590
- "name": "Llama 4 Maverick 17B Instruct",
120591
- "family": "llama",
120592
- "attachment": true,
120593
- "reasoning": false,
120594
- "tool_call": true,
120595
- "temperature": true,
120596
- "knowledge": "2024-08",
120597
- "release_date": "2025-04-05",
120598
- "last_updated": "2025-04-05",
120599
- "modalities": {
120600
- "input": [
120601
- "text",
120602
- "image"
120603
- ],
120604
- "output": [
120605
- "text"
120606
- ]
120607
- },
120608
- "open_weights": true,
120609
- "limit": {
120610
- "context": 1000000,
120611
- "output": 16384
120612
- },
120613
- "cost": {
120614
- "input": 0.24,
120615
- "output": 0.97
120616
- }
120617
- },
120618
- "meta.llama3-3-70b-instruct-v1:0": {
120619
- "id": "meta.llama3-3-70b-instruct-v1:0",
120620
- "name": "Llama 3.3 70B Instruct",
120621
- "family": "llama",
120622
- "attachment": false,
120623
- "reasoning": false,
120624
- "tool_call": true,
120625
- "temperature": true,
120626
- "knowledge": "2023-12",
120627
- "release_date": "2024-12-06",
120628
- "last_updated": "2024-12-06",
120629
- "modalities": {
120630
- "input": [
120631
- "text"
120632
- ],
120633
- "output": [
120634
- "text"
120635
- ]
120636
- },
120637
- "open_weights": true,
120638
- "limit": {
120639
- "context": 128000,
120640
- "output": 4096
120641
- },
120642
- "cost": {
120643
- "input": 0.72,
120644
- "output": 0.72
120645
- }
120646
- },
120647
- "qwen.qwen3-coder-next": {
120648
- "id": "qwen.qwen3-coder-next",
120649
- "name": "Qwen3 Coder Next",
120650
- "family": "qwen",
120651
- "attachment": false,
120652
- "reasoning": true,
120653
- "tool_call": true,
120654
- "structured_output": true,
120655
- "temperature": true,
120656
- "release_date": "2026-02-06",
120657
- "last_updated": "2026-02-06",
120658
- "modalities": {
120659
- "input": [
120660
- "text"
120661
- ],
120662
- "output": [
120663
- "text"
120664
- ]
120665
- },
120666
- "open_weights": true,
120667
- "limit": {
120668
- "context": 131072,
120669
- "output": 65536
120670
- },
120671
- "cost": {
120672
- "input": 0.22,
120673
- "output": 1.8
120674
- }
120675
- },
120676
- "eu.anthropic.claude-opus-4-5-20251101-v1:0": {
120677
- "id": "eu.anthropic.claude-opus-4-5-20251101-v1:0",
120678
- "name": "Claude Opus 4.5 (EU)",
120679
- "family": "claude-opus",
120680
- "attachment": true,
120681
- "reasoning": true,
120682
- "tool_call": true,
120683
- "structured_output": true,
120684
- "temperature": true,
120685
- "knowledge": "2025-03-31",
120686
- "release_date": "2025-11-24",
120687
- "last_updated": "2025-08-01",
120688
- "modalities": {
120689
- "input": [
120690
- "text",
120691
- "image",
120692
- "pdf"
120693
- ],
120694
- "output": [
120695
- "text"
120696
- ]
120697
- },
120698
- "open_weights": false,
120699
- "limit": {
120700
- "context": 200000,
120701
- "output": 64000
120702
- },
120703
- "cost": {
120704
- "input": 5,
120705
- "output": 25,
120706
- "cache_read": 0.5,
120707
- "cache_write": 6.25
120708
- }
120709
- },
120710
- "mistral.mistral-large-3-675b-instruct": {
120711
- "id": "mistral.mistral-large-3-675b-instruct",
120712
- "name": "Mistral Large 3",
120713
- "family": "mistral",
120714
- "attachment": false,
120715
- "reasoning": false,
120716
- "tool_call": true,
120717
- "structured_output": true,
120718
- "temperature": true,
120719
- "release_date": "2025-12-02",
120720
- "last_updated": "2025-12-02",
120721
- "modalities": {
120722
- "input": [
120723
- "text",
120724
- "image"
120725
- ],
120726
- "output": [
120727
- "text"
120728
- ]
120729
- },
120730
- "open_weights": true,
120731
- "limit": {
120732
- "context": 256000,
120733
- "output": 8192
120734
- },
120735
- "cost": {
120736
- "input": 0.5,
120737
- "output": 1.5
120738
- }
120739
- },
120740
- "writer.palmyra-x4-v1:0": {
120741
- "id": "writer.palmyra-x4-v1:0",
120742
- "name": "Palmyra X4",
120743
- "family": "palmyra",
120744
- "attachment": false,
120745
- "reasoning": true,
120746
- "tool_call": true,
120747
- "temperature": true,
120748
- "release_date": "2025-04-28",
120749
- "last_updated": "2025-04-28",
120750
- "modalities": {
120751
- "input": [
120752
- "text"
120753
- ],
120754
- "output": [
120755
- "text"
120756
- ]
120757
- },
120758
- "open_weights": false,
120759
- "limit": {
120760
- "context": 122880,
120761
- "output": 8192
120762
- },
120763
- "cost": {
120764
- "input": 2.5,
120765
- "output": 10
120766
- }
120767
- },
120768
- "mistral.pixtral-large-2502-v1:0": {
120769
- "id": "mistral.pixtral-large-2502-v1:0",
120770
- "name": "Pixtral Large (25.02)",
120771
- "family": "mistral",
120772
- "attachment": false,
120773
- "reasoning": false,
120774
- "tool_call": true,
120775
- "temperature": true,
120776
- "release_date": "2025-04-08",
120777
- "last_updated": "2025-04-08",
120778
- "modalities": {
120779
- "input": [
120780
- "text",
120781
- "image"
120782
- ],
120783
- "output": [
120784
- "text"
120785
- ]
120786
- },
120787
- "open_weights": false,
120788
- "limit": {
120789
- "context": 128000,
120790
- "output": 8192
120791
- },
120792
- "cost": {
120793
- "input": 2,
120794
- "output": 6
120795
- }
120796
- },
120797
- "amazon.nova-micro-v1:0": {
120798
- "id": "amazon.nova-micro-v1:0",
120799
- "name": "Nova Micro",
120800
- "family": "nova-micro",
120801
- "attachment": false,
120802
- "reasoning": false,
120803
- "tool_call": true,
120804
- "temperature": true,
120805
- "knowledge": "2024-10",
120806
- "release_date": "2024-12-03",
120807
- "last_updated": "2024-12-03",
120808
- "modalities": {
120809
- "input": [
120810
- "text"
120811
- ],
120812
- "output": [
120813
- "text"
120814
- ]
120815
- },
120816
- "open_weights": false,
120817
- "limit": {
120818
- "context": 128000,
120819
- "output": 8192
120820
- },
120821
- "cost": {
120822
- "input": 0.035,
120823
- "output": 0.14,
120824
- "cache_read": 0.00875
120825
- }
120826
- },
120827
- "eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
120828
- "id": "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
120829
- "name": "Claude Sonnet 4.5 (EU)",
120830
- "family": "claude-sonnet",
120831
- "attachment": true,
120832
- "reasoning": true,
120833
- "tool_call": true,
120834
- "structured_output": true,
120835
- "temperature": true,
120836
- "knowledge": "2025-07-31",
120837
- "release_date": "2025-09-29",
120838
- "last_updated": "2025-09-29",
120839
- "modalities": {
120840
- "input": [
120841
- "text",
120842
- "image",
120843
- "pdf"
120844
- ],
120845
- "output": [
120846
- "text"
120847
- ]
120848
- },
120849
- "open_weights": false,
120850
- "limit": {
120851
- "context": 200000,
120852
- "output": 64000
120853
- },
120854
- "cost": {
120855
- "input": 3,
120856
- "output": 15,
120857
- "cache_read": 0.3,
120858
- "cache_write": 3.75
120859
- }
120860
- },
120755
+ "nvidia.nemotron-nano-12b-v2": {
120756
+ "id": "nvidia.nemotron-nano-12b-v2",
120757
+ "name": "NVIDIA Nemotron Nano 12B v2 VL BF16",
120758
+ "family": "nemotron",
120759
+ "attachment": false,
120760
+ "reasoning": false,
120761
+ "tool_call": true,
120762
+ "structured_output": true,
120763
+ "temperature": true,
120764
+ "release_date": "2024-12-01",
120765
+ "last_updated": "2024-12-01",
120766
+ "modalities": {
120767
+ "input": [
120768
+ "text",
120769
+ "image"
120770
+ ],
120771
+ "output": [
120772
+ "text"
120773
+ ]
120774
+ },
120775
+ "open_weights": false,
120776
+ "limit": {
120777
+ "context": 128000,
120778
+ "output": 4096
120779
+ },
120780
+ "cost": {
120781
+ "input": 0.2,
120782
+ "output": 0.6
120783
+ }
120784
+ },
120785
+ "zai.glm-5": {
120786
+ "id": "zai.glm-5",
120787
+ "name": "GLM-5",
120788
+ "family": "glm",
120789
+ "attachment": false,
120790
+ "reasoning": true,
120791
+ "tool_call": true,
120792
+ "interleaved": {
120793
+ "field": "reasoning_content"
120794
+ },
120795
+ "structured_output": true,
120796
+ "temperature": true,
120797
+ "release_date": "2026-03-18",
120798
+ "last_updated": "2026-03-18",
120799
+ "modalities": {
120800
+ "input": [
120801
+ "text"
120802
+ ],
120803
+ "output": [
120804
+ "text"
120805
+ ]
120806
+ },
120807
+ "open_weights": true,
120808
+ "limit": {
120809
+ "context": 202752,
120810
+ "output": 101376
120811
+ },
120812
+ "cost": {
120813
+ "input": 1,
120814
+ "output": 3.2
120815
+ }
120816
+ },
120817
+ "meta.llama4-maverick-17b-instruct-v1:0": {
120818
+ "id": "meta.llama4-maverick-17b-instruct-v1:0",
120819
+ "name": "Llama 4 Maverick 17B Instruct",
120820
+ "family": "llama",
120821
+ "attachment": true,
120822
+ "reasoning": false,
120823
+ "tool_call": true,
120824
+ "temperature": true,
120825
+ "knowledge": "2024-08",
120826
+ "release_date": "2025-04-05",
120827
+ "last_updated": "2025-04-05",
120828
+ "modalities": {
120829
+ "input": [
120830
+ "text",
120831
+ "image"
120832
+ ],
120833
+ "output": [
120834
+ "text"
120835
+ ]
120836
+ },
120837
+ "open_weights": true,
120838
+ "limit": {
120839
+ "context": 1000000,
120840
+ "output": 16384
120841
+ },
120842
+ "cost": {
120843
+ "input": 0.24,
120844
+ "output": 0.97
120845
+ }
120846
+ },
120847
+ "meta.llama3-3-70b-instruct-v1:0": {
120848
+ "id": "meta.llama3-3-70b-instruct-v1:0",
120849
+ "name": "Llama 3.3 70B Instruct",
120850
+ "family": "llama",
120851
+ "attachment": false,
120852
+ "reasoning": false,
120853
+ "tool_call": true,
120854
+ "temperature": true,
120855
+ "knowledge": "2023-12",
120856
+ "release_date": "2024-12-06",
120857
+ "last_updated": "2024-12-06",
120858
+ "modalities": {
120859
+ "input": [
120860
+ "text"
120861
+ ],
120862
+ "output": [
120863
+ "text"
120864
+ ]
120865
+ },
120866
+ "open_weights": true,
120867
+ "limit": {
120868
+ "context": 128000,
120869
+ "output": 4096
120870
+ },
120871
+ "cost": {
120872
+ "input": 0.72,
120873
+ "output": 0.72
120874
+ }
120875
+ },
120876
+ "qwen.qwen3-coder-next": {
120877
+ "id": "qwen.qwen3-coder-next",
120878
+ "name": "Qwen3 Coder Next",
120879
+ "family": "qwen",
120880
+ "attachment": false,
120881
+ "reasoning": true,
120882
+ "tool_call": true,
120883
+ "structured_output": true,
120884
+ "temperature": true,
120885
+ "release_date": "2026-02-06",
120886
+ "last_updated": "2026-02-06",
120887
+ "modalities": {
120888
+ "input": [
120889
+ "text"
120890
+ ],
120891
+ "output": [
120892
+ "text"
120893
+ ]
120894
+ },
120895
+ "open_weights": true,
120896
+ "limit": {
120897
+ "context": 131072,
120898
+ "output": 65536
120899
+ },
120900
+ "cost": {
120901
+ "input": 0.22,
120902
+ "output": 1.8
120903
+ }
120904
+ },
120905
+ "eu.anthropic.claude-opus-4-5-20251101-v1:0": {
120906
+ "id": "eu.anthropic.claude-opus-4-5-20251101-v1:0",
120907
+ "name": "Claude Opus 4.5 (EU)",
120908
+ "family": "claude-opus",
120909
+ "attachment": true,
120910
+ "reasoning": true,
120911
+ "tool_call": true,
120912
+ "structured_output": true,
120913
+ "temperature": true,
120914
+ "knowledge": "2025-03-31",
120915
+ "release_date": "2025-11-24",
120916
+ "last_updated": "2025-08-01",
120917
+ "modalities": {
120918
+ "input": [
120919
+ "text",
120920
+ "image",
120921
+ "pdf"
120922
+ ],
120923
+ "output": [
120924
+ "text"
120925
+ ]
120926
+ },
120927
+ "open_weights": false,
120928
+ "limit": {
120929
+ "context": 200000,
120930
+ "output": 64000
120931
+ },
120932
+ "cost": {
120933
+ "input": 5,
120934
+ "output": 25,
120935
+ "cache_read": 0.5,
120936
+ "cache_write": 6.25
120937
+ }
120938
+ },
120939
+ "mistral.mistral-large-3-675b-instruct": {
120940
+ "id": "mistral.mistral-large-3-675b-instruct",
120941
+ "name": "Mistral Large 3",
120942
+ "family": "mistral",
120943
+ "attachment": false,
120944
+ "reasoning": false,
120945
+ "tool_call": true,
120946
+ "structured_output": true,
120947
+ "temperature": true,
120948
+ "release_date": "2025-12-02",
120949
+ "last_updated": "2025-12-02",
120950
+ "modalities": {
120951
+ "input": [
120952
+ "text",
120953
+ "image"
120954
+ ],
120955
+ "output": [
120956
+ "text"
120957
+ ]
120958
+ },
120959
+ "open_weights": true,
120960
+ "limit": {
120961
+ "context": 256000,
120962
+ "output": 8192
120963
+ },
120964
+ "cost": {
120965
+ "input": 0.5,
120966
+ "output": 1.5
120967
+ }
120968
+ },
120969
+ "writer.palmyra-x4-v1:0": {
120970
+ "id": "writer.palmyra-x4-v1:0",
120971
+ "name": "Palmyra X4",
120972
+ "family": "palmyra",
120973
+ "attachment": false,
120974
+ "reasoning": true,
120975
+ "tool_call": true,
120976
+ "temperature": true,
120977
+ "release_date": "2025-04-28",
120978
+ "last_updated": "2025-04-28",
120979
+ "modalities": {
120980
+ "input": [
120981
+ "text"
120982
+ ],
120983
+ "output": [
120984
+ "text"
120985
+ ]
120986
+ },
120987
+ "open_weights": false,
120988
+ "limit": {
120989
+ "context": 122880,
120990
+ "output": 8192
120991
+ },
120992
+ "cost": {
120993
+ "input": 2.5,
120994
+ "output": 10
120995
+ }
120996
+ },
120997
+ "mistral.pixtral-large-2502-v1:0": {
120998
+ "id": "mistral.pixtral-large-2502-v1:0",
120999
+ "name": "Pixtral Large (25.02)",
121000
+ "family": "mistral",
121001
+ "attachment": false,
121002
+ "reasoning": false,
121003
+ "tool_call": true,
121004
+ "temperature": true,
121005
+ "release_date": "2025-04-08",
121006
+ "last_updated": "2025-04-08",
121007
+ "modalities": {
121008
+ "input": [
121009
+ "text",
121010
+ "image"
121011
+ ],
121012
+ "output": [
121013
+ "text"
121014
+ ]
121015
+ },
121016
+ "open_weights": false,
121017
+ "limit": {
121018
+ "context": 128000,
121019
+ "output": 8192
121020
+ },
121021
+ "cost": {
121022
+ "input": 2,
121023
+ "output": 6
121024
+ }
121025
+ },
121026
+ "amazon.nova-micro-v1:0": {
121027
+ "id": "amazon.nova-micro-v1:0",
121028
+ "name": "Nova Micro",
121029
+ "family": "nova-micro",
121030
+ "attachment": false,
121031
+ "reasoning": false,
121032
+ "tool_call": true,
121033
+ "temperature": true,
121034
+ "knowledge": "2024-10",
121035
+ "release_date": "2024-12-03",
121036
+ "last_updated": "2024-12-03",
121037
+ "modalities": {
121038
+ "input": [
121039
+ "text"
121040
+ ],
121041
+ "output": [
121042
+ "text"
121043
+ ]
121044
+ },
121045
+ "open_weights": false,
121046
+ "limit": {
121047
+ "context": 128000,
121048
+ "output": 8192
121049
+ },
121050
+ "cost": {
121051
+ "input": 0.035,
121052
+ "output": 0.14,
121053
+ "cache_read": 0.00875
121054
+ }
121055
+ },
121056
+ "eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
121057
+ "id": "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
121058
+ "name": "Claude Sonnet 4.5 (EU)",
121059
+ "family": "claude-sonnet",
121060
+ "attachment": true,
121061
+ "reasoning": true,
121062
+ "tool_call": true,
121063
+ "structured_output": true,
121064
+ "temperature": true,
121065
+ "knowledge": "2025-07-31",
121066
+ "release_date": "2025-09-29",
121067
+ "last_updated": "2025-09-29",
121068
+ "modalities": {
121069
+ "input": [
121070
+ "text",
121071
+ "image",
121072
+ "pdf"
121073
+ ],
121074
+ "output": [
121075
+ "text"
121076
+ ]
121077
+ },
121078
+ "open_weights": false,
121079
+ "limit": {
121080
+ "context": 200000,
121081
+ "output": 64000
121082
+ },
121083
+ "cost": {
121084
+ "input": 3.3,
121085
+ "output": 16.5,
121086
+ "cache_read": 0.33,
121087
+ "cache_write": 4.125
121088
+ }
121089
+ },
120861
121090
  "google.gemma-3-12b-it": {
120862
121091
  "id": "google.gemma-3-12b-it",
120863
121092
  "name": "Google Gemma 3 12B",
@@ -121547,10 +121776,10 @@
121547
121776
  "output": 128000
121548
121777
  },
121549
121778
  "cost": {
121550
- "input": 5,
121551
- "output": 25,
121552
- "cache_read": 0.5,
121553
- "cache_write": 6.25
121779
+ "input": 5.5,
121780
+ "output": 27.5,
121781
+ "cache_read": 0.55,
121782
+ "cache_write": 6.875
121554
121783
  }
121555
121784
  },
121556
121785
  "global.anthropic.claude-sonnet-4-6": {
@@ -121615,10 +121844,10 @@
121615
121844
  "output": 64000
121616
121845
  },
121617
121846
  "cost": {
121618
- "input": 3,
121619
- "output": 15,
121620
- "cache_read": 0.3,
121621
- "cache_write": 3.75
121847
+ "input": 3.3,
121848
+ "output": 16.5,
121849
+ "cache_read": 0.33,
121850
+ "cache_write": 4.125
121622
121851
  }
121623
121852
  },
121624
121853
  "jp.anthropic.claude-sonnet-4-6": {
@@ -121713,10 +121942,10 @@
121713
121942
  "output": 128000
121714
121943
  },
121715
121944
  "cost": {
121716
- "input": 5,
121717
- "output": 25,
121718
- "cache_read": 0.5,
121719
- "cache_write": 6.25
121945
+ "input": 5.5,
121946
+ "output": 27.5,
121947
+ "cache_read": 0.55,
121948
+ "cache_write": 6.875
121720
121949
  }
121721
121950
  },
121722
121951
  "anthropic.claude-sonnet-4-6": {
@@ -127952,7 +128181,7 @@
127952
128181
  "models": {
127953
128182
  "xpersona-frieren-coder": {
127954
128183
  "id": "xpersona-frieren-coder",
127955
- "name": "Xpersona Frieren Coder",
128184
+ "name": "Xpersona Frieren 1",
127956
128185
  "attachment": false,
127957
128186
  "reasoning": true,
127958
128187
  "tool_call": true,
@@ -136953,15 +137182,15 @@
136953
137182
  },
136954
137183
  "anthropic/claude-opus-4.1": {
136955
137184
  "id": "anthropic/claude-opus-4.1",
136956
- "name": "Claude Opus 4",
137185
+ "name": "Claude Opus 4.1",
136957
137186
  "family": "claude-opus",
136958
137187
  "attachment": true,
136959
137188
  "reasoning": true,
136960
137189
  "tool_call": true,
136961
137190
  "temperature": true,
136962
137191
  "knowledge": "2025-03-31",
136963
- "release_date": "2025-05-22",
136964
- "last_updated": "2025-05-22",
137192
+ "release_date": "2025-08-05",
137193
+ "last_updated": "2025-08-05",
136965
137194
  "modalities": {
136966
137195
  "input": [
136967
137196
  "text",
@@ -148522,8 +148751,8 @@
148522
148751
  },
148523
148752
  "open_weights": true,
148524
148753
  "limit": {
148525
- "context": 1000000,
148526
- "output": 128000
148754
+ "context": 200000,
148755
+ "output": 32000
148527
148756
  },
148528
148757
  "cost": {
148529
148758
  "input": 0,
@@ -149215,6 +149444,41 @@
149215
149444
  "output": 0
149216
149445
  }
149217
149446
  },
149447
+ "minimax-m3-free": {
149448
+ "id": "minimax-m3-free",
149449
+ "name": "MiniMax M3 Free",
149450
+ "family": "minimax-m3-free",
149451
+ "attachment": false,
149452
+ "reasoning": true,
149453
+ "tool_call": true,
149454
+ "temperature": true,
149455
+ "knowledge": "2025-01",
149456
+ "release_date": "2026-05-31",
149457
+ "last_updated": "2026-05-31",
149458
+ "modalities": {
149459
+ "input": [
149460
+ "text",
149461
+ "image",
149462
+ "video"
149463
+ ],
149464
+ "output": [
149465
+ "text"
149466
+ ]
149467
+ },
149468
+ "open_weights": true,
149469
+ "limit": {
149470
+ "context": 200000,
149471
+ "output": 32000
149472
+ },
149473
+ "provider": {
149474
+ "npm": "@ai-sdk/anthropic"
149475
+ },
149476
+ "cost": {
149477
+ "input": 0,
149478
+ "output": 0,
149479
+ "cache_read": 0
149480
+ }
149481
+ },
149218
149482
  "minimax-m2.5": {
149219
149483
  "id": "minimax-m2.5",
149220
149484
  "name": "MiniMax M2.5",
@@ -149748,6 +150012,40 @@
149748
150012
  ]
149749
150013
  }
149750
150014
  },
150015
+ "deepseek-v4-flash": {
150016
+ "id": "deepseek-v4-flash",
150017
+ "name": "DeepSeek V4 Flash",
150018
+ "family": "deepseek-flash",
150019
+ "attachment": false,
150020
+ "reasoning": true,
150021
+ "tool_call": true,
150022
+ "interleaved": {
150023
+ "field": "reasoning_content"
150024
+ },
150025
+ "structured_output": true,
150026
+ "temperature": true,
150027
+ "knowledge": "2025-05",
150028
+ "release_date": "2026-04-24",
150029
+ "last_updated": "2026-04-24",
150030
+ "modalities": {
150031
+ "input": [
150032
+ "text"
150033
+ ],
150034
+ "output": [
150035
+ "text"
150036
+ ]
150037
+ },
150038
+ "open_weights": true,
150039
+ "limit": {
150040
+ "context": 1000000,
150041
+ "output": 384000
150042
+ },
150043
+ "cost": {
150044
+ "input": 0.14,
150045
+ "output": 0.28,
150046
+ "cache_read": 0.03
150047
+ }
150048
+ },
149751
150049
  "claude-opus-4-8": {
149752
150050
  "id": "claude-opus-4-8",
149753
150051
  "name": "Claude Opus 4.8",
@@ -153429,35 +153727,6 @@
153429
153727
  "output": 0.4
153430
153728
  }
153431
153729
  },
153432
- "@cf/mistral/mistral-7b-instruct-v0.1": {
153433
- "id": "@cf/mistral/mistral-7b-instruct-v0.1",
153434
- "name": "Mistral 7B Instruct V0.1",
153435
- "family": "mistral",
153436
- "attachment": false,
153437
- "reasoning": false,
153438
- "tool_call": false,
153439
- "structured_output": false,
153440
- "temperature": true,
153441
- "release_date": "2023-11-07",
153442
- "last_updated": "2023-11-07",
153443
- "modalities": {
153444
- "input": [
153445
- "text"
153446
- ],
153447
- "output": [
153448
- "text"
153449
- ]
153450
- },
153451
- "open_weights": true,
153452
- "limit": {
153453
- "context": 2824,
153454
- "output": 2824
153455
- },
153456
- "cost": {
153457
- "input": 0.11,
153458
- "output": 0.19
153459
- }
153460
- },
153461
153730
  "@cf/qwen/qwen2.5-coder-32b-instruct": {
153462
153731
  "id": "@cf/qwen/qwen2.5-coder-32b-instruct",
153463
153732
  "name": "Qwen2.5 Coder 32B Instruct",
@@ -153580,41 +153849,6 @@
153580
153849
  "cache_read": 0.16
153581
153850
  }
153582
153851
  },
153583
- "@cf/moonshotai/kimi-k2.5": {
153584
- "id": "@cf/moonshotai/kimi-k2.5",
153585
- "name": "Kimi K2.5",
153586
- "family": "kimi",
153587
- "attachment": true,
153588
- "reasoning": true,
153589
- "tool_call": true,
153590
- "interleaved": {
153591
- "field": "reasoning_content"
153592
- },
153593
- "structured_output": true,
153594
- "temperature": true,
153595
- "knowledge": "2025-01",
153596
- "release_date": "2026-01-27",
153597
- "last_updated": "2026-01-27",
153598
- "modalities": {
153599
- "input": [
153600
- "text",
153601
- "image"
153602
- ],
153603
- "output": [
153604
- "text"
153605
- ]
153606
- },
153607
- "open_weights": true,
153608
- "limit": {
153609
- "context": 256000,
153610
- "output": 256000
153611
- },
153612
- "cost": {
153613
- "input": 0.6,
153614
- "output": 3,
153615
- "cache_read": 0.1
153616
- }
153617
- },
153618
153852
  "@cf/deepseek-ai/deepseek-r1-distill-qwen-32b": {
153619
153853
  "id": "@cf/deepseek-ai/deepseek-r1-distill-qwen-32b",
153620
153854
  "name": "Deepseek R1 Distill Qwen 32B",
@@ -153734,35 +153968,6 @@
153734
153968
  "output": 2.253
153735
153969
  }
153736
153970
  },
153737
- "@cf/meta/llama-3.1-8b-instruct-awq": {
153738
- "id": "@cf/meta/llama-3.1-8b-instruct-awq",
153739
- "name": "Llama 3.1 8B Instruct Awq",
153740
- "family": "llama",
153741
- "attachment": false,
153742
- "reasoning": false,
153743
- "tool_call": false,
153744
- "structured_output": false,
153745
- "temperature": true,
153746
- "release_date": "2024-07-25",
153747
- "last_updated": "2024-07-25",
153748
- "modalities": {
153749
- "input": [
153750
- "text"
153751
- ],
153752
- "output": [
153753
- "text"
153754
- ]
153755
- },
153756
- "open_weights": true,
153757
- "limit": {
153758
- "context": 8192,
153759
- "output": 8192
153760
- },
153761
- "cost": {
153762
- "input": 0.123,
153763
- "output": 0.266
153764
- }
153765
- },
153766
153971
  "@cf/meta/llama-4-scout-17b-16e-instruct": {
153767
153972
  "id": "@cf/meta/llama-4-scout-17b-16e-instruct",
153768
153973
  "name": "Llama 4 Scout 17B 16E Instruct",
@@ -153851,35 +154056,6 @@
153851
154056
  "output": 0.335
153852
154057
  }
153853
154058
  },
153854
- "@cf/meta/llama-2-7b-chat-fp16": {
153855
- "id": "@cf/meta/llama-2-7b-chat-fp16",
153856
- "name": "Llama 2 7B Chat fp16",
153857
- "family": "llama",
153858
- "attachment": false,
153859
- "reasoning": false,
153860
- "tool_call": false,
153861
- "structured_output": false,
153862
- "temperature": true,
153863
- "release_date": "2023-11-07",
153864
- "last_updated": "2023-11-07",
153865
- "modalities": {
153866
- "input": [
153867
- "text"
153868
- ],
153869
- "output": [
153870
- "text"
153871
- ]
153872
- },
153873
- "open_weights": true,
153874
- "limit": {
153875
- "context": 4096,
153876
- "output": 4096
153877
- },
153878
- "cost": {
153879
- "input": 0.556,
153880
- "output": 6.667
153881
- }
153882
- },
153883
154059
  "@cf/meta/llama-3.2-11b-vision-instruct": {
153884
154060
  "id": "@cf/meta/llama-3.2-11b-vision-instruct",
153885
154061
  "name": "Llama 3.2 11B Vision Instruct",
@@ -153939,64 +154115,6 @@
153939
154115
  "output": 0.201
153940
154116
  }
153941
154117
  },
153942
- "@cf/meta/llama-3-8b-instruct": {
153943
- "id": "@cf/meta/llama-3-8b-instruct",
153944
- "name": "Llama 3 8B Instruct",
153945
- "family": "llama",
153946
- "attachment": false,
153947
- "reasoning": false,
153948
- "tool_call": false,
153949
- "structured_output": false,
153950
- "temperature": true,
153951
- "release_date": "2024-04-18",
153952
- "last_updated": "2024-04-18",
153953
- "modalities": {
153954
- "input": [
153955
- "text"
153956
- ],
153957
- "output": [
153958
- "text"
153959
- ]
153960
- },
153961
- "open_weights": true,
153962
- "limit": {
153963
- "context": 7968,
153964
- "output": 7968
153965
- },
153966
- "cost": {
153967
- "input": 0.282,
153968
- "output": 0.827
153969
- }
153970
- },
153971
- "@cf/meta/llama-3-8b-instruct-awq": {
153972
- "id": "@cf/meta/llama-3-8b-instruct-awq",
153973
- "name": "Llama 3 8B Instruct Awq",
153974
- "family": "llama",
153975
- "attachment": false,
153976
- "reasoning": false,
153977
- "tool_call": false,
153978
- "structured_output": false,
153979
- "temperature": true,
153980
- "release_date": "2024-05-09",
153981
- "last_updated": "2024-05-09",
153982
- "modalities": {
153983
- "input": [
153984
- "text"
153985
- ],
153986
- "output": [
153987
- "text"
153988
- ]
153989
- },
153990
- "open_weights": true,
153991
- "limit": {
153992
- "context": 8192,
153993
- "output": 8192
153994
- },
153995
- "cost": {
153996
- "input": 0.123,
153997
- "output": 0.266
153998
- }
153999
- },
154000
154118
  "@cf/meta/llama-guard-3-8b": {
154001
154119
  "id": "@cf/meta/llama-guard-3-8b",
154002
154120
  "name": "Llama Guard 3 8B",
@@ -154055,35 +154173,6 @@
154055
154173
  "output": 0.112
154056
154174
  }
154057
154175
  },
154058
- "@cf/google/gemma-3-12b-it": {
154059
- "id": "@cf/google/gemma-3-12b-it",
154060
- "name": "Gemma 3 12B It",
154061
- "family": "gemma",
154062
- "attachment": false,
154063
- "reasoning": false,
154064
- "tool_call": false,
154065
- "structured_output": false,
154066
- "temperature": true,
154067
- "release_date": "2025-03-18",
154068
- "last_updated": "2025-03-18",
154069
- "modalities": {
154070
- "input": [
154071
- "text"
154072
- ],
154073
- "output": [
154074
- "text"
154075
- ]
154076
- },
154077
- "open_weights": true,
154078
- "limit": {
154079
- "context": 80000,
154080
- "output": 80000
154081
- },
154082
- "cost": {
154083
- "input": 0.345,
154084
- "output": 0.556
154085
- }
154086
- },
154087
154176
  "@cf/google/gemma-4-26b-a4b-it": {
154088
154177
  "id": "@cf/google/gemma-4-26b-a4b-it",
154089
154178
  "name": "Gemma 4 26B A4B IT",