@oh-my-pi/pi-catalog 16.1.18 → 16.1.20

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [16.1.20] - 2026-06-25
6
+
7
+ ### Fixed
8
+
9
+ - Fixed direct Anthropic Claude Sonnet/Haiku 4.5 advisor/agent turns crashing every call with HTTP 400 `This model does not support the effort parameter.` The catalog classified the whole Claude 4.5 family on `anthropic-messages` (and `bedrock-converse-stream`) as `anthropic-budget-effort`, which made the Anthropic provider serialize `output_config.effort` alongside `thinking.budget_tokens`. Anthropic only honors `output_config.effort` on Opus 4.5 and adaptive (4.6+) Messages-API models, so Sonnet 4.5 / Haiku 4.5 rejected the field. `inferThinkingControlMode` now gates `anthropic-budget-effort` to `parsedModel.kind === "opus" && semverGte(version, "4.5")` on both Anthropic-routed APIs, so Sonnet 4.5 / Haiku 4.5 on direct Anthropic + Cloudflare-AI-Gateway + Vertex + GitLab-Duo + Copilot + Bedrock fall through to plain `mode: "budget"` (thinking budget still scales with the selected effort tier). Opus 4.5 keeps `anthropic-budget-effort`. `anthropic-budget-effort` also stays in use for Anthropic-compatible third-party backends that natively support the field (Umans GLM 5.2). ([#3497](https://github.com/can1357/oh-my-pi/issues/3497))
10
+
5
11
  ## [16.1.17] - 2026-06-24
6
12
 
7
13
  ### Fixed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-catalog",
4
- "version": "16.1.18",
4
+ "version": "16.1.20",
5
5
  "description": "Model catalog for omp: bundled model database, provider discovery descriptors, model identity, classification, and equivalence",
6
6
  "homepage": "https://omp.sh",
7
7
  "author": "Can Boluk",
@@ -34,12 +34,12 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@bufbuild/protobuf": "^2.12.0",
37
- "@oh-my-pi/pi-utils": "16.1.18",
37
+ "@oh-my-pi/pi-utils": "16.1.20",
38
38
  "arktype": "^2.2.0",
39
39
  "zod": "^4"
40
40
  },
41
41
  "devDependencies": {
42
- "@oh-my-pi/pi-ai": "16.1.18",
42
+ "@oh-my-pi/pi-ai": "16.1.20",
43
43
  "@types/bun": "^1.3.14"
44
44
  },
45
45
  "engines": {
@@ -589,7 +589,11 @@ function inferThinkingControlMode<TApi extends Api>(
589
589
  if (semverGte(parsedModel.version, "4.6")) {
590
590
  return "anthropic-adaptive";
591
591
  }
592
- if (semverGte(parsedModel.version, "4.5")) {
592
+ // Opus 4.5 supports `output_config.effort` (sent alongside
593
+ // `thinking.budget_tokens`); Sonnet 4.5 and Haiku 4.5 reject the
594
+ // field with HTTP 400 "This model does not support the effort
595
+ // parameter." (#3497).
596
+ if (parsedModel.kind === "opus" && semverGte(parsedModel.version, "4.5")) {
593
597
  return "anthropic-budget-effort";
594
598
  }
595
599
  }
@@ -603,7 +607,10 @@ function inferThinkingControlMode<TApi extends Api>(
603
607
  ) {
604
608
  return "anthropic-adaptive";
605
609
  }
606
- if (semverGte(parsedModel.version, "4.5")) {
610
+ // Opus 4.5 on Bedrock metadata mirrors the direct-Anthropic
611
+ // shape; the Bedrock provider still emits plain budget thinking
612
+ // on the wire for the budget-effort mode.
613
+ if (parsedModel.kind === "opus" && semverGte(parsedModel.version, "4.5")) {
607
614
  return "anthropic-budget-effort";
608
615
  }
609
616
  }
package/src/models.json CHANGED
@@ -7965,7 +7965,7 @@
7965
7965
  "contextWindow": 200000,
7966
7966
  "maxTokens": 64000,
7967
7967
  "thinking": {
7968
- "mode": "anthropic-budget-effort",
7968
+ "mode": "budget",
7969
7969
  "efforts": [
7970
7970
  "minimal",
7971
7971
  "low",
@@ -7994,7 +7994,7 @@
7994
7994
  "contextWindow": 1000000,
7995
7995
  "maxTokens": 128000,
7996
7996
  "thinking": {
7997
- "mode": "anthropic-budget-effort",
7997
+ "mode": "budget",
7998
7998
  "efforts": [
7999
7999
  "minimal",
8000
8000
  "low",
@@ -8569,7 +8569,7 @@
8569
8569
  "contextWindow": 200000,
8570
8570
  "maxTokens": 64000,
8571
8571
  "thinking": {
8572
- "mode": "anthropic-budget-effort",
8572
+ "mode": "budget",
8573
8573
  "efforts": [
8574
8574
  "minimal",
8575
8575
  "low",
@@ -8598,7 +8598,7 @@
8598
8598
  "contextWindow": 1000000,
8599
8599
  "maxTokens": 64000,
8600
8600
  "thinking": {
8601
- "mode": "anthropic-budget-effort",
8601
+ "mode": "budget",
8602
8602
  "efforts": [
8603
8603
  "minimal",
8604
8604
  "low",
@@ -8882,7 +8882,7 @@
8882
8882
  "contextWindow": 200000,
8883
8883
  "maxTokens": 64000,
8884
8884
  "thinking": {
8885
- "mode": "anthropic-budget-effort",
8885
+ "mode": "budget",
8886
8886
  "efforts": [
8887
8887
  "minimal",
8888
8888
  "low",
@@ -8911,7 +8911,7 @@
8911
8911
  "contextWindow": 1000000,
8912
8912
  "maxTokens": 64000,
8913
8913
  "thinking": {
8914
- "mode": "anthropic-budget-effort",
8914
+ "mode": "budget",
8915
8915
  "efforts": [
8916
8916
  "minimal",
8917
8917
  "low",
@@ -9050,7 +9050,7 @@
9050
9050
  "contextWindow": 200000,
9051
9051
  "maxTokens": 64000,
9052
9052
  "thinking": {
9053
- "mode": "anthropic-budget-effort",
9053
+ "mode": "budget",
9054
9054
  "efforts": [
9055
9055
  "minimal",
9056
9056
  "low",
@@ -9079,7 +9079,7 @@
9079
9079
  "contextWindow": 1000000,
9080
9080
  "maxTokens": 64000,
9081
9081
  "thinking": {
9082
- "mode": "anthropic-budget-effort",
9082
+ "mode": "budget",
9083
9083
  "efforts": [
9084
9084
  "minimal",
9085
9085
  "low",
@@ -10361,7 +10361,7 @@
10361
10361
  "contextWindow": 200000,
10362
10362
  "maxTokens": 64000,
10363
10363
  "thinking": {
10364
- "mode": "anthropic-budget-effort",
10364
+ "mode": "budget",
10365
10365
  "efforts": [
10366
10366
  "minimal",
10367
10367
  "low",
@@ -10390,7 +10390,7 @@
10390
10390
  "contextWindow": 1000000,
10391
10391
  "maxTokens": 64000,
10392
10392
  "thinking": {
10393
- "mode": "anthropic-budget-effort",
10393
+ "mode": "budget",
10394
10394
  "efforts": [
10395
10395
  "minimal",
10396
10396
  "low",
@@ -11272,7 +11272,7 @@
11272
11272
  "contextWindow": 200000,
11273
11273
  "maxTokens": 64000,
11274
11274
  "thinking": {
11275
- "mode": "anthropic-budget-effort",
11275
+ "mode": "budget",
11276
11276
  "efforts": [
11277
11277
  "minimal",
11278
11278
  "low",
@@ -11302,7 +11302,7 @@
11302
11302
  "contextWindow": 200000,
11303
11303
  "maxTokens": 64000,
11304
11304
  "thinking": {
11305
- "mode": "anthropic-budget-effort",
11305
+ "mode": "budget",
11306
11306
  "efforts": [
11307
11307
  "minimal",
11308
11308
  "low",
@@ -12859,7 +12859,7 @@
12859
12859
  "contextWindow": 200000,
12860
12860
  "maxTokens": 64000,
12861
12861
  "thinking": {
12862
- "mode": "anthropic-budget-effort",
12862
+ "mode": "budget",
12863
12863
  "efforts": [
12864
12864
  "minimal",
12865
12865
  "low",
@@ -12921,7 +12921,7 @@
12921
12921
  "contextWindow": 1000000,
12922
12922
  "maxTokens": 64000,
12923
12923
  "thinking": {
12924
- "mode": "anthropic-budget-effort",
12924
+ "mode": "budget",
12925
12925
  "efforts": [
12926
12926
  "minimal",
12927
12927
  "low",
@@ -16750,7 +16750,7 @@
16750
16750
  "X-GitHub-Api-Version": "2026-06-01"
16751
16751
  },
16752
16752
  "thinking": {
16753
- "mode": "anthropic-budget-effort",
16753
+ "mode": "budget",
16754
16754
  "efforts": [
16755
16755
  "minimal",
16756
16756
  "low",
@@ -19846,7 +19846,7 @@
19846
19846
  "contextWindow": 200000,
19847
19847
  "maxTokens": 64000,
19848
19848
  "thinking": {
19849
- "mode": "anthropic-budget-effort",
19849
+ "mode": "budget",
19850
19850
  "efforts": [
19851
19851
  "minimal",
19852
19852
  "low",
@@ -20108,36 +20108,6 @@
20108
20108
  "requiresEffort": true
20109
20109
  }
20110
20110
  },
20111
- "gemini-3.1-flash-lite-preview": {
20112
- "id": "gemini-3.1-flash-lite-preview",
20113
- "name": "Gemini 3.1 Flash Lite Preview",
20114
- "api": "google-vertex",
20115
- "provider": "google-vertex",
20116
- "baseUrl": "https://{location}-aiplatform.googleapis.com",
20117
- "reasoning": true,
20118
- "input": [
20119
- "text",
20120
- "image"
20121
- ],
20122
- "cost": {
20123
- "input": 0.25,
20124
- "output": 1.5,
20125
- "cacheRead": 0.025,
20126
- "cacheWrite": 0
20127
- },
20128
- "contextWindow": 1048576,
20129
- "maxTokens": 65536,
20130
- "thinking": {
20131
- "mode": "google-level",
20132
- "efforts": [
20133
- "minimal",
20134
- "low",
20135
- "medium",
20136
- "high"
20137
- ],
20138
- "requiresEffort": true
20139
- }
20140
- },
20141
20111
  "gemini-3.1-pro-preview": {
20142
20112
  "id": "gemini-3.1-pro-preview",
20143
20113
  "name": "Gemini 3.1 Pro Preview",
@@ -21873,6 +21843,35 @@
21873
21843
  ]
21874
21844
  }
21875
21845
  },
21846
+ "Qwen/Qwen3.6-27B": {
21847
+ "id": "Qwen/Qwen3.6-27B",
21848
+ "name": "Qwen3.6 27B",
21849
+ "api": "openai-completions",
21850
+ "provider": "huggingface",
21851
+ "baseUrl": "https://router.huggingface.co/v1",
21852
+ "reasoning": true,
21853
+ "input": [
21854
+ "text",
21855
+ "image"
21856
+ ],
21857
+ "cost": {
21858
+ "input": 0.47,
21859
+ "output": 3.19,
21860
+ "cacheRead": 0,
21861
+ "cacheWrite": 0
21862
+ },
21863
+ "contextWindow": 262144,
21864
+ "maxTokens": 65536,
21865
+ "thinking": {
21866
+ "mode": "effort",
21867
+ "efforts": [
21868
+ "minimal",
21869
+ "low",
21870
+ "medium",
21871
+ "high"
21872
+ ]
21873
+ }
21874
+ },
21876
21875
  "Qwen/Qwen3.6-35B-A3B": {
21877
21876
  "id": "Qwen/Qwen3.6-35B-A3B",
21878
21877
  "name": "Qwen3.6 35B-A3B",
@@ -21931,6 +21930,36 @@
21931
21930
  ]
21932
21931
  }
21933
21932
  },
21933
+ "stepfun-ai/Step-3.7-Flash": {
21934
+ "id": "stepfun-ai/Step-3.7-Flash",
21935
+ "name": "Step 3.7 Flash",
21936
+ "api": "openai-completions",
21937
+ "provider": "huggingface",
21938
+ "baseUrl": "https://router.huggingface.co/v1",
21939
+ "reasoning": true,
21940
+ "input": [
21941
+ "text",
21942
+ "image"
21943
+ ],
21944
+ "cost": {
21945
+ "input": 0.2,
21946
+ "output": 1.15,
21947
+ "cacheRead": 0,
21948
+ "cacheWrite": 0
21949
+ },
21950
+ "contextWindow": 262144,
21951
+ "maxTokens": 256000,
21952
+ "thinking": {
21953
+ "mode": "effort",
21954
+ "efforts": [
21955
+ "minimal",
21956
+ "low",
21957
+ "medium",
21958
+ "high",
21959
+ "xhigh"
21960
+ ]
21961
+ }
21962
+ },
21934
21963
  "XiaomiMiMo/MiMo-V2-Flash": {
21935
21964
  "id": "XiaomiMiMo/MiMo-V2-Flash",
21936
21965
  "name": "MiMo-V2-Flash",
@@ -21958,6 +21987,33 @@
21958
21987
  ]
21959
21988
  }
21960
21989
  },
21990
+ "XiaomiMiMo/MiMo-V2.5-Pro": {
21991
+ "id": "XiaomiMiMo/MiMo-V2.5-Pro",
21992
+ "name": "MiMo-V2.5-Pro",
21993
+ "api": "openai-completions",
21994
+ "provider": "huggingface",
21995
+ "baseUrl": "https://router.huggingface.co/v1",
21996
+ "reasoning": true,
21997
+ "input": [
21998
+ "text"
21999
+ ],
22000
+ "cost": {
22001
+ "input": 1,
22002
+ "output": 3,
22003
+ "cacheRead": 0,
22004
+ "cacheWrite": 0
22005
+ },
22006
+ "contextWindow": 1048576,
22007
+ "maxTokens": 131072,
22008
+ "thinking": {
22009
+ "mode": "effort",
22010
+ "efforts": [
22011
+ "low",
22012
+ "medium",
22013
+ "high"
22014
+ ]
22015
+ }
22016
+ },
21961
22017
  "zai-org/GLM-4.5": {
21962
22018
  "id": "zai-org/GLM-4.5",
21963
22019
  "name": "GLM-4.5",
@@ -31503,6 +31559,25 @@
31503
31559
  "contextWindow": 256000,
31504
31560
  "maxTokens": 128000
31505
31561
  },
31562
+ "sakana/fugu-ultra": {
31563
+ "id": "sakana/fugu-ultra",
31564
+ "name": "Fugu Ultra",
31565
+ "api": "openai-completions",
31566
+ "provider": "kilo",
31567
+ "baseUrl": "https://api.kilo.ai/api/gateway",
31568
+ "reasoning": false,
31569
+ "input": [
31570
+ "text"
31571
+ ],
31572
+ "cost": {
31573
+ "input": 0,
31574
+ "output": 0,
31575
+ "cacheRead": 0,
31576
+ "cacheWrite": 0
31577
+ },
31578
+ "contextWindow": 1000000,
31579
+ "maxTokens": null
31580
+ },
31506
31581
  "sao10k/l3-euryale-70b": {
31507
31582
  "id": "sao10k/l3-euryale-70b",
31508
31583
  "name": "Llama 3 Euryale 70B v2.1",
@@ -36647,6 +36722,44 @@
36647
36722
  ]
36648
36723
  }
36649
36724
  },
36725
+ "bytedance/doubao-seed-2.1-pro": {
36726
+ "id": "bytedance/doubao-seed-2.1-pro",
36727
+ "name": "bytedance/doubao-seed-2.1-pro",
36728
+ "api": "openai-completions",
36729
+ "provider": "nanogpt",
36730
+ "baseUrl": "https://nano-gpt.com/api/v1",
36731
+ "reasoning": false,
36732
+ "input": [
36733
+ "text"
36734
+ ],
36735
+ "cost": {
36736
+ "input": 0,
36737
+ "output": 0,
36738
+ "cacheRead": 0,
36739
+ "cacheWrite": 0
36740
+ },
36741
+ "contextWindow": 256000,
36742
+ "maxTokens": null
36743
+ },
36744
+ "bytedance/doubao-seed-2.1-turbo": {
36745
+ "id": "bytedance/doubao-seed-2.1-turbo",
36746
+ "name": "bytedance/doubao-seed-2.1-turbo",
36747
+ "api": "openai-completions",
36748
+ "provider": "nanogpt",
36749
+ "baseUrl": "https://nano-gpt.com/api/v1",
36750
+ "reasoning": false,
36751
+ "input": [
36752
+ "text"
36753
+ ],
36754
+ "cost": {
36755
+ "input": 0,
36756
+ "output": 0,
36757
+ "cacheRead": 0,
36758
+ "cacheWrite": 0
36759
+ },
36760
+ "contextWindow": 256000,
36761
+ "maxTokens": null
36762
+ },
36650
36763
  "chutesai/Mistral-Small-3.2-24B-Instruct-2506": {
36651
36764
  "id": "chutesai/Mistral-Small-3.2-24B-Instruct-2506",
36652
36765
  "name": "chutesai/Mistral-Small-3.2-24B-Instruct-2506",
@@ -59374,7 +59487,7 @@
59374
59487
  "contextWindow": 1000000,
59375
59488
  "maxTokens": 64000,
59376
59489
  "thinking": {
59377
- "mode": "anthropic-budget-effort",
59490
+ "mode": "budget",
59378
59491
  "efforts": [
59379
59492
  "minimal",
59380
59493
  "low",
@@ -59756,6 +59869,38 @@
59756
59869
  ]
59757
59870
  }
59758
59871
  },
59872
+ "glm-5.2": {
59873
+ "id": "glm-5.2",
59874
+ "name": "GLM-5.2",
59875
+ "api": "openai-completions",
59876
+ "provider": "opencode-zen",
59877
+ "baseUrl": "https://opencode.ai/zen/v1",
59878
+ "reasoning": true,
59879
+ "input": [
59880
+ "text"
59881
+ ],
59882
+ "cost": {
59883
+ "input": 1.4,
59884
+ "output": 4.4,
59885
+ "cacheRead": 0.26,
59886
+ "cacheWrite": 0
59887
+ },
59888
+ "contextWindow": 1000000,
59889
+ "maxTokens": 131072,
59890
+ "thinking": {
59891
+ "mode": "effort",
59892
+ "efforts": [
59893
+ "minimal",
59894
+ "low",
59895
+ "medium",
59896
+ "high",
59897
+ "xhigh"
59898
+ ],
59899
+ "effortMap": {
59900
+ "xhigh": "max"
59901
+ }
59902
+ }
59903
+ },
59759
59904
  "gpt-5": {
59760
59905
  "id": "gpt-5",
59761
59906
  "name": "GPT-5",
@@ -62696,9 +62841,9 @@
62696
62841
  "text"
62697
62842
  ],
62698
62843
  "cost": {
62699
- "input": 0.09,
62700
- "output": 0.18,
62701
- "cacheRead": 0.02,
62844
+ "input": 0.08900000000000001,
62845
+ "output": 0.224,
62846
+ "cacheRead": 0.0266,
62702
62847
  "cacheWrite": 0
62703
62848
  },
62704
62849
  "contextWindow": 1048576,
@@ -64061,13 +64206,13 @@
64061
64206
  "text"
64062
64207
  ],
64063
64208
  "cost": {
64064
- "input": 0.25,
64065
- "output": 1,
64209
+ "input": 0.24,
64210
+ "output": 0.96,
64066
64211
  "cacheRead": 0.049999999999999996,
64067
64212
  "cacheWrite": 0
64068
64213
  },
64069
64214
  "contextWindow": 204800,
64070
- "maxTokens": 131072,
64215
+ "maxTokens": 196608,
64071
64216
  "thinking": {
64072
64217
  "mode": "effort",
64073
64218
  "efforts": [
@@ -64816,13 +64961,13 @@
64816
64961
  "image"
64817
64962
  ],
64818
64963
  "cost": {
64819
- "input": 0.612,
64820
- "output": 3.0690000000000004,
64821
- "cacheRead": 0.1296,
64964
+ "input": 0.74,
64965
+ "output": 3.5,
64966
+ "cacheRead": 0.15,
64822
64967
  "cacheWrite": 0
64823
64968
  },
64824
64969
  "contextWindow": 262144,
64825
- "maxTokens": 262144,
64970
+ "maxTokens": 16384,
64826
64971
  "thinking": {
64827
64972
  "mode": "effort",
64828
64973
  "efforts": [
@@ -68085,7 +68230,7 @@
68085
68230
  "cacheWrite": 0
68086
68231
  },
68087
68232
  "contextWindow": 262144,
68088
- "maxTokens": 262144,
68233
+ "maxTokens": 81920,
68089
68234
  "thinking": {
68090
68235
  "mode": "effort",
68091
68236
  "efforts": [
@@ -68586,6 +68731,35 @@
68586
68731
  "contextWindow": 256000,
68587
68732
  "maxTokens": 128000
68588
68733
  },
68734
+ "sakana/fugu-ultra": {
68735
+ "id": "sakana/fugu-ultra",
68736
+ "name": "Fugu Ultra",
68737
+ "api": "openrouter",
68738
+ "provider": "openrouter",
68739
+ "baseUrl": "https://openrouter.ai/api/v1",
68740
+ "reasoning": true,
68741
+ "input": [
68742
+ "text",
68743
+ "image"
68744
+ ],
68745
+ "cost": {
68746
+ "input": 5,
68747
+ "output": 30,
68748
+ "cacheRead": 0.5,
68749
+ "cacheWrite": 0
68750
+ },
68751
+ "contextWindow": 1000000,
68752
+ "maxTokens": 128000,
68753
+ "thinking": {
68754
+ "mode": "effort",
68755
+ "efforts": [
68756
+ "minimal",
68757
+ "low",
68758
+ "medium",
68759
+ "high"
68760
+ ]
68761
+ }
68762
+ },
68589
68763
  "sao10k/l3-euryale-70b": {
68590
68764
  "id": "sao10k/l3-euryale-70b",
68591
68765
  "name": "Llama 3 Euryale 70B v2.1",
@@ -69349,7 +69523,7 @@
69349
69523
  "image"
69350
69524
  ],
69351
69525
  "cost": {
69352
- "input": 0.14,
69526
+ "input": 0.105,
69353
69527
  "output": 0.28,
69354
69528
  "cacheRead": 0.0028,
69355
69529
  "cacheWrite": 0
@@ -69725,7 +69899,7 @@
69725
69899
  "cost": {
69726
69900
  "input": 0.98,
69727
69901
  "output": 3.08,
69728
- "cacheRead": 0.49,
69902
+ "cacheRead": 0.182,
69729
69903
  "cacheWrite": 0
69730
69904
  },
69731
69905
  "contextWindow": 202752,
@@ -69751,9 +69925,9 @@
69751
69925
  "text"
69752
69926
  ],
69753
69927
  "cost": {
69754
- "input": 0.98,
69755
- "output": 3.08,
69756
- "cacheRead": 0.182,
69928
+ "input": 0.95,
69929
+ "output": 3,
69930
+ "cacheRead": 0.18,
69757
69931
  "cacheWrite": 0
69758
69932
  },
69759
69933
  "contextWindow": 1048576,
@@ -73063,7 +73237,7 @@
73063
73237
  },
73064
73238
  "minimax-m3": {
73065
73239
  "id": "minimax-m3",
73066
- "name": "MiniMax M3",
73240
+ "name": "MiniMax M3 (3x usage)",
73067
73241
  "api": "openai-completions",
73068
73242
  "provider": "venice",
73069
73243
  "baseUrl": "https://api.venice.ai/api/v1",
@@ -74722,6 +74896,46 @@
74722
74896
  "requiresEffort": true
74723
74897
  }
74724
74898
  },
74899
+ "alibaba/qwen3-vl-235b-a22b-instruct": {
74900
+ "id": "alibaba/qwen3-vl-235b-a22b-instruct",
74901
+ "name": "Qwen3 VL 235B A22B Instruct",
74902
+ "api": "anthropic-messages",
74903
+ "provider": "vercel-ai-gateway",
74904
+ "baseUrl": "https://ai-gateway.vercel.sh",
74905
+ "reasoning": false,
74906
+ "input": [
74907
+ "text",
74908
+ "image"
74909
+ ],
74910
+ "cost": {
74911
+ "input": 0.39999999999999997,
74912
+ "output": 1.5999999999999999,
74913
+ "cacheRead": 0,
74914
+ "cacheWrite": 0
74915
+ },
74916
+ "contextWindow": 131072,
74917
+ "maxTokens": 129024
74918
+ },
74919
+ "alibaba/qwen3-vl-instruct": {
74920
+ "id": "alibaba/qwen3-vl-instruct",
74921
+ "name": "Qwen3 VL 235B A22B Instruct",
74922
+ "api": "anthropic-messages",
74923
+ "provider": "vercel-ai-gateway",
74924
+ "baseUrl": "https://ai-gateway.vercel.sh",
74925
+ "reasoning": false,
74926
+ "input": [
74927
+ "text",
74928
+ "image"
74929
+ ],
74930
+ "cost": {
74931
+ "input": 0.39999999999999997,
74932
+ "output": 1.5999999999999999,
74933
+ "cacheRead": 0,
74934
+ "cacheWrite": 0
74935
+ },
74936
+ "contextWindow": 131072,
74937
+ "maxTokens": 129024
74938
+ },
74725
74939
  "alibaba/qwen3-vl-thinking": {
74726
74940
  "id": "alibaba/qwen3-vl-thinking",
74727
74941
  "name": "Qwen3 VL 235B A22B Thinking",
@@ -74933,6 +75147,95 @@
74933
75147
  ]
74934
75148
  }
74935
75149
  },
75150
+ "amazon/nova-2-lite": {
75151
+ "id": "amazon/nova-2-lite",
75152
+ "name": "Nova 2 Lite",
75153
+ "api": "anthropic-messages",
75154
+ "provider": "vercel-ai-gateway",
75155
+ "baseUrl": "https://ai-gateway.vercel.sh",
75156
+ "reasoning": true,
75157
+ "input": [
75158
+ "text",
75159
+ "image"
75160
+ ],
75161
+ "cost": {
75162
+ "input": 0.3,
75163
+ "output": 2.5,
75164
+ "cacheRead": 0.075,
75165
+ "cacheWrite": 0
75166
+ },
75167
+ "contextWindow": 1000000,
75168
+ "maxTokens": 1000000,
75169
+ "thinking": {
75170
+ "mode": "budget",
75171
+ "efforts": [
75172
+ "minimal",
75173
+ "low",
75174
+ "medium",
75175
+ "high",
75176
+ "xhigh"
75177
+ ]
75178
+ }
75179
+ },
75180
+ "amazon/nova-lite": {
75181
+ "id": "amazon/nova-lite",
75182
+ "name": "Nova Lite",
75183
+ "api": "anthropic-messages",
75184
+ "provider": "vercel-ai-gateway",
75185
+ "baseUrl": "https://ai-gateway.vercel.sh",
75186
+ "reasoning": false,
75187
+ "input": [
75188
+ "text",
75189
+ "image"
75190
+ ],
75191
+ "cost": {
75192
+ "input": 0.06,
75193
+ "output": 0.24,
75194
+ "cacheRead": 0,
75195
+ "cacheWrite": 0
75196
+ },
75197
+ "contextWindow": 300000,
75198
+ "maxTokens": 8192
75199
+ },
75200
+ "amazon/nova-micro": {
75201
+ "id": "amazon/nova-micro",
75202
+ "name": "Nova Micro",
75203
+ "api": "anthropic-messages",
75204
+ "provider": "vercel-ai-gateway",
75205
+ "baseUrl": "https://ai-gateway.vercel.sh",
75206
+ "reasoning": false,
75207
+ "input": [
75208
+ "text"
75209
+ ],
75210
+ "cost": {
75211
+ "input": 0.035,
75212
+ "output": 0.14,
75213
+ "cacheRead": 0,
75214
+ "cacheWrite": 0
75215
+ },
75216
+ "contextWindow": 128000,
75217
+ "maxTokens": 8192
75218
+ },
75219
+ "amazon/nova-pro": {
75220
+ "id": "amazon/nova-pro",
75221
+ "name": "Nova Pro",
75222
+ "api": "anthropic-messages",
75223
+ "provider": "vercel-ai-gateway",
75224
+ "baseUrl": "https://ai-gateway.vercel.sh",
75225
+ "reasoning": false,
75226
+ "input": [
75227
+ "text",
75228
+ "image"
75229
+ ],
75230
+ "cost": {
75231
+ "input": 0.7999999999999999,
75232
+ "output": 3.1999999999999997,
75233
+ "cacheRead": 0,
75234
+ "cacheWrite": 0
75235
+ },
75236
+ "contextWindow": 300000,
75237
+ "maxTokens": 8192
75238
+ },
74936
75239
  "anthropic/claude-3-haiku": {
74937
75240
  "id": "anthropic/claude-3-haiku",
74938
75241
  "name": "Claude Haiku 3",
@@ -75361,7 +75664,7 @@
75361
75664
  "contextWindow": 1000000,
75362
75665
  "maxTokens": 64000,
75363
75666
  "thinking": {
75364
- "mode": "anthropic-budget-effort",
75667
+ "mode": "budget",
75365
75668
  "efforts": [
75366
75669
  "minimal",
75367
75670
  "low",
@@ -75452,6 +75755,35 @@
75452
75755
  "requiresEffort": true
75453
75756
  }
75454
75757
  },
75758
+ "arcee-ai/trinity-mini": {
75759
+ "id": "arcee-ai/trinity-mini",
75760
+ "name": "Trinity Mini",
75761
+ "api": "anthropic-messages",
75762
+ "provider": "vercel-ai-gateway",
75763
+ "baseUrl": "https://ai-gateway.vercel.sh",
75764
+ "reasoning": true,
75765
+ "input": [
75766
+ "text"
75767
+ ],
75768
+ "cost": {
75769
+ "input": 0.045,
75770
+ "output": 0.15,
75771
+ "cacheRead": 0,
75772
+ "cacheWrite": 0
75773
+ },
75774
+ "contextWindow": 131072,
75775
+ "maxTokens": 131072,
75776
+ "thinking": {
75777
+ "mode": "budget",
75778
+ "efforts": [
75779
+ "minimal",
75780
+ "low",
75781
+ "medium",
75782
+ "high",
75783
+ "xhigh"
75784
+ ]
75785
+ }
75786
+ },
75455
75787
  "bytedance/seed-1.6": {
75456
75788
  "id": "bytedance/seed-1.6",
75457
75789
  "name": "Seed 1.6",
@@ -75460,7 +75792,8 @@
75460
75792
  "provider": "vercel-ai-gateway",
75461
75793
  "reasoning": true,
75462
75794
  "input": [
75463
- "text"
75795
+ "text",
75796
+ "image"
75464
75797
  ],
75465
75798
  "cost": {
75466
75799
  "input": 0.25,
@@ -75481,6 +75814,36 @@
75481
75814
  ]
75482
75815
  }
75483
75816
  },
75817
+ "bytedance/seed-1.8": {
75818
+ "id": "bytedance/seed-1.8",
75819
+ "name": "Bytedance Seed 1.8",
75820
+ "api": "anthropic-messages",
75821
+ "provider": "vercel-ai-gateway",
75822
+ "baseUrl": "https://ai-gateway.vercel.sh",
75823
+ "reasoning": true,
75824
+ "input": [
75825
+ "text",
75826
+ "image"
75827
+ ],
75828
+ "cost": {
75829
+ "input": 0.25,
75830
+ "output": 2,
75831
+ "cacheRead": 0.049999999999999996,
75832
+ "cacheWrite": 0
75833
+ },
75834
+ "contextWindow": 256000,
75835
+ "maxTokens": 64000,
75836
+ "thinking": {
75837
+ "mode": "budget",
75838
+ "efforts": [
75839
+ "minimal",
75840
+ "low",
75841
+ "medium",
75842
+ "high",
75843
+ "xhigh"
75844
+ ]
75845
+ }
75846
+ },
75484
75847
  "cohere/command-a": {
75485
75848
  "id": "cohere/command-a",
75486
75849
  "name": "Command A",
@@ -76184,6 +76547,55 @@
76184
76547
  "contextWindow": 32000,
76185
76548
  "maxTokens": 16384
76186
76549
  },
76550
+ "interfaze/interfaze-beta": {
76551
+ "id": "interfaze/interfaze-beta",
76552
+ "name": "Interfaze Beta",
76553
+ "api": "anthropic-messages",
76554
+ "provider": "vercel-ai-gateway",
76555
+ "baseUrl": "https://ai-gateway.vercel.sh",
76556
+ "reasoning": true,
76557
+ "input": [
76558
+ "text",
76559
+ "image"
76560
+ ],
76561
+ "cost": {
76562
+ "input": 1.5,
76563
+ "output": 3.5,
76564
+ "cacheRead": 0,
76565
+ "cacheWrite": 0
76566
+ },
76567
+ "contextWindow": 1000000,
76568
+ "maxTokens": 32000,
76569
+ "thinking": {
76570
+ "mode": "budget",
76571
+ "efforts": [
76572
+ "minimal",
76573
+ "low",
76574
+ "medium",
76575
+ "high",
76576
+ "xhigh"
76577
+ ]
76578
+ }
76579
+ },
76580
+ "kwaipilot/kat-coder-pro-v1": {
76581
+ "id": "kwaipilot/kat-coder-pro-v1",
76582
+ "name": "KAT-Coder-Pro V1",
76583
+ "api": "anthropic-messages",
76584
+ "provider": "vercel-ai-gateway",
76585
+ "baseUrl": "https://ai-gateway.vercel.sh",
76586
+ "reasoning": false,
76587
+ "input": [
76588
+ "text"
76589
+ ],
76590
+ "cost": {
76591
+ "input": 0.3,
76592
+ "output": 1.2,
76593
+ "cacheRead": 0.06,
76594
+ "cacheWrite": 0
76595
+ },
76596
+ "contextWindow": 256000,
76597
+ "maxTokens": 32000
76598
+ },
76187
76599
  "kwaipilot/kat-coder-pro-v2": {
76188
76600
  "id": "kwaipilot/kat-coder-pro-v2",
76189
76601
  "name": "KAT-Coder-Pro V2",
@@ -76252,6 +76664,36 @@
76252
76664
  "requiresEffort": true
76253
76665
  }
76254
76666
  },
76667
+ "meituan/longcat-flash-thinking-2601": {
76668
+ "id": "meituan/longcat-flash-thinking-2601",
76669
+ "name": "LongCat Flash Thinking 2601",
76670
+ "api": "anthropic-messages",
76671
+ "provider": "vercel-ai-gateway",
76672
+ "baseUrl": "https://ai-gateway.vercel.sh",
76673
+ "reasoning": true,
76674
+ "input": [
76675
+ "text"
76676
+ ],
76677
+ "cost": {
76678
+ "input": 0,
76679
+ "output": 0,
76680
+ "cacheRead": 0,
76681
+ "cacheWrite": 0
76682
+ },
76683
+ "contextWindow": 32768,
76684
+ "maxTokens": 32768,
76685
+ "thinking": {
76686
+ "mode": "budget",
76687
+ "efforts": [
76688
+ "minimal",
76689
+ "low",
76690
+ "medium",
76691
+ "high",
76692
+ "xhigh"
76693
+ ],
76694
+ "requiresEffort": true
76695
+ }
76696
+ },
76255
76697
  "meta/llama-3.1-70b": {
76256
76698
  "id": "meta/llama-3.1-70b",
76257
76699
  "name": "Llama 3.1 70B Instruct",
@@ -76719,7 +77161,8 @@
76719
77161
  "provider": "vercel-ai-gateway",
76720
77162
  "reasoning": false,
76721
77163
  "input": [
76722
- "text"
77164
+ "text",
77165
+ "image"
76723
77166
  ],
76724
77167
  "cost": {
76725
77168
  "input": 0.09999999999999999,
@@ -76730,6 +77173,86 @@
76730
77173
  "contextWindow": 256000,
76731
77174
  "maxTokens": 256000
76732
77175
  },
77176
+ "mistral/magistral-medium": {
77177
+ "id": "mistral/magistral-medium",
77178
+ "name": "Magistral Medium 2509",
77179
+ "api": "anthropic-messages",
77180
+ "provider": "vercel-ai-gateway",
77181
+ "baseUrl": "https://ai-gateway.vercel.sh",
77182
+ "reasoning": true,
77183
+ "input": [
77184
+ "text",
77185
+ "image"
77186
+ ],
77187
+ "cost": {
77188
+ "input": 2,
77189
+ "output": 5,
77190
+ "cacheRead": 0,
77191
+ "cacheWrite": 0
77192
+ },
77193
+ "contextWindow": 128000,
77194
+ "maxTokens": 64000,
77195
+ "thinking": {
77196
+ "mode": "budget",
77197
+ "efforts": [
77198
+ "minimal",
77199
+ "low",
77200
+ "medium",
77201
+ "high",
77202
+ "xhigh"
77203
+ ]
77204
+ }
77205
+ },
77206
+ "mistral/magistral-small": {
77207
+ "id": "mistral/magistral-small",
77208
+ "name": "Magistral Small 2509",
77209
+ "api": "anthropic-messages",
77210
+ "provider": "vercel-ai-gateway",
77211
+ "baseUrl": "https://ai-gateway.vercel.sh",
77212
+ "reasoning": true,
77213
+ "input": [
77214
+ "text",
77215
+ "image"
77216
+ ],
77217
+ "cost": {
77218
+ "input": 0.5,
77219
+ "output": 1.5,
77220
+ "cacheRead": 0,
77221
+ "cacheWrite": 0
77222
+ },
77223
+ "contextWindow": 128000,
77224
+ "maxTokens": 64000,
77225
+ "thinking": {
77226
+ "mode": "budget",
77227
+ "efforts": [
77228
+ "minimal",
77229
+ "low",
77230
+ "medium",
77231
+ "high",
77232
+ "xhigh"
77233
+ ]
77234
+ }
77235
+ },
77236
+ "mistral/ministral-14b": {
77237
+ "id": "mistral/ministral-14b",
77238
+ "name": "Ministral 14B",
77239
+ "api": "anthropic-messages",
77240
+ "provider": "vercel-ai-gateway",
77241
+ "baseUrl": "https://ai-gateway.vercel.sh",
77242
+ "reasoning": false,
77243
+ "input": [
77244
+ "text",
77245
+ "image"
77246
+ ],
77247
+ "cost": {
77248
+ "input": 0.19999999999999998,
77249
+ "output": 0.19999999999999998,
77250
+ "cacheRead": 0,
77251
+ "cacheWrite": 0
77252
+ },
77253
+ "contextWindow": 256000,
77254
+ "maxTokens": 256000
77255
+ },
76733
77256
  "mistral/ministral-3b": {
76734
77257
  "id": "mistral/ministral-3b",
76735
77258
  "name": "Ministral 3B",
@@ -76768,6 +77291,26 @@
76768
77291
  "contextWindow": 128000,
76769
77292
  "maxTokens": 4000
76770
77293
  },
77294
+ "mistral/mistral-large-3": {
77295
+ "id": "mistral/mistral-large-3",
77296
+ "name": "Mistral Large 3",
77297
+ "api": "anthropic-messages",
77298
+ "provider": "vercel-ai-gateway",
77299
+ "baseUrl": "https://ai-gateway.vercel.sh",
77300
+ "reasoning": false,
77301
+ "input": [
77302
+ "text",
77303
+ "image"
77304
+ ],
77305
+ "cost": {
77306
+ "input": 0.5,
77307
+ "output": 1.5,
77308
+ "cacheRead": 0,
77309
+ "cacheWrite": 0
77310
+ },
77311
+ "contextWindow": 256000,
77312
+ "maxTokens": 256000
77313
+ },
76771
77314
  "mistral/mistral-medium": {
76772
77315
  "id": "mistral/mistral-medium",
76773
77316
  "name": "Mistral Medium 3.1",
@@ -77134,6 +77677,35 @@
77134
77677
  ]
77135
77678
  }
77136
77679
  },
77680
+ "nvidia/nemotron-3-nano-30b-a3b": {
77681
+ "id": "nvidia/nemotron-3-nano-30b-a3b",
77682
+ "name": "Nemotron 3 Nano 30B A3B",
77683
+ "api": "anthropic-messages",
77684
+ "provider": "vercel-ai-gateway",
77685
+ "baseUrl": "https://ai-gateway.vercel.sh",
77686
+ "reasoning": true,
77687
+ "input": [
77688
+ "text"
77689
+ ],
77690
+ "cost": {
77691
+ "input": 0.049999999999999996,
77692
+ "output": 0.24,
77693
+ "cacheRead": 0,
77694
+ "cacheWrite": 0
77695
+ },
77696
+ "contextWindow": 262144,
77697
+ "maxTokens": 262144,
77698
+ "thinking": {
77699
+ "mode": "budget",
77700
+ "efforts": [
77701
+ "minimal",
77702
+ "low",
77703
+ "medium",
77704
+ "high",
77705
+ "xhigh"
77706
+ ]
77707
+ }
77708
+ },
77137
77709
  "nvidia/nemotron-3-super-120b-a12b": {
77138
77710
  "id": "nvidia/nemotron-3-super-120b-a12b",
77139
77711
  "name": "Nemotron 3 Super",
@@ -77281,6 +77853,25 @@
77281
77853
  ]
77282
77854
  }
77283
77855
  },
77856
+ "openai/gpt-3.5-turbo": {
77857
+ "id": "openai/gpt-3.5-turbo",
77858
+ "name": "GPT-3.5 Turbo",
77859
+ "api": "anthropic-messages",
77860
+ "provider": "vercel-ai-gateway",
77861
+ "baseUrl": "https://ai-gateway.vercel.sh",
77862
+ "reasoning": false,
77863
+ "input": [
77864
+ "text"
77865
+ ],
77866
+ "cost": {
77867
+ "input": 0.5,
77868
+ "output": 1.5,
77869
+ "cacheRead": 0,
77870
+ "cacheWrite": 0
77871
+ },
77872
+ "contextWindow": 16385,
77873
+ "maxTokens": 4096
77874
+ },
77284
77875
  "openai/gpt-4-turbo": {
77285
77876
  "id": "openai/gpt-4-turbo",
77286
77877
  "name": "GPT-4 Turbo",
@@ -79498,6 +80089,35 @@
79498
80089
  ]
79499
80090
  }
79500
80091
  },
80092
+ "zai/glm-5.2-fast": {
80093
+ "id": "zai/glm-5.2-fast",
80094
+ "name": "GLM 5.2 Fast",
80095
+ "api": "anthropic-messages",
80096
+ "provider": "vercel-ai-gateway",
80097
+ "baseUrl": "https://ai-gateway.vercel.sh",
80098
+ "reasoning": true,
80099
+ "input": [
80100
+ "text"
80101
+ ],
80102
+ "cost": {
80103
+ "input": 3,
80104
+ "output": 10.25,
80105
+ "cacheRead": 0.5,
80106
+ "cacheWrite": 0
80107
+ },
80108
+ "contextWindow": 1000000,
80109
+ "maxTokens": 128000,
80110
+ "thinking": {
80111
+ "mode": "budget",
80112
+ "efforts": [
80113
+ "minimal",
80114
+ "low",
80115
+ "medium",
80116
+ "high",
80117
+ "xhigh"
80118
+ ]
80119
+ }
80120
+ },
79501
80121
  "zai/glm-5v-turbo": {
79502
80122
  "id": "zai/glm-5v-turbo",
79503
80123
  "name": "GLM 5V Turbo",
@@ -82020,7 +82640,7 @@
82020
82640
  "contextWindow": 1000000,
82021
82641
  "maxTokens": 64000,
82022
82642
  "thinking": {
82023
- "mode": "anthropic-budget-effort",
82643
+ "mode": "budget",
82024
82644
  "efforts": [
82025
82645
  "minimal",
82026
82646
  "low",
@@ -82104,8 +82724,8 @@
82104
82724
  "text"
82105
82725
  ],
82106
82726
  "cost": {
82107
- "input": 0.588,
82108
- "output": 2.646,
82727
+ "input": 0.424593036,
82728
+ "output": 1.910668662,
82109
82729
  "cacheRead": 0,
82110
82730
  "cacheWrite": 0
82111
82731
  },
@@ -82301,6 +82921,96 @@
82301
82921
  ]
82302
82922
  }
82303
82923
  },
82924
+ "bytedance/doubao-seed-2.1-pro": {
82925
+ "id": "bytedance/doubao-seed-2.1-pro",
82926
+ "name": "Doubao-Seed-2.1-pro",
82927
+ "api": "openai-completions",
82928
+ "provider": "zenmux",
82929
+ "baseUrl": "https://zenmux.ai/api/v1",
82930
+ "reasoning": true,
82931
+ "input": [
82932
+ "text",
82933
+ "image"
82934
+ ],
82935
+ "cost": {
82936
+ "input": 0.422571632,
82937
+ "output": 2.11285816,
82938
+ "cacheRead": 0.08453343,
82939
+ "cacheWrite": 0.001193975
82940
+ },
82941
+ "contextWindow": 256000,
82942
+ "maxTokens": null,
82943
+ "thinking": {
82944
+ "mode": "effort",
82945
+ "efforts": [
82946
+ "minimal",
82947
+ "low",
82948
+ "medium",
82949
+ "high",
82950
+ "xhigh"
82951
+ ]
82952
+ }
82953
+ },
82954
+ "bytedance/doubao-seed-2.1-turbo": {
82955
+ "id": "bytedance/doubao-seed-2.1-turbo",
82956
+ "name": "Doubao-Seed-2.1-turbo",
82957
+ "api": "openai-completions",
82958
+ "provider": "zenmux",
82959
+ "baseUrl": "https://zenmux.ai/api/v1",
82960
+ "reasoning": true,
82961
+ "input": [
82962
+ "text",
82963
+ "image"
82964
+ ],
82965
+ "cost": {
82966
+ "input": 0.422571632,
82967
+ "output": 2.11285816,
82968
+ "cacheRead": 0.08453343,
82969
+ "cacheWrite": 0.00238795
82970
+ },
82971
+ "contextWindow": 256000,
82972
+ "maxTokens": null,
82973
+ "thinking": {
82974
+ "mode": "effort",
82975
+ "efforts": [
82976
+ "minimal",
82977
+ "low",
82978
+ "medium",
82979
+ "high",
82980
+ "xhigh"
82981
+ ]
82982
+ }
82983
+ },
82984
+ "bytedance/doubao-seed-character": {
82985
+ "id": "bytedance/doubao-seed-character",
82986
+ "name": "Doubao-Seed-Character",
82987
+ "api": "openai-completions",
82988
+ "provider": "zenmux",
82989
+ "baseUrl": "https://zenmux.ai/api/v1",
82990
+ "reasoning": true,
82991
+ "input": [
82992
+ "text",
82993
+ "image"
82994
+ ],
82995
+ "cost": {
82996
+ "input": 0.1179,
82997
+ "output": 0.2947,
82998
+ "cacheRead": 0.0236,
82999
+ "cacheWrite": 0.0025
83000
+ },
83001
+ "contextWindow": 128000,
83002
+ "maxTokens": null,
83003
+ "thinking": {
83004
+ "mode": "effort",
83005
+ "efforts": [
83006
+ "minimal",
83007
+ "low",
83008
+ "medium",
83009
+ "high",
83010
+ "xhigh"
83011
+ ]
83012
+ }
83013
+ },
82304
83014
  "bytedance/doubao-seed-code": {
82305
83015
  "id": "bytedance/doubao-seed-code",
82306
83016
  "name": "Doubao-Seed-Code",
@@ -82331,6 +83041,36 @@
82331
83041
  ]
82332
83042
  }
82333
83043
  },
83044
+ "bytedance/doubao-seed-evolving": {
83045
+ "id": "bytedance/doubao-seed-evolving",
83046
+ "name": "Doubao-Seed-Evolving",
83047
+ "api": "openai-completions",
83048
+ "provider": "zenmux",
83049
+ "baseUrl": "https://zenmux.ai/api/v1",
83050
+ "reasoning": true,
83051
+ "input": [
83052
+ "text",
83053
+ "image"
83054
+ ],
83055
+ "cost": {
83056
+ "input": 0.422571632,
83057
+ "output": 2.11285816,
83058
+ "cacheRead": 0.08453343,
83059
+ "cacheWrite": 0.001193975
83060
+ },
83061
+ "contextWindow": 256000,
83062
+ "maxTokens": null,
83063
+ "thinking": {
83064
+ "mode": "effort",
83065
+ "efforts": [
83066
+ "minimal",
83067
+ "low",
83068
+ "medium",
83069
+ "high",
83070
+ "xhigh"
83071
+ ]
83072
+ }
83073
+ },
82334
83074
  "deepseek/deepseek-chat": {
82335
83075
  "id": "deepseek/deepseek-chat",
82336
83076
  "name": "DeepSeek-V3.2 (Non-thinking Mode)",
@@ -83087,9 +83827,9 @@
83087
83827
  "text"
83088
83828
  ],
83089
83829
  "cost": {
83090
- "input": 0.3,
83091
- "output": 2.5,
83092
- "cacheRead": 0.06,
83830
+ "input": 0.1318155,
83831
+ "output": 1.0984625,
83832
+ "cacheRead": 0.0263631,
83093
83833
  "cacheWrite": 0
83094
83834
  },
83095
83835
  "contextWindow": 262144,
@@ -85062,10 +85802,10 @@
85062
85802
  "image"
85063
85803
  ],
85064
85804
  "cost": {
85065
- "input": 0.25,
85066
- "output": 1.5,
85067
- "cacheRead": 0.025,
85068
- "cacheWrite": 0.3125
85805
+ "input": 0.134717,
85806
+ "output": 0.808302,
85807
+ "cacheRead": 0.0134717,
85808
+ "cacheWrite": 0.16839625
85069
85809
  },
85070
85810
  "contextWindow": 1000000,
85071
85811
  "maxTokens": 65536,