@caupulican/pi-ai 0.80.37 → 0.80.40
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/README.md +4 -0
- package/dist/env-api-keys.d.ts.map +1 -1
- package/dist/env-api-keys.js +6 -0
- package/dist/env-api-keys.js.map +1 -1
- package/dist/image-models.generated.d.ts +45 -0
- package/dist/image-models.generated.d.ts.map +1 -1
- package/dist/image-models.generated.js +45 -0
- package/dist/image-models.generated.js.map +1 -1
- package/dist/models.generated.d.ts +452 -79
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +449 -100
- package/dist/models.generated.js.map +1 -1
- package/dist/providers/openai-responses-shared.d.ts.map +1 -1
- package/dist/providers/openai-responses-shared.js +33 -5
- package/dist/providers/openai-responses-shared.js.map +1 -1
- package/dist/providers/openai-responses.d.ts.map +1 -1
- package/dist/providers/openai-responses.js +35 -8
- package/dist/providers/openai-responses.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/models.generated.js
CHANGED
|
@@ -4077,6 +4077,46 @@ export const MODELS = {
|
|
|
4077
4077
|
maxTokens: 262000,
|
|
4078
4078
|
},
|
|
4079
4079
|
},
|
|
4080
|
+
"fugu": {
|
|
4081
|
+
"fugu": {
|
|
4082
|
+
id: "fugu",
|
|
4083
|
+
name: "Fugu",
|
|
4084
|
+
api: "openai-responses",
|
|
4085
|
+
provider: "fugu",
|
|
4086
|
+
baseUrl: "https://api.sakana.ai/v1",
|
|
4087
|
+
compat: { "supportsLongCacheRetention": false },
|
|
4088
|
+
reasoning: true,
|
|
4089
|
+
thinkingLevelMap: { "off": null, "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "xhigh" },
|
|
4090
|
+
input: ["text", "image"],
|
|
4091
|
+
cost: {
|
|
4092
|
+
input: 0,
|
|
4093
|
+
output: 0,
|
|
4094
|
+
cacheRead: 0,
|
|
4095
|
+
cacheWrite: 0,
|
|
4096
|
+
},
|
|
4097
|
+
contextWindow: 1000000,
|
|
4098
|
+
maxTokens: 10000,
|
|
4099
|
+
},
|
|
4100
|
+
"fugu-ultra": {
|
|
4101
|
+
id: "fugu-ultra",
|
|
4102
|
+
name: "Fugu Ultra",
|
|
4103
|
+
api: "openai-responses",
|
|
4104
|
+
provider: "fugu",
|
|
4105
|
+
baseUrl: "https://api.sakana.ai/v1",
|
|
4106
|
+
compat: { "supportsLongCacheRetention": false },
|
|
4107
|
+
reasoning: true,
|
|
4108
|
+
thinkingLevelMap: { "off": null, "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "xhigh" },
|
|
4109
|
+
input: ["text", "image"],
|
|
4110
|
+
cost: {
|
|
4111
|
+
input: 5,
|
|
4112
|
+
output: 30,
|
|
4113
|
+
cacheRead: 0.5,
|
|
4114
|
+
cacheWrite: 0,
|
|
4115
|
+
},
|
|
4116
|
+
contextWindow: 1000000,
|
|
4117
|
+
maxTokens: 10000,
|
|
4118
|
+
},
|
|
4119
|
+
},
|
|
4080
4120
|
"github-copilot": {
|
|
4081
4121
|
"claude-fable-5": {
|
|
4082
4122
|
id: "claude-fable-5",
|
|
@@ -5456,6 +5496,24 @@ export const MODELS = {
|
|
|
5456
5496
|
contextWindow: 262144,
|
|
5457
5497
|
maxTokens: 65536,
|
|
5458
5498
|
},
|
|
5499
|
+
"Qwen/Qwen3.6-27B": {
|
|
5500
|
+
id: "Qwen/Qwen3.6-27B",
|
|
5501
|
+
name: "Qwen3.6 27B",
|
|
5502
|
+
api: "openai-completions",
|
|
5503
|
+
provider: "huggingface",
|
|
5504
|
+
baseUrl: "https://router.huggingface.co/v1",
|
|
5505
|
+
compat: { "supportsDeveloperRole": false },
|
|
5506
|
+
reasoning: true,
|
|
5507
|
+
input: ["text", "image"],
|
|
5508
|
+
cost: {
|
|
5509
|
+
input: 0.47,
|
|
5510
|
+
output: 3.19,
|
|
5511
|
+
cacheRead: 0,
|
|
5512
|
+
cacheWrite: 0,
|
|
5513
|
+
},
|
|
5514
|
+
contextWindow: 262144,
|
|
5515
|
+
maxTokens: 65536,
|
|
5516
|
+
},
|
|
5459
5517
|
"Qwen/Qwen3.6-35B-A3B": {
|
|
5460
5518
|
id: "Qwen/Qwen3.6-35B-A3B",
|
|
5461
5519
|
name: "Qwen3.6 35B-A3B",
|
|
@@ -5492,6 +5550,24 @@ export const MODELS = {
|
|
|
5492
5550
|
contextWindow: 262144,
|
|
5493
5551
|
maxTokens: 4096,
|
|
5494
5552
|
},
|
|
5553
|
+
"XiaomiMiMo/MiMo-V2.5-Pro": {
|
|
5554
|
+
id: "XiaomiMiMo/MiMo-V2.5-Pro",
|
|
5555
|
+
name: "MiMo-V2.5-Pro",
|
|
5556
|
+
api: "openai-completions",
|
|
5557
|
+
provider: "huggingface",
|
|
5558
|
+
baseUrl: "https://router.huggingface.co/v1",
|
|
5559
|
+
compat: { "supportsDeveloperRole": false },
|
|
5560
|
+
reasoning: true,
|
|
5561
|
+
input: ["text"],
|
|
5562
|
+
cost: {
|
|
5563
|
+
input: 1,
|
|
5564
|
+
output: 3,
|
|
5565
|
+
cacheRead: 0,
|
|
5566
|
+
cacheWrite: 0,
|
|
5567
|
+
},
|
|
5568
|
+
contextWindow: 1048576,
|
|
5569
|
+
maxTokens: 131072,
|
|
5570
|
+
},
|
|
5495
5571
|
"deepseek-ai/DeepSeek-R1": {
|
|
5496
5572
|
id: "deepseek-ai/DeepSeek-R1",
|
|
5497
5573
|
name: "DeepSeek-R1",
|
|
@@ -5762,6 +5838,24 @@ export const MODELS = {
|
|
|
5762
5838
|
contextWindow: 262144,
|
|
5763
5839
|
maxTokens: 256000,
|
|
5764
5840
|
},
|
|
5841
|
+
"stepfun-ai/Step-3.7-Flash": {
|
|
5842
|
+
id: "stepfun-ai/Step-3.7-Flash",
|
|
5843
|
+
name: "Step 3.7 Flash",
|
|
5844
|
+
api: "openai-completions",
|
|
5845
|
+
provider: "huggingface",
|
|
5846
|
+
baseUrl: "https://router.huggingface.co/v1",
|
|
5847
|
+
compat: { "supportsDeveloperRole": false },
|
|
5848
|
+
reasoning: true,
|
|
5849
|
+
input: ["text", "image"],
|
|
5850
|
+
cost: {
|
|
5851
|
+
input: 0.2,
|
|
5852
|
+
output: 1.15,
|
|
5853
|
+
cacheRead: 0,
|
|
5854
|
+
cacheWrite: 0,
|
|
5855
|
+
},
|
|
5856
|
+
contextWindow: 262144,
|
|
5857
|
+
maxTokens: 256000,
|
|
5858
|
+
},
|
|
5765
5859
|
"zai-org/GLM-4.5": {
|
|
5766
5860
|
id: "zai-org/GLM-4.5",
|
|
5767
5861
|
name: "GLM-4.5",
|
|
@@ -9520,23 +9614,6 @@ export const MODELS = {
|
|
|
9520
9614
|
contextWindow: 1048576,
|
|
9521
9615
|
maxTokens: 384000,
|
|
9522
9616
|
},
|
|
9523
|
-
"essentialai/rnj-1-instruct": {
|
|
9524
|
-
id: "essentialai/rnj-1-instruct",
|
|
9525
|
-
name: "EssentialAI: Rnj 1 Instruct",
|
|
9526
|
-
api: "openai-completions",
|
|
9527
|
-
provider: "openrouter",
|
|
9528
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9529
|
-
reasoning: false,
|
|
9530
|
-
input: ["text"],
|
|
9531
|
-
cost: {
|
|
9532
|
-
input: 0.15,
|
|
9533
|
-
output: 0.15,
|
|
9534
|
-
cacheRead: 0,
|
|
9535
|
-
cacheWrite: 0,
|
|
9536
|
-
},
|
|
9537
|
-
contextWindow: 32768,
|
|
9538
|
-
maxTokens: 4096,
|
|
9539
|
-
},
|
|
9540
9617
|
"google/gemini-2.5-flash": {
|
|
9541
9618
|
id: "google/gemini-2.5-flash",
|
|
9542
9619
|
name: "Google: Gemini 2.5 Flash",
|
|
@@ -10159,13 +10236,13 @@ export const MODELS = {
|
|
|
10159
10236
|
reasoning: true,
|
|
10160
10237
|
input: ["text"],
|
|
10161
10238
|
cost: {
|
|
10162
|
-
input: 0.
|
|
10163
|
-
output:
|
|
10164
|
-
cacheRead: 0
|
|
10239
|
+
input: 0.24,
|
|
10240
|
+
output: 0.96,
|
|
10241
|
+
cacheRead: 0,
|
|
10165
10242
|
cacheWrite: 0,
|
|
10166
10243
|
},
|
|
10167
10244
|
contextWindow: 204800,
|
|
10168
|
-
maxTokens:
|
|
10245
|
+
maxTokens: 196608,
|
|
10169
10246
|
},
|
|
10170
10247
|
"minimax/minimax-m3": {
|
|
10171
10248
|
id: "minimax/minimax-m3",
|
|
@@ -10568,13 +10645,13 @@ export const MODELS = {
|
|
|
10568
10645
|
reasoning: true,
|
|
10569
10646
|
input: ["text", "image"],
|
|
10570
10647
|
cost: {
|
|
10571
|
-
input: 0.
|
|
10572
|
-
output: 3.
|
|
10573
|
-
cacheRead: 0.
|
|
10648
|
+
input: 0.74,
|
|
10649
|
+
output: 3.5,
|
|
10650
|
+
cacheRead: 0.15,
|
|
10574
10651
|
cacheWrite: 0,
|
|
10575
10652
|
},
|
|
10576
10653
|
contextWindow: 262144,
|
|
10577
|
-
maxTokens:
|
|
10654
|
+
maxTokens: 16384,
|
|
10578
10655
|
},
|
|
10579
10656
|
"nvidia/llama-3.3-nemotron-super-49b-v1.5": {
|
|
10580
10657
|
id: "nvidia/llama-3.3-nemotron-super-49b-v1.5",
|
|
@@ -12645,6 +12722,23 @@ export const MODELS = {
|
|
|
12645
12722
|
contextWindow: 256000,
|
|
12646
12723
|
maxTokens: 128000,
|
|
12647
12724
|
},
|
|
12725
|
+
"sakana/fugu-ultra": {
|
|
12726
|
+
id: "sakana/fugu-ultra",
|
|
12727
|
+
name: "Sakana: Fugu Ultra",
|
|
12728
|
+
api: "openai-completions",
|
|
12729
|
+
provider: "openrouter",
|
|
12730
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
12731
|
+
reasoning: true,
|
|
12732
|
+
input: ["text", "image"],
|
|
12733
|
+
cost: {
|
|
12734
|
+
input: 5,
|
|
12735
|
+
output: 30,
|
|
12736
|
+
cacheRead: 0.5,
|
|
12737
|
+
cacheWrite: 0,
|
|
12738
|
+
},
|
|
12739
|
+
contextWindow: 1000000,
|
|
12740
|
+
maxTokens: 128000,
|
|
12741
|
+
},
|
|
12648
12742
|
"sao10k/l3.1-euryale-70b": {
|
|
12649
12743
|
id: "sao10k/l3.1-euryale-70b",
|
|
12650
12744
|
name: "Sao10K: Llama 3.1 Euryale 70B v2.2",
|
|
@@ -12713,23 +12807,6 @@ export const MODELS = {
|
|
|
12713
12807
|
contextWindow: 262144,
|
|
12714
12808
|
maxTokens: 4096,
|
|
12715
12809
|
},
|
|
12716
|
-
"thedrummer/rocinante-12b": {
|
|
12717
|
-
id: "thedrummer/rocinante-12b",
|
|
12718
|
-
name: "TheDrummer: Rocinante 12B",
|
|
12719
|
-
api: "openai-completions",
|
|
12720
|
-
provider: "openrouter",
|
|
12721
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
12722
|
-
reasoning: false,
|
|
12723
|
-
input: ["text"],
|
|
12724
|
-
cost: {
|
|
12725
|
-
input: 0.16999999999999998,
|
|
12726
|
-
output: 0.43,
|
|
12727
|
-
cacheRead: 0,
|
|
12728
|
-
cacheWrite: 0,
|
|
12729
|
-
},
|
|
12730
|
-
contextWindow: 32768,
|
|
12731
|
-
maxTokens: 32768,
|
|
12732
|
-
},
|
|
12733
12810
|
"thedrummer/unslopnemo-12b": {
|
|
12734
12811
|
id: "thedrummer/unslopnemo-12b",
|
|
12735
12812
|
name: "TheDrummer: UnslopNemo 12B",
|
|
@@ -12824,13 +12901,13 @@ export const MODELS = {
|
|
|
12824
12901
|
reasoning: true,
|
|
12825
12902
|
input: ["text", "image"],
|
|
12826
12903
|
cost: {
|
|
12827
|
-
input: 0.
|
|
12904
|
+
input: 0.105,
|
|
12828
12905
|
output: 0.28,
|
|
12829
|
-
cacheRead: 0
|
|
12906
|
+
cacheRead: 0,
|
|
12830
12907
|
cacheWrite: 0,
|
|
12831
12908
|
},
|
|
12832
12909
|
contextWindow: 1048576,
|
|
12833
|
-
maxTokens:
|
|
12910
|
+
maxTokens: 4096,
|
|
12834
12911
|
},
|
|
12835
12912
|
"xiaomi/mimo-v2.5-pro": {
|
|
12836
12913
|
id: "xiaomi/mimo-v2.5-pro",
|
|
@@ -13028,13 +13105,13 @@ export const MODELS = {
|
|
|
13028
13105
|
reasoning: true,
|
|
13029
13106
|
input: ["text"],
|
|
13030
13107
|
cost: {
|
|
13031
|
-
input: 0.
|
|
13032
|
-
output: 3
|
|
13033
|
-
cacheRead: 0.
|
|
13108
|
+
input: 0.95,
|
|
13109
|
+
output: 3,
|
|
13110
|
+
cacheRead: 0.18,
|
|
13034
13111
|
cacheWrite: 0,
|
|
13035
13112
|
},
|
|
13036
13113
|
contextWindow: 1048576,
|
|
13037
|
-
maxTokens:
|
|
13114
|
+
maxTokens: 32768,
|
|
13038
13115
|
},
|
|
13039
13116
|
"z-ai/glm-5v-turbo": {
|
|
13040
13117
|
id: "z-ai/glm-5v-turbo",
|
|
@@ -13674,7 +13751,7 @@ export const MODELS = {
|
|
|
13674
13751
|
api: "anthropic-messages",
|
|
13675
13752
|
provider: "vercel-ai-gateway",
|
|
13676
13753
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13677
|
-
reasoning:
|
|
13754
|
+
reasoning: false,
|
|
13678
13755
|
input: ["text"],
|
|
13679
13756
|
cost: {
|
|
13680
13757
|
input: 1.5,
|
|
@@ -13691,7 +13768,7 @@ export const MODELS = {
|
|
|
13691
13768
|
api: "anthropic-messages",
|
|
13692
13769
|
provider: "vercel-ai-gateway",
|
|
13693
13770
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13694
|
-
reasoning:
|
|
13771
|
+
reasoning: false,
|
|
13695
13772
|
input: ["text"],
|
|
13696
13773
|
cost: {
|
|
13697
13774
|
input: 0.15,
|
|
@@ -13708,7 +13785,7 @@ export const MODELS = {
|
|
|
13708
13785
|
api: "anthropic-messages",
|
|
13709
13786
|
provider: "vercel-ai-gateway",
|
|
13710
13787
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13711
|
-
reasoning:
|
|
13788
|
+
reasoning: false,
|
|
13712
13789
|
input: ["text"],
|
|
13713
13790
|
cost: {
|
|
13714
13791
|
input: 0.5,
|
|
@@ -13821,6 +13898,40 @@ export const MODELS = {
|
|
|
13821
13898
|
contextWindow: 131072,
|
|
13822
13899
|
maxTokens: 32768,
|
|
13823
13900
|
},
|
|
13901
|
+
"alibaba/qwen3-vl-235b-a22b-instruct": {
|
|
13902
|
+
id: "alibaba/qwen3-vl-235b-a22b-instruct",
|
|
13903
|
+
name: "Qwen3 VL 235B A22B Instruct",
|
|
13904
|
+
api: "anthropic-messages",
|
|
13905
|
+
provider: "vercel-ai-gateway",
|
|
13906
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13907
|
+
reasoning: false,
|
|
13908
|
+
input: ["text", "image"],
|
|
13909
|
+
cost: {
|
|
13910
|
+
input: 0.39999999999999997,
|
|
13911
|
+
output: 1.5999999999999999,
|
|
13912
|
+
cacheRead: 0,
|
|
13913
|
+
cacheWrite: 0,
|
|
13914
|
+
},
|
|
13915
|
+
contextWindow: 131072,
|
|
13916
|
+
maxTokens: 129024,
|
|
13917
|
+
},
|
|
13918
|
+
"alibaba/qwen3-vl-instruct": {
|
|
13919
|
+
id: "alibaba/qwen3-vl-instruct",
|
|
13920
|
+
name: "Qwen3 VL 235B A22B Instruct",
|
|
13921
|
+
api: "anthropic-messages",
|
|
13922
|
+
provider: "vercel-ai-gateway",
|
|
13923
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13924
|
+
reasoning: false,
|
|
13925
|
+
input: ["text", "image"],
|
|
13926
|
+
cost: {
|
|
13927
|
+
input: 0.39999999999999997,
|
|
13928
|
+
output: 1.5999999999999999,
|
|
13929
|
+
cacheRead: 0,
|
|
13930
|
+
cacheWrite: 0,
|
|
13931
|
+
},
|
|
13932
|
+
contextWindow: 131072,
|
|
13933
|
+
maxTokens: 129024,
|
|
13934
|
+
},
|
|
13824
13935
|
"alibaba/qwen3-vl-thinking": {
|
|
13825
13936
|
id: "alibaba/qwen3-vl-thinking",
|
|
13826
13937
|
name: "Qwen3 VL 235B A22B Thinking",
|
|
@@ -13940,6 +14051,74 @@ export const MODELS = {
|
|
|
13940
14051
|
contextWindow: 1000000,
|
|
13941
14052
|
maxTokens: 64000,
|
|
13942
14053
|
},
|
|
14054
|
+
"amazon/nova-2-lite": {
|
|
14055
|
+
id: "amazon/nova-2-lite",
|
|
14056
|
+
name: "Nova 2 Lite",
|
|
14057
|
+
api: "anthropic-messages",
|
|
14058
|
+
provider: "vercel-ai-gateway",
|
|
14059
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14060
|
+
reasoning: true,
|
|
14061
|
+
input: ["text", "image"],
|
|
14062
|
+
cost: {
|
|
14063
|
+
input: 0.3,
|
|
14064
|
+
output: 2.5,
|
|
14065
|
+
cacheRead: 0.075,
|
|
14066
|
+
cacheWrite: 0,
|
|
14067
|
+
},
|
|
14068
|
+
contextWindow: 1000000,
|
|
14069
|
+
maxTokens: 1000000,
|
|
14070
|
+
},
|
|
14071
|
+
"amazon/nova-lite": {
|
|
14072
|
+
id: "amazon/nova-lite",
|
|
14073
|
+
name: "Nova Lite",
|
|
14074
|
+
api: "anthropic-messages",
|
|
14075
|
+
provider: "vercel-ai-gateway",
|
|
14076
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14077
|
+
reasoning: false,
|
|
14078
|
+
input: ["text", "image"],
|
|
14079
|
+
cost: {
|
|
14080
|
+
input: 0.06,
|
|
14081
|
+
output: 0.24,
|
|
14082
|
+
cacheRead: 0,
|
|
14083
|
+
cacheWrite: 0,
|
|
14084
|
+
},
|
|
14085
|
+
contextWindow: 300000,
|
|
14086
|
+
maxTokens: 8192,
|
|
14087
|
+
},
|
|
14088
|
+
"amazon/nova-micro": {
|
|
14089
|
+
id: "amazon/nova-micro",
|
|
14090
|
+
name: "Nova Micro",
|
|
14091
|
+
api: "anthropic-messages",
|
|
14092
|
+
provider: "vercel-ai-gateway",
|
|
14093
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14094
|
+
reasoning: false,
|
|
14095
|
+
input: ["text"],
|
|
14096
|
+
cost: {
|
|
14097
|
+
input: 0.035,
|
|
14098
|
+
output: 0.14,
|
|
14099
|
+
cacheRead: 0,
|
|
14100
|
+
cacheWrite: 0,
|
|
14101
|
+
},
|
|
14102
|
+
contextWindow: 128000,
|
|
14103
|
+
maxTokens: 8192,
|
|
14104
|
+
},
|
|
14105
|
+
"amazon/nova-pro": {
|
|
14106
|
+
id: "amazon/nova-pro",
|
|
14107
|
+
name: "Nova Pro",
|
|
14108
|
+
api: "anthropic-messages",
|
|
14109
|
+
provider: "vercel-ai-gateway",
|
|
14110
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14111
|
+
reasoning: false,
|
|
14112
|
+
input: ["text", "image"],
|
|
14113
|
+
cost: {
|
|
14114
|
+
input: 0.7999999999999999,
|
|
14115
|
+
output: 3.1999999999999997,
|
|
14116
|
+
cacheRead: 0,
|
|
14117
|
+
cacheWrite: 0,
|
|
14118
|
+
},
|
|
14119
|
+
contextWindow: 300000,
|
|
14120
|
+
maxTokens: 8192,
|
|
14121
|
+
},
|
|
13943
14122
|
"anthropic/claude-3-haiku": {
|
|
13944
14123
|
id: "anthropic/claude-3-haiku",
|
|
13945
14124
|
name: "Claude 3 Haiku",
|
|
@@ -14185,6 +14364,23 @@ export const MODELS = {
|
|
|
14185
14364
|
contextWindow: 262100,
|
|
14186
14365
|
maxTokens: 80000,
|
|
14187
14366
|
},
|
|
14367
|
+
"arcee-ai/trinity-mini": {
|
|
14368
|
+
id: "arcee-ai/trinity-mini",
|
|
14369
|
+
name: "Trinity Mini",
|
|
14370
|
+
api: "anthropic-messages",
|
|
14371
|
+
provider: "vercel-ai-gateway",
|
|
14372
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14373
|
+
reasoning: false,
|
|
14374
|
+
input: ["text"],
|
|
14375
|
+
cost: {
|
|
14376
|
+
input: 0.045,
|
|
14377
|
+
output: 0.15,
|
|
14378
|
+
cacheRead: 0,
|
|
14379
|
+
cacheWrite: 0,
|
|
14380
|
+
},
|
|
14381
|
+
contextWindow: 131072,
|
|
14382
|
+
maxTokens: 131072,
|
|
14383
|
+
},
|
|
14188
14384
|
"bytedance/seed-1.6": {
|
|
14189
14385
|
id: "bytedance/seed-1.6",
|
|
14190
14386
|
name: "Seed 1.6",
|
|
@@ -14192,7 +14388,7 @@ export const MODELS = {
|
|
|
14192
14388
|
provider: "vercel-ai-gateway",
|
|
14193
14389
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14194
14390
|
reasoning: true,
|
|
14195
|
-
input: ["text"],
|
|
14391
|
+
input: ["text", "image"],
|
|
14196
14392
|
cost: {
|
|
14197
14393
|
input: 0.25,
|
|
14198
14394
|
output: 2,
|
|
@@ -14202,6 +14398,23 @@ export const MODELS = {
|
|
|
14202
14398
|
contextWindow: 256000,
|
|
14203
14399
|
maxTokens: 32000,
|
|
14204
14400
|
},
|
|
14401
|
+
"bytedance/seed-1.8": {
|
|
14402
|
+
id: "bytedance/seed-1.8",
|
|
14403
|
+
name: "Bytedance Seed 1.8",
|
|
14404
|
+
api: "anthropic-messages",
|
|
14405
|
+
provider: "vercel-ai-gateway",
|
|
14406
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14407
|
+
reasoning: true,
|
|
14408
|
+
input: ["text", "image"],
|
|
14409
|
+
cost: {
|
|
14410
|
+
input: 0.25,
|
|
14411
|
+
output: 2,
|
|
14412
|
+
cacheRead: 0.049999999999999996,
|
|
14413
|
+
cacheWrite: 0,
|
|
14414
|
+
},
|
|
14415
|
+
contextWindow: 256000,
|
|
14416
|
+
maxTokens: 64000,
|
|
14417
|
+
},
|
|
14205
14418
|
"cohere/command-a": {
|
|
14206
14419
|
id: "cohere/command-a",
|
|
14207
14420
|
name: "Command A",
|
|
@@ -14293,8 +14506,8 @@ export const MODELS = {
|
|
|
14293
14506
|
api: "anthropic-messages",
|
|
14294
14507
|
provider: "vercel-ai-gateway",
|
|
14295
14508
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14296
|
-
reasoning:
|
|
14297
|
-
input: ["text"
|
|
14509
|
+
reasoning: false,
|
|
14510
|
+
input: ["text"],
|
|
14298
14511
|
cost: {
|
|
14299
14512
|
input: 0.28,
|
|
14300
14513
|
output: 0.42,
|
|
@@ -14311,7 +14524,7 @@ export const MODELS = {
|
|
|
14311
14524
|
provider: "vercel-ai-gateway",
|
|
14312
14525
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14313
14526
|
reasoning: true,
|
|
14314
|
-
input: ["text"
|
|
14527
|
+
input: ["text"],
|
|
14315
14528
|
cost: {
|
|
14316
14529
|
input: 0.62,
|
|
14317
14530
|
output: 1.85,
|
|
@@ -14328,7 +14541,7 @@ export const MODELS = {
|
|
|
14328
14541
|
provider: "vercel-ai-gateway",
|
|
14329
14542
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14330
14543
|
reasoning: true,
|
|
14331
|
-
input: ["text"
|
|
14544
|
+
input: ["text"],
|
|
14332
14545
|
cost: {
|
|
14333
14546
|
input: 0.14,
|
|
14334
14547
|
output: 0.28,
|
|
@@ -14531,7 +14744,7 @@ export const MODELS = {
|
|
|
14531
14744
|
api: "anthropic-messages",
|
|
14532
14745
|
provider: "vercel-ai-gateway",
|
|
14533
14746
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14534
|
-
reasoning:
|
|
14747
|
+
reasoning: true,
|
|
14535
14748
|
input: ["text", "image"],
|
|
14536
14749
|
cost: {
|
|
14537
14750
|
input: 0.14,
|
|
@@ -14576,6 +14789,40 @@ export const MODELS = {
|
|
|
14576
14789
|
contextWindow: 32000,
|
|
14577
14790
|
maxTokens: 16384,
|
|
14578
14791
|
},
|
|
14792
|
+
"interfaze/interfaze-beta": {
|
|
14793
|
+
id: "interfaze/interfaze-beta",
|
|
14794
|
+
name: "Interfaze Beta",
|
|
14795
|
+
api: "anthropic-messages",
|
|
14796
|
+
provider: "vercel-ai-gateway",
|
|
14797
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14798
|
+
reasoning: true,
|
|
14799
|
+
input: ["text", "image"],
|
|
14800
|
+
cost: {
|
|
14801
|
+
input: 1.5,
|
|
14802
|
+
output: 3.5,
|
|
14803
|
+
cacheRead: 0,
|
|
14804
|
+
cacheWrite: 0,
|
|
14805
|
+
},
|
|
14806
|
+
contextWindow: 1000000,
|
|
14807
|
+
maxTokens: 32000,
|
|
14808
|
+
},
|
|
14809
|
+
"kwaipilot/kat-coder-pro-v1": {
|
|
14810
|
+
id: "kwaipilot/kat-coder-pro-v1",
|
|
14811
|
+
name: "KAT-Coder-Pro V1",
|
|
14812
|
+
api: "anthropic-messages",
|
|
14813
|
+
provider: "vercel-ai-gateway",
|
|
14814
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14815
|
+
reasoning: false,
|
|
14816
|
+
input: ["text"],
|
|
14817
|
+
cost: {
|
|
14818
|
+
input: 0.3,
|
|
14819
|
+
output: 1.2,
|
|
14820
|
+
cacheRead: 0.06,
|
|
14821
|
+
cacheWrite: 0,
|
|
14822
|
+
},
|
|
14823
|
+
contextWindow: 256000,
|
|
14824
|
+
maxTokens: 32000,
|
|
14825
|
+
},
|
|
14579
14826
|
"kwaipilot/kat-coder-pro-v2": {
|
|
14580
14827
|
id: "kwaipilot/kat-coder-pro-v2",
|
|
14581
14828
|
name: "Kat Coder Pro V2",
|
|
@@ -14610,6 +14857,23 @@ export const MODELS = {
|
|
|
14610
14857
|
contextWindow: 128000,
|
|
14611
14858
|
maxTokens: 100000,
|
|
14612
14859
|
},
|
|
14860
|
+
"meituan/longcat-flash-thinking-2601": {
|
|
14861
|
+
id: "meituan/longcat-flash-thinking-2601",
|
|
14862
|
+
name: "LongCat Flash Thinking 2601",
|
|
14863
|
+
api: "anthropic-messages",
|
|
14864
|
+
provider: "vercel-ai-gateway",
|
|
14865
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14866
|
+
reasoning: true,
|
|
14867
|
+
input: ["text"],
|
|
14868
|
+
cost: {
|
|
14869
|
+
input: 0,
|
|
14870
|
+
output: 0,
|
|
14871
|
+
cacheRead: 0,
|
|
14872
|
+
cacheWrite: 0,
|
|
14873
|
+
},
|
|
14874
|
+
contextWindow: 32768,
|
|
14875
|
+
maxTokens: 32768,
|
|
14876
|
+
},
|
|
14613
14877
|
"meta/llama-3.1-70b": {
|
|
14614
14878
|
id: "meta/llama-3.1-70b",
|
|
14615
14879
|
name: "Llama 3.1 70B Instruct",
|
|
@@ -14923,7 +15187,7 @@ export const MODELS = {
|
|
|
14923
15187
|
provider: "vercel-ai-gateway",
|
|
14924
15188
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14925
15189
|
reasoning: false,
|
|
14926
|
-
input: ["text"],
|
|
15190
|
+
input: ["text", "image"],
|
|
14927
15191
|
cost: {
|
|
14928
15192
|
input: 0.09999999999999999,
|
|
14929
15193
|
output: 0.3,
|
|
@@ -14933,6 +15197,57 @@ export const MODELS = {
|
|
|
14933
15197
|
contextWindow: 256000,
|
|
14934
15198
|
maxTokens: 256000,
|
|
14935
15199
|
},
|
|
15200
|
+
"mistral/magistral-medium": {
|
|
15201
|
+
id: "mistral/magistral-medium",
|
|
15202
|
+
name: "Magistral Medium 2509",
|
|
15203
|
+
api: "anthropic-messages",
|
|
15204
|
+
provider: "vercel-ai-gateway",
|
|
15205
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15206
|
+
reasoning: true,
|
|
15207
|
+
input: ["text", "image"],
|
|
15208
|
+
cost: {
|
|
15209
|
+
input: 2,
|
|
15210
|
+
output: 5,
|
|
15211
|
+
cacheRead: 0,
|
|
15212
|
+
cacheWrite: 0,
|
|
15213
|
+
},
|
|
15214
|
+
contextWindow: 128000,
|
|
15215
|
+
maxTokens: 64000,
|
|
15216
|
+
},
|
|
15217
|
+
"mistral/magistral-small": {
|
|
15218
|
+
id: "mistral/magistral-small",
|
|
15219
|
+
name: "Magistral Small 2509",
|
|
15220
|
+
api: "anthropic-messages",
|
|
15221
|
+
provider: "vercel-ai-gateway",
|
|
15222
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15223
|
+
reasoning: true,
|
|
15224
|
+
input: ["text", "image"],
|
|
15225
|
+
cost: {
|
|
15226
|
+
input: 0.5,
|
|
15227
|
+
output: 1.5,
|
|
15228
|
+
cacheRead: 0,
|
|
15229
|
+
cacheWrite: 0,
|
|
15230
|
+
},
|
|
15231
|
+
contextWindow: 128000,
|
|
15232
|
+
maxTokens: 64000,
|
|
15233
|
+
},
|
|
15234
|
+
"mistral/ministral-14b": {
|
|
15235
|
+
id: "mistral/ministral-14b",
|
|
15236
|
+
name: "Ministral 14B",
|
|
15237
|
+
api: "anthropic-messages",
|
|
15238
|
+
provider: "vercel-ai-gateway",
|
|
15239
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15240
|
+
reasoning: false,
|
|
15241
|
+
input: ["text", "image"],
|
|
15242
|
+
cost: {
|
|
15243
|
+
input: 0.19999999999999998,
|
|
15244
|
+
output: 0.19999999999999998,
|
|
15245
|
+
cacheRead: 0,
|
|
15246
|
+
cacheWrite: 0,
|
|
15247
|
+
},
|
|
15248
|
+
contextWindow: 256000,
|
|
15249
|
+
maxTokens: 256000,
|
|
15250
|
+
},
|
|
14936
15251
|
"mistral/ministral-3b": {
|
|
14937
15252
|
id: "mistral/ministral-3b",
|
|
14938
15253
|
name: "Ministral 3B",
|
|
@@ -14967,6 +15282,23 @@ export const MODELS = {
|
|
|
14967
15282
|
contextWindow: 128000,
|
|
14968
15283
|
maxTokens: 4000,
|
|
14969
15284
|
},
|
|
15285
|
+
"mistral/mistral-large-3": {
|
|
15286
|
+
id: "mistral/mistral-large-3",
|
|
15287
|
+
name: "Mistral Large 3",
|
|
15288
|
+
api: "anthropic-messages",
|
|
15289
|
+
provider: "vercel-ai-gateway",
|
|
15290
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15291
|
+
reasoning: false,
|
|
15292
|
+
input: ["text", "image"],
|
|
15293
|
+
cost: {
|
|
15294
|
+
input: 0.5,
|
|
15295
|
+
output: 1.5,
|
|
15296
|
+
cacheRead: 0,
|
|
15297
|
+
cacheWrite: 0,
|
|
15298
|
+
},
|
|
15299
|
+
contextWindow: 256000,
|
|
15300
|
+
maxTokens: 256000,
|
|
15301
|
+
},
|
|
14970
15302
|
"mistral/mistral-medium": {
|
|
14971
15303
|
id: "mistral/mistral-medium",
|
|
14972
15304
|
name: "Mistral Medium 3.1",
|
|
@@ -14991,7 +15323,7 @@ export const MODELS = {
|
|
|
14991
15323
|
provider: "vercel-ai-gateway",
|
|
14992
15324
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14993
15325
|
reasoning: true,
|
|
14994
|
-
input: ["text"],
|
|
15326
|
+
input: ["text", "image"],
|
|
14995
15327
|
cost: {
|
|
14996
15328
|
input: 1.5,
|
|
14997
15329
|
output: 7.5,
|
|
@@ -15171,6 +15503,23 @@ export const MODELS = {
|
|
|
15171
15503
|
contextWindow: 262144,
|
|
15172
15504
|
maxTokens: 32768,
|
|
15173
15505
|
},
|
|
15506
|
+
"nvidia/nemotron-3-nano-30b-a3b": {
|
|
15507
|
+
id: "nvidia/nemotron-3-nano-30b-a3b",
|
|
15508
|
+
name: "Nemotron 3 Nano 30B A3B",
|
|
15509
|
+
api: "anthropic-messages",
|
|
15510
|
+
provider: "vercel-ai-gateway",
|
|
15511
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15512
|
+
reasoning: true,
|
|
15513
|
+
input: ["text"],
|
|
15514
|
+
cost: {
|
|
15515
|
+
input: 0.049999999999999996,
|
|
15516
|
+
output: 0.24,
|
|
15517
|
+
cacheRead: 0,
|
|
15518
|
+
cacheWrite: 0,
|
|
15519
|
+
},
|
|
15520
|
+
contextWindow: 262144,
|
|
15521
|
+
maxTokens: 262144,
|
|
15522
|
+
},
|
|
15174
15523
|
"nvidia/nemotron-3-super-120b-a12b": {
|
|
15175
15524
|
id: "nvidia/nemotron-3-super-120b-a12b",
|
|
15176
15525
|
name: "NVIDIA Nemotron 3 Super 120B A12B",
|
|
@@ -15239,6 +15588,23 @@ export const MODELS = {
|
|
|
15239
15588
|
contextWindow: 131072,
|
|
15240
15589
|
maxTokens: 131072,
|
|
15241
15590
|
},
|
|
15591
|
+
"openai/gpt-3.5-turbo": {
|
|
15592
|
+
id: "openai/gpt-3.5-turbo",
|
|
15593
|
+
name: "GPT-3.5 Turbo",
|
|
15594
|
+
api: "anthropic-messages",
|
|
15595
|
+
provider: "vercel-ai-gateway",
|
|
15596
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15597
|
+
reasoning: false,
|
|
15598
|
+
input: ["text"],
|
|
15599
|
+
cost: {
|
|
15600
|
+
input: 0.5,
|
|
15601
|
+
output: 1.5,
|
|
15602
|
+
cacheRead: 0,
|
|
15603
|
+
cacheWrite: 0,
|
|
15604
|
+
},
|
|
15605
|
+
contextWindow: 16385,
|
|
15606
|
+
maxTokens: 4096,
|
|
15607
|
+
},
|
|
15242
15608
|
"openai/gpt-4-turbo": {
|
|
15243
15609
|
id: "openai/gpt-4-turbo",
|
|
15244
15610
|
name: "GPT-4 Turbo",
|
|
@@ -15364,7 +15730,7 @@ export const MODELS = {
|
|
|
15364
15730
|
api: "anthropic-messages",
|
|
15365
15731
|
provider: "vercel-ai-gateway",
|
|
15366
15732
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15367
|
-
reasoning:
|
|
15733
|
+
reasoning: false,
|
|
15368
15734
|
input: ["text", "image"],
|
|
15369
15735
|
cost: {
|
|
15370
15736
|
input: 1.25,
|
|
@@ -15500,7 +15866,7 @@ export const MODELS = {
|
|
|
15500
15866
|
api: "anthropic-messages",
|
|
15501
15867
|
provider: "vercel-ai-gateway",
|
|
15502
15868
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15503
|
-
reasoning:
|
|
15869
|
+
reasoning: false,
|
|
15504
15870
|
input: ["text", "image"],
|
|
15505
15871
|
cost: {
|
|
15506
15872
|
input: 1.25,
|
|
@@ -15552,7 +15918,7 @@ export const MODELS = {
|
|
|
15552
15918
|
api: "anthropic-messages",
|
|
15553
15919
|
provider: "vercel-ai-gateway",
|
|
15554
15920
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15555
|
-
reasoning:
|
|
15921
|
+
reasoning: false,
|
|
15556
15922
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
15557
15923
|
input: ["text", "image"],
|
|
15558
15924
|
cost: {
|
|
@@ -15606,7 +15972,7 @@ export const MODELS = {
|
|
|
15606
15972
|
api: "anthropic-messages",
|
|
15607
15973
|
provider: "vercel-ai-gateway",
|
|
15608
15974
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15609
|
-
reasoning:
|
|
15975
|
+
reasoning: false,
|
|
15610
15976
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
15611
15977
|
input: ["text", "image"],
|
|
15612
15978
|
cost: {
|
|
@@ -15897,40 +16263,6 @@ export const MODELS = {
|
|
|
15897
16263
|
contextWindow: 200000,
|
|
15898
16264
|
maxTokens: 100000,
|
|
15899
16265
|
},
|
|
15900
|
-
"perplexity/sonar": {
|
|
15901
|
-
id: "perplexity/sonar",
|
|
15902
|
-
name: "Sonar",
|
|
15903
|
-
api: "anthropic-messages",
|
|
15904
|
-
provider: "vercel-ai-gateway",
|
|
15905
|
-
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15906
|
-
reasoning: false,
|
|
15907
|
-
input: ["text", "image"],
|
|
15908
|
-
cost: {
|
|
15909
|
-
input: 0,
|
|
15910
|
-
output: 0,
|
|
15911
|
-
cacheRead: 0,
|
|
15912
|
-
cacheWrite: 0,
|
|
15913
|
-
},
|
|
15914
|
-
contextWindow: 127000,
|
|
15915
|
-
maxTokens: 8000,
|
|
15916
|
-
},
|
|
15917
|
-
"perplexity/sonar-pro": {
|
|
15918
|
-
id: "perplexity/sonar-pro",
|
|
15919
|
-
name: "Sonar Pro",
|
|
15920
|
-
api: "anthropic-messages",
|
|
15921
|
-
provider: "vercel-ai-gateway",
|
|
15922
|
-
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15923
|
-
reasoning: false,
|
|
15924
|
-
input: ["text", "image"],
|
|
15925
|
-
cost: {
|
|
15926
|
-
input: 0,
|
|
15927
|
-
output: 0,
|
|
15928
|
-
cacheRead: 0,
|
|
15929
|
-
cacheWrite: 0,
|
|
15930
|
-
},
|
|
15931
|
-
contextWindow: 200000,
|
|
15932
|
-
maxTokens: 8000,
|
|
15933
|
-
},
|
|
15934
16266
|
"sakana/fugu-ultra": {
|
|
15935
16267
|
id: "sakana/fugu-ultra",
|
|
15936
16268
|
name: "Fugu Ultra",
|
|
@@ -16210,7 +16542,7 @@ export const MODELS = {
|
|
|
16210
16542
|
provider: "vercel-ai-gateway",
|
|
16211
16543
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
16212
16544
|
reasoning: true,
|
|
16213
|
-
input: ["text"
|
|
16545
|
+
input: ["text"],
|
|
16214
16546
|
cost: {
|
|
16215
16547
|
input: 0.435,
|
|
16216
16548
|
output: 0.87,
|
|
@@ -16414,7 +16746,7 @@ export const MODELS = {
|
|
|
16414
16746
|
provider: "vercel-ai-gateway",
|
|
16415
16747
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
16416
16748
|
reasoning: true,
|
|
16417
|
-
input: ["text"
|
|
16749
|
+
input: ["text"],
|
|
16418
16750
|
cost: {
|
|
16419
16751
|
input: 1.4,
|
|
16420
16752
|
output: 4.4,
|
|
@@ -16441,6 +16773,23 @@ export const MODELS = {
|
|
|
16441
16773
|
contextWindow: 1000000,
|
|
16442
16774
|
maxTokens: 128000,
|
|
16443
16775
|
},
|
|
16776
|
+
"zai/glm-5.2-fast": {
|
|
16777
|
+
id: "zai/glm-5.2-fast",
|
|
16778
|
+
name: "GLM 5.2 Fast",
|
|
16779
|
+
api: "anthropic-messages",
|
|
16780
|
+
provider: "vercel-ai-gateway",
|
|
16781
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
16782
|
+
reasoning: true,
|
|
16783
|
+
input: ["text"],
|
|
16784
|
+
cost: {
|
|
16785
|
+
input: 3,
|
|
16786
|
+
output: 10.25,
|
|
16787
|
+
cacheRead: 0.5,
|
|
16788
|
+
cacheWrite: 0,
|
|
16789
|
+
},
|
|
16790
|
+
contextWindow: 1000000,
|
|
16791
|
+
maxTokens: 128000,
|
|
16792
|
+
},
|
|
16444
16793
|
"zai/glm-5v-turbo": {
|
|
16445
16794
|
id: "zai/glm-5v-turbo",
|
|
16446
16795
|
name: "GLM 5V Turbo",
|