@caupulican/pi-ai 0.78.2 → 0.78.4
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/dist/models.generated.d.ts +220 -33
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +232 -60
- package/dist/models.generated.js.map +1 -1
- package/dist/providers/amazon-bedrock.d.ts.map +1 -1
- package/dist/providers/amazon-bedrock.js +10 -3
- package/dist/providers/amazon-bedrock.js.map +1 -1
- package/dist/providers/anthropic.d.ts.map +1 -1
- package/dist/providers/anthropic.js +31 -4
- package/dist/providers/anthropic.js.map +1 -1
- package/dist/providers/openai-completions.d.ts.map +1 -1
- package/dist/providers/openai-completions.js +33 -12
- package/dist/providers/openai-completions.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +2 -2
package/dist/models.generated.js
CHANGED
|
@@ -391,8 +391,8 @@ export const MODELS = {
|
|
|
391
391
|
thinkingLevelMap: { "xhigh": "max" },
|
|
392
392
|
input: ["text", "image"],
|
|
393
393
|
cost: {
|
|
394
|
-
input: 5,
|
|
395
|
-
output:
|
|
394
|
+
input: 5.5,
|
|
395
|
+
output: 27.5,
|
|
396
396
|
cacheRead: 0.5,
|
|
397
397
|
cacheWrite: 6.25,
|
|
398
398
|
},
|
|
@@ -409,10 +409,10 @@ export const MODELS = {
|
|
|
409
409
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
410
410
|
input: ["text", "image"],
|
|
411
411
|
cost: {
|
|
412
|
-
input: 5,
|
|
413
|
-
output:
|
|
414
|
-
cacheRead: 0.
|
|
415
|
-
cacheWrite: 6.
|
|
412
|
+
input: 5.5,
|
|
413
|
+
output: 27.5,
|
|
414
|
+
cacheRead: 0.55,
|
|
415
|
+
cacheWrite: 6.875,
|
|
416
416
|
},
|
|
417
417
|
contextWindow: 1000000,
|
|
418
418
|
maxTokens: 128000,
|
|
@@ -427,10 +427,10 @@ export const MODELS = {
|
|
|
427
427
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
428
428
|
input: ["text", "image"],
|
|
429
429
|
cost: {
|
|
430
|
-
input: 5,
|
|
431
|
-
output:
|
|
432
|
-
cacheRead: 0.
|
|
433
|
-
cacheWrite: 6.
|
|
430
|
+
input: 5.5,
|
|
431
|
+
output: 27.5,
|
|
432
|
+
cacheRead: 0.55,
|
|
433
|
+
cacheWrite: 6.875,
|
|
434
434
|
},
|
|
435
435
|
contextWindow: 1000000,
|
|
436
436
|
maxTokens: 128000,
|
|
@@ -444,10 +444,10 @@ export const MODELS = {
|
|
|
444
444
|
reasoning: true,
|
|
445
445
|
input: ["text", "image"],
|
|
446
446
|
cost: {
|
|
447
|
-
input: 3,
|
|
448
|
-
output:
|
|
449
|
-
cacheRead: 0.
|
|
450
|
-
cacheWrite:
|
|
447
|
+
input: 3.3,
|
|
448
|
+
output: 16.5,
|
|
449
|
+
cacheRead: 0.33,
|
|
450
|
+
cacheWrite: 4.125,
|
|
451
451
|
},
|
|
452
452
|
contextWindow: 200000,
|
|
453
453
|
maxTokens: 64000,
|
|
@@ -461,10 +461,10 @@ export const MODELS = {
|
|
|
461
461
|
reasoning: true,
|
|
462
462
|
input: ["text", "image"],
|
|
463
463
|
cost: {
|
|
464
|
-
input: 3,
|
|
465
|
-
output:
|
|
466
|
-
cacheRead: 0.
|
|
467
|
-
cacheWrite:
|
|
464
|
+
input: 3.3,
|
|
465
|
+
output: 16.5,
|
|
466
|
+
cacheRead: 0.33,
|
|
467
|
+
cacheWrite: 4.125,
|
|
468
468
|
},
|
|
469
469
|
contextWindow: 1000000,
|
|
470
470
|
maxTokens: 64000,
|
|
@@ -1847,7 +1847,7 @@ export const MODELS = {
|
|
|
1847
1847
|
api: "anthropic-messages",
|
|
1848
1848
|
provider: "anthropic",
|
|
1849
1849
|
baseUrl: "https://api.anthropic.com",
|
|
1850
|
-
compat: { "forceAdaptiveThinking": true },
|
|
1850
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
1851
1851
|
reasoning: true,
|
|
1852
1852
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1853
1853
|
input: ["text", "image"],
|
|
@@ -1866,7 +1866,7 @@ export const MODELS = {
|
|
|
1866
1866
|
api: "anthropic-messages",
|
|
1867
1867
|
provider: "anthropic",
|
|
1868
1868
|
baseUrl: "https://api.anthropic.com",
|
|
1869
|
-
compat: { "forceAdaptiveThinking": true },
|
|
1869
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
1870
1870
|
reasoning: true,
|
|
1871
1871
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
1872
1872
|
input: ["text", "image"],
|
|
@@ -2955,7 +2955,7 @@ export const MODELS = {
|
|
|
2955
2955
|
api: "anthropic-messages",
|
|
2956
2956
|
provider: "cloudflare-ai-gateway",
|
|
2957
2957
|
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
2958
|
-
compat: { "forceAdaptiveThinking": true },
|
|
2958
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
2959
2959
|
reasoning: true,
|
|
2960
2960
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2961
2961
|
input: ["text", "image"],
|
|
@@ -2974,7 +2974,7 @@ export const MODELS = {
|
|
|
2974
2974
|
api: "anthropic-messages",
|
|
2975
2975
|
provider: "cloudflare-ai-gateway",
|
|
2976
2976
|
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
2977
|
-
compat: { "forceAdaptiveThinking": true },
|
|
2977
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
2978
2978
|
reasoning: true,
|
|
2979
2979
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
2980
2980
|
input: ["text", "image"],
|
|
@@ -3482,24 +3482,6 @@ export const MODELS = {
|
|
|
3482
3482
|
contextWindow: 128000,
|
|
3483
3483
|
maxTokens: 128000,
|
|
3484
3484
|
},
|
|
3485
|
-
"@cf/moonshotai/kimi-k2.5": {
|
|
3486
|
-
id: "@cf/moonshotai/kimi-k2.5",
|
|
3487
|
-
name: "Kimi K2.5",
|
|
3488
|
-
api: "openai-completions",
|
|
3489
|
-
provider: "cloudflare-workers-ai",
|
|
3490
|
-
baseUrl: "https://api.cloudflare.com/client/v4/accounts/{CLOUDFLARE_ACCOUNT_ID}/ai/v1",
|
|
3491
|
-
compat: { "sendSessionAffinityHeaders": true },
|
|
3492
|
-
reasoning: true,
|
|
3493
|
-
input: ["text", "image"],
|
|
3494
|
-
cost: {
|
|
3495
|
-
input: 0.6,
|
|
3496
|
-
output: 3,
|
|
3497
|
-
cacheRead: 0.1,
|
|
3498
|
-
cacheWrite: 0,
|
|
3499
|
-
},
|
|
3500
|
-
contextWindow: 256000,
|
|
3501
|
-
maxTokens: 256000,
|
|
3502
|
-
},
|
|
3503
3485
|
"@cf/moonshotai/kimi-k2.6": {
|
|
3504
3486
|
id: "@cf/moonshotai/kimi-k2.6",
|
|
3505
3487
|
name: "Kimi K2.6",
|
|
@@ -3932,7 +3914,7 @@ export const MODELS = {
|
|
|
3932
3914
|
provider: "github-copilot",
|
|
3933
3915
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3934
3916
|
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
3935
|
-
compat: { "forceAdaptiveThinking": true },
|
|
3917
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
3936
3918
|
reasoning: true,
|
|
3937
3919
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3938
3920
|
input: ["text", "image"],
|
|
@@ -3952,7 +3934,7 @@ export const MODELS = {
|
|
|
3952
3934
|
provider: "github-copilot",
|
|
3953
3935
|
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3954
3936
|
headers: { "User-Agent": "GitHubCopilotChat/0.35.0", "Editor-Version": "vscode/1.107.0", "Editor-Plugin-Version": "copilot-chat/0.35.0", "Copilot-Integration-Id": "vscode-chat" },
|
|
3955
|
-
compat: { "forceAdaptiveThinking": true },
|
|
3937
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
3956
3938
|
reasoning: true,
|
|
3957
3939
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
3958
3940
|
input: ["text", "image"],
|
|
@@ -5525,6 +5507,26 @@ export const MODELS = {
|
|
|
5525
5507
|
maxTokens: 32768,
|
|
5526
5508
|
},
|
|
5527
5509
|
},
|
|
5510
|
+
"llama-cpp": {
|
|
5511
|
+
"local": {
|
|
5512
|
+
id: "local",
|
|
5513
|
+
name: "llama.cpp local server",
|
|
5514
|
+
api: "openai-completions",
|
|
5515
|
+
provider: "llama-cpp",
|
|
5516
|
+
baseUrl: "http://127.0.0.1:8080/v1",
|
|
5517
|
+
compat: { "supportsDeveloperRole": false, "supportsStore": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false },
|
|
5518
|
+
reasoning: false,
|
|
5519
|
+
input: ["text"],
|
|
5520
|
+
cost: {
|
|
5521
|
+
input: 0,
|
|
5522
|
+
output: 0,
|
|
5523
|
+
cacheRead: 0,
|
|
5524
|
+
cacheWrite: 0,
|
|
5525
|
+
},
|
|
5526
|
+
contextWindow: 32768,
|
|
5527
|
+
maxTokens: 4096,
|
|
5528
|
+
},
|
|
5529
|
+
},
|
|
5528
5530
|
"minimax": {
|
|
5529
5531
|
"MiniMax-M2.7": {
|
|
5530
5532
|
id: "MiniMax-M2.7",
|
|
@@ -6905,7 +6907,7 @@ export const MODELS = {
|
|
|
6905
6907
|
provider: "openai",
|
|
6906
6908
|
baseUrl: "https://api.openai.com/v1",
|
|
6907
6909
|
reasoning: true,
|
|
6908
|
-
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
6910
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh", "minimal": null },
|
|
6909
6911
|
input: ["text", "image"],
|
|
6910
6912
|
cost: {
|
|
6911
6913
|
input: 5,
|
|
@@ -7275,7 +7277,7 @@ export const MODELS = {
|
|
|
7275
7277
|
api: "anthropic-messages",
|
|
7276
7278
|
provider: "opencode",
|
|
7277
7279
|
baseUrl: "https://opencode.ai/zen",
|
|
7278
|
-
compat: { "forceAdaptiveThinking": true },
|
|
7280
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
7279
7281
|
reasoning: true,
|
|
7280
7282
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
7281
7283
|
input: ["text", "image"],
|
|
@@ -7294,7 +7296,7 @@ export const MODELS = {
|
|
|
7294
7296
|
api: "anthropic-messages",
|
|
7295
7297
|
provider: "opencode",
|
|
7296
7298
|
baseUrl: "https://opencode.ai/zen",
|
|
7297
|
-
compat: { "forceAdaptiveThinking": true },
|
|
7299
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
7298
7300
|
reasoning: true,
|
|
7299
7301
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
7300
7302
|
input: ["text", "image"],
|
|
@@ -7878,6 +7880,23 @@ export const MODELS = {
|
|
|
7878
7880
|
contextWindow: 204800,
|
|
7879
7881
|
maxTokens: 131072,
|
|
7880
7882
|
},
|
|
7883
|
+
"minimax-m3-free": {
|
|
7884
|
+
id: "minimax-m3-free",
|
|
7885
|
+
name: "MiniMax M3 Free",
|
|
7886
|
+
api: "anthropic-messages",
|
|
7887
|
+
provider: "opencode",
|
|
7888
|
+
baseUrl: "https://opencode.ai/zen",
|
|
7889
|
+
reasoning: true,
|
|
7890
|
+
input: ["text", "image"],
|
|
7891
|
+
cost: {
|
|
7892
|
+
input: 0,
|
|
7893
|
+
output: 0,
|
|
7894
|
+
cacheRead: 0,
|
|
7895
|
+
cacheWrite: 0,
|
|
7896
|
+
},
|
|
7897
|
+
contextWindow: 200000,
|
|
7898
|
+
maxTokens: 32000,
|
|
7899
|
+
},
|
|
7881
7900
|
"nemotron-3-super-free": {
|
|
7882
7901
|
id: "nemotron-3-super-free",
|
|
7883
7902
|
name: "Nemotron 3 Super Free",
|
|
@@ -8107,6 +8126,23 @@ export const MODELS = {
|
|
|
8107
8126
|
contextWindow: 204800,
|
|
8108
8127
|
maxTokens: 131072,
|
|
8109
8128
|
},
|
|
8129
|
+
"minimax-m3": {
|
|
8130
|
+
id: "minimax-m3",
|
|
8131
|
+
name: "MiniMax M3",
|
|
8132
|
+
api: "anthropic-messages",
|
|
8133
|
+
provider: "opencode-go",
|
|
8134
|
+
baseUrl: "https://opencode.ai/zen/go",
|
|
8135
|
+
reasoning: true,
|
|
8136
|
+
input: ["text", "image"],
|
|
8137
|
+
cost: {
|
|
8138
|
+
input: 0.6,
|
|
8139
|
+
output: 2.4,
|
|
8140
|
+
cacheRead: 0.12,
|
|
8141
|
+
cacheWrite: 0,
|
|
8142
|
+
},
|
|
8143
|
+
contextWindow: 512000,
|
|
8144
|
+
maxTokens: 131072,
|
|
8145
|
+
},
|
|
8110
8146
|
"qwen3.6-plus": {
|
|
8111
8147
|
id: "qwen3.6-plus",
|
|
8112
8148
|
name: "Qwen3.6 Plus",
|
|
@@ -9515,6 +9551,23 @@ export const MODELS = {
|
|
|
9515
9551
|
contextWindow: 204800,
|
|
9516
9552
|
maxTokens: 4096,
|
|
9517
9553
|
},
|
|
9554
|
+
"minimax/minimax-m3": {
|
|
9555
|
+
id: "minimax/minimax-m3",
|
|
9556
|
+
name: "MiniMax: MiniMax M3",
|
|
9557
|
+
api: "openai-completions",
|
|
9558
|
+
provider: "openrouter",
|
|
9559
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
9560
|
+
reasoning: true,
|
|
9561
|
+
input: ["text", "image"],
|
|
9562
|
+
cost: {
|
|
9563
|
+
input: 0.3,
|
|
9564
|
+
output: 1.2,
|
|
9565
|
+
cacheRead: 0.06,
|
|
9566
|
+
cacheWrite: 0,
|
|
9567
|
+
},
|
|
9568
|
+
contextWindow: 1048576,
|
|
9569
|
+
maxTokens: 512000,
|
|
9570
|
+
},
|
|
9518
9571
|
"mistralai/codestral-2508": {
|
|
9519
9572
|
id: "mistralai/codestral-2508",
|
|
9520
9573
|
name: "Mistral: Codestral 2508",
|
|
@@ -12904,7 +12957,7 @@ export const MODELS = {
|
|
|
12904
12957
|
api: "anthropic-messages",
|
|
12905
12958
|
provider: "vercel-ai-gateway",
|
|
12906
12959
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12907
|
-
reasoning:
|
|
12960
|
+
reasoning: true,
|
|
12908
12961
|
input: ["text"],
|
|
12909
12962
|
cost: {
|
|
12910
12963
|
input: 0.22,
|
|
@@ -12989,7 +13042,7 @@ export const MODELS = {
|
|
|
12989
13042
|
api: "anthropic-messages",
|
|
12990
13043
|
provider: "vercel-ai-gateway",
|
|
12991
13044
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12992
|
-
reasoning:
|
|
13045
|
+
reasoning: true,
|
|
12993
13046
|
input: ["text"],
|
|
12994
13047
|
cost: {
|
|
12995
13048
|
input: 1.5,
|
|
@@ -13023,7 +13076,7 @@ export const MODELS = {
|
|
|
13023
13076
|
api: "anthropic-messages",
|
|
13024
13077
|
provider: "vercel-ai-gateway",
|
|
13025
13078
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13026
|
-
reasoning:
|
|
13079
|
+
reasoning: true,
|
|
13027
13080
|
input: ["text"],
|
|
13028
13081
|
cost: {
|
|
13029
13082
|
input: 0.5,
|
|
@@ -13102,6 +13155,40 @@ export const MODELS = {
|
|
|
13102
13155
|
contextWindow: 256000,
|
|
13103
13156
|
maxTokens: 65536,
|
|
13104
13157
|
},
|
|
13158
|
+
"alibaba/qwen3-next-80b-a3b-instruct": {
|
|
13159
|
+
id: "alibaba/qwen3-next-80b-a3b-instruct",
|
|
13160
|
+
name: "Qwen3 Next 80B A3B Instruct",
|
|
13161
|
+
api: "anthropic-messages",
|
|
13162
|
+
provider: "vercel-ai-gateway",
|
|
13163
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13164
|
+
reasoning: false,
|
|
13165
|
+
input: ["text"],
|
|
13166
|
+
cost: {
|
|
13167
|
+
input: 0.15,
|
|
13168
|
+
output: 1.2,
|
|
13169
|
+
cacheRead: 0,
|
|
13170
|
+
cacheWrite: 0,
|
|
13171
|
+
},
|
|
13172
|
+
contextWindow: 131072,
|
|
13173
|
+
maxTokens: 32768,
|
|
13174
|
+
},
|
|
13175
|
+
"alibaba/qwen3-next-80b-a3b-thinking": {
|
|
13176
|
+
id: "alibaba/qwen3-next-80b-a3b-thinking",
|
|
13177
|
+
name: "Qwen3 Next 80B A3B Thinking",
|
|
13178
|
+
api: "anthropic-messages",
|
|
13179
|
+
provider: "vercel-ai-gateway",
|
|
13180
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13181
|
+
reasoning: true,
|
|
13182
|
+
input: ["text"],
|
|
13183
|
+
cost: {
|
|
13184
|
+
input: 0.15,
|
|
13185
|
+
output: 1.2,
|
|
13186
|
+
cacheRead: 0,
|
|
13187
|
+
cacheWrite: 0,
|
|
13188
|
+
},
|
|
13189
|
+
contextWindow: 131072,
|
|
13190
|
+
maxTokens: 32768,
|
|
13191
|
+
},
|
|
13105
13192
|
"alibaba/qwen3-vl-thinking": {
|
|
13106
13193
|
id: "alibaba/qwen3-vl-thinking",
|
|
13107
13194
|
name: "Qwen3 VL 235B A22B Thinking",
|
|
@@ -13331,7 +13418,7 @@ export const MODELS = {
|
|
|
13331
13418
|
api: "anthropic-messages",
|
|
13332
13419
|
provider: "vercel-ai-gateway",
|
|
13333
13420
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13334
|
-
compat: { "forceAdaptiveThinking": true },
|
|
13421
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
13335
13422
|
reasoning: true,
|
|
13336
13423
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
13337
13424
|
input: ["text", "image"],
|
|
@@ -13350,7 +13437,7 @@ export const MODELS = {
|
|
|
13350
13437
|
api: "anthropic-messages",
|
|
13351
13438
|
provider: "vercel-ai-gateway",
|
|
13352
13439
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13353
|
-
compat: { "forceAdaptiveThinking": true },
|
|
13440
|
+
compat: { "forceAdaptiveThinking": true, "supportsTemperature": false },
|
|
13354
13441
|
reasoning: true,
|
|
13355
13442
|
thinkingLevelMap: { "xhigh": "xhigh" },
|
|
13356
13443
|
input: ["text", "image"],
|
|
@@ -13557,8 +13644,8 @@ export const MODELS = {
|
|
|
13557
13644
|
api: "anthropic-messages",
|
|
13558
13645
|
provider: "vercel-ai-gateway",
|
|
13559
13646
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13560
|
-
reasoning:
|
|
13561
|
-
input: ["text"],
|
|
13647
|
+
reasoning: true,
|
|
13648
|
+
input: ["text", "image"],
|
|
13562
13649
|
cost: {
|
|
13563
13650
|
input: 0.28,
|
|
13564
13651
|
output: 0.42,
|
|
@@ -13574,8 +13661,8 @@ export const MODELS = {
|
|
|
13574
13661
|
api: "anthropic-messages",
|
|
13575
13662
|
provider: "vercel-ai-gateway",
|
|
13576
13663
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13577
|
-
reasoning:
|
|
13578
|
-
input: ["text"],
|
|
13664
|
+
reasoning: true,
|
|
13665
|
+
input: ["text", "image"],
|
|
13579
13666
|
cost: {
|
|
13580
13667
|
input: 0.62,
|
|
13581
13668
|
output: 1.85,
|
|
@@ -13592,7 +13679,7 @@ export const MODELS = {
|
|
|
13592
13679
|
provider: "vercel-ai-gateway",
|
|
13593
13680
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13594
13681
|
reasoning: true,
|
|
13595
|
-
input: ["text"],
|
|
13682
|
+
input: ["text", "image"],
|
|
13596
13683
|
cost: {
|
|
13597
13684
|
input: 0.14,
|
|
13598
13685
|
output: 0.28,
|
|
@@ -13609,7 +13696,7 @@ export const MODELS = {
|
|
|
13609
13696
|
provider: "vercel-ai-gateway",
|
|
13610
13697
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13611
13698
|
reasoning: true,
|
|
13612
|
-
input: ["text"],
|
|
13699
|
+
input: ["text", "image"],
|
|
13613
13700
|
cost: {
|
|
13614
13701
|
input: 0.435,
|
|
13615
13702
|
output: 0.87,
|
|
@@ -14102,7 +14189,7 @@ export const MODELS = {
|
|
|
14102
14189
|
provider: "vercel-ai-gateway",
|
|
14103
14190
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14104
14191
|
reasoning: true,
|
|
14105
|
-
input: ["text"],
|
|
14192
|
+
input: ["text", "image"],
|
|
14106
14193
|
cost: {
|
|
14107
14194
|
input: 0.6,
|
|
14108
14195
|
output: 2.4,
|
|
@@ -14146,6 +14233,23 @@ export const MODELS = {
|
|
|
14146
14233
|
contextWindow: 204800,
|
|
14147
14234
|
maxTokens: 131100,
|
|
14148
14235
|
},
|
|
14236
|
+
"minimax/minimax-m3": {
|
|
14237
|
+
id: "minimax/minimax-m3",
|
|
14238
|
+
name: "MiniMax M3",
|
|
14239
|
+
api: "anthropic-messages",
|
|
14240
|
+
provider: "vercel-ai-gateway",
|
|
14241
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14242
|
+
reasoning: true,
|
|
14243
|
+
input: ["text", "image"],
|
|
14244
|
+
cost: {
|
|
14245
|
+
input: 0.3,
|
|
14246
|
+
output: 1.2,
|
|
14247
|
+
cacheRead: 0.06,
|
|
14248
|
+
cacheWrite: 0,
|
|
14249
|
+
},
|
|
14250
|
+
contextWindow: 1000000,
|
|
14251
|
+
maxTokens: 1000000,
|
|
14252
|
+
},
|
|
14149
14253
|
"mistral/codestral": {
|
|
14150
14254
|
id: "mistral/codestral",
|
|
14151
14255
|
name: "Mistral Codestral",
|
|
@@ -14282,6 +14386,23 @@ export const MODELS = {
|
|
|
14282
14386
|
contextWindow: 256000,
|
|
14283
14387
|
maxTokens: 256000,
|
|
14284
14388
|
},
|
|
14389
|
+
"mistral/mistral-nemo": {
|
|
14390
|
+
id: "mistral/mistral-nemo",
|
|
14391
|
+
name: "Mistral Nemo 12B",
|
|
14392
|
+
api: "anthropic-messages",
|
|
14393
|
+
provider: "vercel-ai-gateway",
|
|
14394
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14395
|
+
reasoning: false,
|
|
14396
|
+
input: ["text"],
|
|
14397
|
+
cost: {
|
|
14398
|
+
input: 0.02,
|
|
14399
|
+
output: 0.04,
|
|
14400
|
+
cacheRead: 0,
|
|
14401
|
+
cacheWrite: 0,
|
|
14402
|
+
},
|
|
14403
|
+
contextWindow: 131072,
|
|
14404
|
+
maxTokens: 131072,
|
|
14405
|
+
},
|
|
14285
14406
|
"mistral/mistral-small": {
|
|
14286
14407
|
id: "mistral/mistral-small",
|
|
14287
14408
|
name: "Mistral Small",
|
|
@@ -14435,6 +14556,23 @@ export const MODELS = {
|
|
|
14435
14556
|
contextWindow: 262000,
|
|
14436
14557
|
maxTokens: 262000,
|
|
14437
14558
|
},
|
|
14559
|
+
"nvidia/nemotron-3-super-120b-a12b": {
|
|
14560
|
+
id: "nvidia/nemotron-3-super-120b-a12b",
|
|
14561
|
+
name: "NVIDIA Nemotron 3 Super 120B A12B",
|
|
14562
|
+
api: "anthropic-messages",
|
|
14563
|
+
provider: "vercel-ai-gateway",
|
|
14564
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14565
|
+
reasoning: true,
|
|
14566
|
+
input: ["text"],
|
|
14567
|
+
cost: {
|
|
14568
|
+
input: 0.15,
|
|
14569
|
+
output: 0.65,
|
|
14570
|
+
cacheRead: 0,
|
|
14571
|
+
cacheWrite: 0,
|
|
14572
|
+
},
|
|
14573
|
+
contextWindow: 256000,
|
|
14574
|
+
maxTokens: 32000,
|
|
14575
|
+
},
|
|
14438
14576
|
"nvidia/nemotron-nano-12b-v2-vl": {
|
|
14439
14577
|
id: "nvidia/nemotron-nano-12b-v2-vl",
|
|
14440
14578
|
name: "Nvidia Nemotron Nano 12B V2 VL",
|
|
@@ -14612,7 +14750,7 @@ export const MODELS = {
|
|
|
14612
14750
|
provider: "vercel-ai-gateway",
|
|
14613
14751
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14614
14752
|
reasoning: true,
|
|
14615
|
-
input: ["text"],
|
|
14753
|
+
input: ["text", "image"],
|
|
14616
14754
|
cost: {
|
|
14617
14755
|
input: 1.25,
|
|
14618
14756
|
output: 10,
|
|
@@ -14974,6 +15112,23 @@ export const MODELS = {
|
|
|
14974
15112
|
contextWindow: 1000000,
|
|
14975
15113
|
maxTokens: 128000,
|
|
14976
15114
|
},
|
|
15115
|
+
"openai/gpt-oss-120b": {
|
|
15116
|
+
id: "openai/gpt-oss-120b",
|
|
15117
|
+
name: "GPT OSS 120B",
|
|
15118
|
+
api: "anthropic-messages",
|
|
15119
|
+
provider: "vercel-ai-gateway",
|
|
15120
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15121
|
+
reasoning: true,
|
|
15122
|
+
input: ["text"],
|
|
15123
|
+
cost: {
|
|
15124
|
+
input: 0.35,
|
|
15125
|
+
output: 0.75,
|
|
15126
|
+
cacheRead: 0.25,
|
|
15127
|
+
cacheWrite: 0,
|
|
15128
|
+
},
|
|
15129
|
+
contextWindow: 131072,
|
|
15130
|
+
maxTokens: 131000,
|
|
15131
|
+
},
|
|
14977
15132
|
"openai/gpt-oss-20b": {
|
|
14978
15133
|
id: "openai/gpt-oss-20b",
|
|
14979
15134
|
name: "GPT OSS 20B",
|
|
@@ -15144,6 +15299,23 @@ export const MODELS = {
|
|
|
15144
15299
|
contextWindow: 200000,
|
|
15145
15300
|
maxTokens: 8000,
|
|
15146
15301
|
},
|
|
15302
|
+
"stepfun/step-3.5-flash": {
|
|
15303
|
+
id: "stepfun/step-3.5-flash",
|
|
15304
|
+
name: "StepFun 3.5 Flash",
|
|
15305
|
+
api: "anthropic-messages",
|
|
15306
|
+
provider: "vercel-ai-gateway",
|
|
15307
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15308
|
+
reasoning: true,
|
|
15309
|
+
input: ["text"],
|
|
15310
|
+
cost: {
|
|
15311
|
+
input: 0.09,
|
|
15312
|
+
output: 0.3,
|
|
15313
|
+
cacheRead: 0,
|
|
15314
|
+
cacheWrite: 0.02,
|
|
15315
|
+
},
|
|
15316
|
+
contextWindow: 262114,
|
|
15317
|
+
maxTokens: 262114,
|
|
15318
|
+
},
|
|
15147
15319
|
"stepfun/step-3.7-flash": {
|
|
15148
15320
|
id: "stepfun/step-3.7-flash",
|
|
15149
15321
|
name: "Step 3.7 Flash",
|
|
@@ -15439,7 +15611,7 @@ export const MODELS = {
|
|
|
15439
15611
|
api: "anthropic-messages",
|
|
15440
15612
|
provider: "vercel-ai-gateway",
|
|
15441
15613
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15442
|
-
reasoning:
|
|
15614
|
+
reasoning: true,
|
|
15443
15615
|
input: ["text", "image"],
|
|
15444
15616
|
cost: {
|
|
15445
15617
|
input: 0.6,
|
|
@@ -15593,7 +15765,7 @@ export const MODELS = {
|
|
|
15593
15765
|
provider: "vercel-ai-gateway",
|
|
15594
15766
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
15595
15767
|
reasoning: true,
|
|
15596
|
-
input: ["text"],
|
|
15768
|
+
input: ["text", "image"],
|
|
15597
15769
|
cost: {
|
|
15598
15770
|
input: 1.4,
|
|
15599
15771
|
output: 4.4,
|