@elyracode/ai 0.8.3 → 0.9.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.
- package/dist/models.generated.d.ts +247 -153
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +224 -211
- package/dist/models.generated.js.map +1 -1
- package/dist/providers/anthropic.d.ts +7 -6
- package/dist/providers/anthropic.d.ts.map +1 -1
- package/dist/providers/anthropic.js +6 -5
- package/dist/providers/anthropic.js.map +1 -1
- package/package.json +1 -1
package/dist/models.generated.js
CHANGED
|
@@ -164,6 +164,7 @@ export const MODELS = {
|
|
|
164
164
|
provider: "amazon-bedrock",
|
|
165
165
|
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
166
166
|
reasoning: true,
|
|
167
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
167
168
|
input: ["text", "image"],
|
|
168
169
|
cost: {
|
|
169
170
|
input: 5,
|
|
@@ -243,6 +244,24 @@ export const MODELS = {
|
|
|
243
244
|
contextWindow: 1000000,
|
|
244
245
|
maxTokens: 128000,
|
|
245
246
|
},
|
|
247
|
+
"au.anthropic.claude-opus-4-8": {
|
|
248
|
+
id: "au.anthropic.claude-opus-4-8",
|
|
249
|
+
name: "Claude Opus 4.8 (AU)",
|
|
250
|
+
api: "bedrock-converse-stream",
|
|
251
|
+
provider: "amazon-bedrock",
|
|
252
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
253
|
+
reasoning: true,
|
|
254
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
255
|
+
input: ["text", "image"],
|
|
256
|
+
cost: {
|
|
257
|
+
input: 5,
|
|
258
|
+
output: 25,
|
|
259
|
+
cacheRead: 0.5,
|
|
260
|
+
cacheWrite: 6.25,
|
|
261
|
+
},
|
|
262
|
+
contextWindow: 1000000,
|
|
263
|
+
maxTokens: 128000,
|
|
264
|
+
},
|
|
246
265
|
"au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
247
266
|
id: "au.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
248
267
|
name: "Claude Sonnet 4.5 (AU)",
|
|
@@ -398,6 +417,24 @@ export const MODELS = {
|
|
|
398
417
|
contextWindow: 1000000,
|
|
399
418
|
maxTokens: 128000,
|
|
400
419
|
},
|
|
420
|
+
"eu.anthropic.claude-opus-4-8": {
|
|
421
|
+
id: "eu.anthropic.claude-opus-4-8",
|
|
422
|
+
name: "Claude Opus 4.8 (EU)",
|
|
423
|
+
api: "bedrock-converse-stream",
|
|
424
|
+
provider: "amazon-bedrock",
|
|
425
|
+
baseUrl: "https://bedrock-runtime.eu-central-1.amazonaws.com",
|
|
426
|
+
reasoning: true,
|
|
427
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
428
|
+
input: ["text", "image"],
|
|
429
|
+
cost: {
|
|
430
|
+
input: 5,
|
|
431
|
+
output: 25,
|
|
432
|
+
cacheRead: 0.5,
|
|
433
|
+
cacheWrite: 6.25,
|
|
434
|
+
},
|
|
435
|
+
contextWindow: 1000000,
|
|
436
|
+
maxTokens: 128000,
|
|
437
|
+
},
|
|
401
438
|
"eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
402
439
|
id: "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
403
440
|
name: "Claude Sonnet 4.5 (EU)",
|
|
@@ -502,6 +539,24 @@ export const MODELS = {
|
|
|
502
539
|
contextWindow: 1000000,
|
|
503
540
|
maxTokens: 128000,
|
|
504
541
|
},
|
|
542
|
+
"global.anthropic.claude-opus-4-8": {
|
|
543
|
+
id: "global.anthropic.claude-opus-4-8",
|
|
544
|
+
name: "Claude Opus 4.8 (Global)",
|
|
545
|
+
api: "bedrock-converse-stream",
|
|
546
|
+
provider: "amazon-bedrock",
|
|
547
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
548
|
+
reasoning: true,
|
|
549
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
550
|
+
input: ["text", "image"],
|
|
551
|
+
cost: {
|
|
552
|
+
input: 5,
|
|
553
|
+
output: 25,
|
|
554
|
+
cacheRead: 0.5,
|
|
555
|
+
cacheWrite: 6.25,
|
|
556
|
+
},
|
|
557
|
+
contextWindow: 1000000,
|
|
558
|
+
maxTokens: 128000,
|
|
559
|
+
},
|
|
505
560
|
"global.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
506
561
|
id: "global.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
507
562
|
name: "Claude Sonnet 4.5 (Global)",
|
|
@@ -588,6 +643,24 @@ export const MODELS = {
|
|
|
588
643
|
contextWindow: 1000000,
|
|
589
644
|
maxTokens: 128000,
|
|
590
645
|
},
|
|
646
|
+
"jp.anthropic.claude-opus-4-8": {
|
|
647
|
+
id: "jp.anthropic.claude-opus-4-8",
|
|
648
|
+
name: "Claude Opus 4.8 (JP)",
|
|
649
|
+
api: "bedrock-converse-stream",
|
|
650
|
+
provider: "amazon-bedrock",
|
|
651
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
652
|
+
reasoning: true,
|
|
653
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
654
|
+
input: ["text", "image"],
|
|
655
|
+
cost: {
|
|
656
|
+
input: 5,
|
|
657
|
+
output: 25,
|
|
658
|
+
cacheRead: 0.5,
|
|
659
|
+
cacheWrite: 6.25,
|
|
660
|
+
},
|
|
661
|
+
contextWindow: 1000000,
|
|
662
|
+
maxTokens: 128000,
|
|
663
|
+
},
|
|
591
664
|
"jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
592
665
|
id: "jp.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
593
666
|
name: "Claude Sonnet 4.5 (JP)",
|
|
@@ -1287,6 +1360,24 @@ export const MODELS = {
|
|
|
1287
1360
|
contextWindow: 1000000,
|
|
1288
1361
|
maxTokens: 128000,
|
|
1289
1362
|
},
|
|
1363
|
+
"us.anthropic.claude-opus-4-8": {
|
|
1364
|
+
id: "us.anthropic.claude-opus-4-8",
|
|
1365
|
+
name: "Claude Opus 4.8 (US)",
|
|
1366
|
+
api: "bedrock-converse-stream",
|
|
1367
|
+
provider: "amazon-bedrock",
|
|
1368
|
+
baseUrl: "https://bedrock-runtime.us-east-1.amazonaws.com",
|
|
1369
|
+
reasoning: true,
|
|
1370
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
1371
|
+
input: ["text", "image"],
|
|
1372
|
+
cost: {
|
|
1373
|
+
input: 5,
|
|
1374
|
+
output: 25,
|
|
1375
|
+
cacheRead: 0.5,
|
|
1376
|
+
cacheWrite: 6.25,
|
|
1377
|
+
},
|
|
1378
|
+
contextWindow: 1000000,
|
|
1379
|
+
maxTokens: 128000,
|
|
1380
|
+
},
|
|
1290
1381
|
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
1291
1382
|
id: "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
1292
1383
|
name: "Claude Sonnet 4.5 (US)",
|
|
@@ -1740,6 +1831,7 @@ export const MODELS = {
|
|
|
1740
1831
|
provider: "anthropic",
|
|
1741
1832
|
baseUrl: "https://api.anthropic.com",
|
|
1742
1833
|
reasoning: true,
|
|
1834
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
1743
1835
|
input: ["text", "image"],
|
|
1744
1836
|
cost: {
|
|
1745
1837
|
input: 5,
|
|
@@ -2734,6 +2826,24 @@ export const MODELS = {
|
|
|
2734
2826
|
contextWindow: 1000000,
|
|
2735
2827
|
maxTokens: 128000,
|
|
2736
2828
|
},
|
|
2829
|
+
"claude-opus-4-8": {
|
|
2830
|
+
id: "claude-opus-4-8",
|
|
2831
|
+
name: "Claude Opus 4.8",
|
|
2832
|
+
api: "anthropic-messages",
|
|
2833
|
+
provider: "cloudflare-ai-gateway",
|
|
2834
|
+
baseUrl: "https://gateway.ai.cloudflare.com/v1/{CLOUDFLARE_ACCOUNT_ID}/{CLOUDFLARE_GATEWAY_ID}/anthropic",
|
|
2835
|
+
reasoning: true,
|
|
2836
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
2837
|
+
input: ["text", "image"],
|
|
2838
|
+
cost: {
|
|
2839
|
+
input: 5,
|
|
2840
|
+
output: 25,
|
|
2841
|
+
cacheRead: 0.5,
|
|
2842
|
+
cacheWrite: 6.25,
|
|
2843
|
+
},
|
|
2844
|
+
contextWindow: 1000000,
|
|
2845
|
+
maxTokens: 128000,
|
|
2846
|
+
},
|
|
2737
2847
|
"claude-sonnet-4": {
|
|
2738
2848
|
id: "claude-sonnet-4",
|
|
2739
2849
|
name: "Claude Sonnet 4 (latest)",
|
|
@@ -3601,8 +3711,8 @@ export const MODELS = {
|
|
|
3601
3711
|
cacheRead: 0,
|
|
3602
3712
|
cacheWrite: 0,
|
|
3603
3713
|
},
|
|
3604
|
-
contextWindow:
|
|
3605
|
-
maxTokens:
|
|
3714
|
+
contextWindow: 200000,
|
|
3715
|
+
maxTokens: 64000,
|
|
3606
3716
|
},
|
|
3607
3717
|
"claude-opus-4.5": {
|
|
3608
3718
|
id: "claude-opus-4.5",
|
|
@@ -3619,7 +3729,7 @@ export const MODELS = {
|
|
|
3619
3729
|
cacheRead: 0,
|
|
3620
3730
|
cacheWrite: 0,
|
|
3621
3731
|
},
|
|
3622
|
-
contextWindow:
|
|
3732
|
+
contextWindow: 200000,
|
|
3623
3733
|
maxTokens: 32000,
|
|
3624
3734
|
},
|
|
3625
3735
|
"claude-opus-4.6": {
|
|
@@ -3639,7 +3749,7 @@ export const MODELS = {
|
|
|
3639
3749
|
cacheWrite: 0,
|
|
3640
3750
|
},
|
|
3641
3751
|
contextWindow: 1000000,
|
|
3642
|
-
maxTokens:
|
|
3752
|
+
maxTokens: 32000,
|
|
3643
3753
|
},
|
|
3644
3754
|
"claude-opus-4.7": {
|
|
3645
3755
|
id: "claude-opus-4.7",
|
|
@@ -3657,7 +3767,26 @@ export const MODELS = {
|
|
|
3657
3767
|
cacheRead: 0,
|
|
3658
3768
|
cacheWrite: 0,
|
|
3659
3769
|
},
|
|
3660
|
-
contextWindow:
|
|
3770
|
+
contextWindow: 200000,
|
|
3771
|
+
maxTokens: 32000,
|
|
3772
|
+
},
|
|
3773
|
+
"claude-opus-4.8": {
|
|
3774
|
+
id: "claude-opus-4.8",
|
|
3775
|
+
name: "Claude Opus 4.8",
|
|
3776
|
+
api: "anthropic-messages",
|
|
3777
|
+
provider: "github-copilot",
|
|
3778
|
+
baseUrl: "https://api.individual.githubcopilot.com",
|
|
3779
|
+
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" },
|
|
3780
|
+
reasoning: true,
|
|
3781
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
3782
|
+
input: ["text", "image"],
|
|
3783
|
+
cost: {
|
|
3784
|
+
input: 0,
|
|
3785
|
+
output: 0,
|
|
3786
|
+
cacheRead: 0,
|
|
3787
|
+
cacheWrite: 0,
|
|
3788
|
+
},
|
|
3789
|
+
contextWindow: 200000,
|
|
3661
3790
|
maxTokens: 64000,
|
|
3662
3791
|
},
|
|
3663
3792
|
"claude-sonnet-4.5": {
|
|
@@ -3676,7 +3805,7 @@ export const MODELS = {
|
|
|
3676
3805
|
cacheRead: 0,
|
|
3677
3806
|
cacheWrite: 0,
|
|
3678
3807
|
},
|
|
3679
|
-
contextWindow:
|
|
3808
|
+
contextWindow: 200000,
|
|
3680
3809
|
maxTokens: 32000,
|
|
3681
3810
|
},
|
|
3682
3811
|
"claude-sonnet-4.6": {
|
|
@@ -3751,7 +3880,7 @@ export const MODELS = {
|
|
|
3751
3880
|
cacheRead: 0,
|
|
3752
3881
|
cacheWrite: 0,
|
|
3753
3882
|
},
|
|
3754
|
-
contextWindow:
|
|
3883
|
+
contextWindow: 200000,
|
|
3755
3884
|
maxTokens: 64000,
|
|
3756
3885
|
},
|
|
3757
3886
|
"gemini-3.5-flash": {
|
|
@@ -3770,7 +3899,7 @@ export const MODELS = {
|
|
|
3770
3899
|
cacheRead: 0,
|
|
3771
3900
|
cacheWrite: 0,
|
|
3772
3901
|
},
|
|
3773
|
-
contextWindow:
|
|
3902
|
+
contextWindow: 200000,
|
|
3774
3903
|
maxTokens: 64000,
|
|
3775
3904
|
},
|
|
3776
3905
|
"gpt-4.1": {
|
|
@@ -3846,8 +3975,8 @@ export const MODELS = {
|
|
|
3846
3975
|
cacheRead: 0,
|
|
3847
3976
|
cacheWrite: 0,
|
|
3848
3977
|
},
|
|
3849
|
-
contextWindow:
|
|
3850
|
-
maxTokens:
|
|
3978
|
+
contextWindow: 400000,
|
|
3979
|
+
maxTokens: 128000,
|
|
3851
3980
|
},
|
|
3852
3981
|
"gpt-5.2-codex": {
|
|
3853
3982
|
id: "gpt-5.2-codex",
|
|
@@ -6971,6 +7100,7 @@ export const MODELS = {
|
|
|
6971
7100
|
provider: "opencode",
|
|
6972
7101
|
baseUrl: "https://opencode.ai/zen",
|
|
6973
7102
|
reasoning: true,
|
|
7103
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
6974
7104
|
input: ["text", "image"],
|
|
6975
7105
|
cost: {
|
|
6976
7106
|
input: 5,
|
|
@@ -7756,24 +7886,6 @@ export const MODELS = {
|
|
|
7756
7886
|
contextWindow: 204800,
|
|
7757
7887
|
maxTokens: 131072,
|
|
7758
7888
|
},
|
|
7759
|
-
"qwen3.5-plus": {
|
|
7760
|
-
id: "qwen3.5-plus",
|
|
7761
|
-
name: "Qwen3.5 Plus",
|
|
7762
|
-
api: "openai-completions",
|
|
7763
|
-
provider: "opencode-go",
|
|
7764
|
-
baseUrl: "https://opencode.ai/zen/go/v1",
|
|
7765
|
-
compat: { "thinkingFormat": "qwen" },
|
|
7766
|
-
reasoning: true,
|
|
7767
|
-
input: ["text", "image"],
|
|
7768
|
-
cost: {
|
|
7769
|
-
input: 0.2,
|
|
7770
|
-
output: 1.2,
|
|
7771
|
-
cacheRead: 0.02,
|
|
7772
|
-
cacheWrite: 0.25,
|
|
7773
|
-
},
|
|
7774
|
-
contextWindow: 262144,
|
|
7775
|
-
maxTokens: 65536,
|
|
7776
|
-
},
|
|
7777
7889
|
"qwen3.6-plus": {
|
|
7778
7890
|
id: "qwen3.6-plus",
|
|
7779
7891
|
name: "Qwen3.6 Plus",
|
|
@@ -8077,6 +8189,7 @@ export const MODELS = {
|
|
|
8077
8189
|
provider: "openrouter",
|
|
8078
8190
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8079
8191
|
reasoning: true,
|
|
8192
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
8080
8193
|
input: ["text", "image"],
|
|
8081
8194
|
cost: {
|
|
8082
8195
|
input: 5,
|
|
@@ -8094,6 +8207,7 @@ export const MODELS = {
|
|
|
8094
8207
|
provider: "openrouter",
|
|
8095
8208
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8096
8209
|
reasoning: true,
|
|
8210
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
8097
8211
|
input: ["text", "image"],
|
|
8098
8212
|
cost: {
|
|
8099
8213
|
input: 10,
|
|
@@ -8223,23 +8337,6 @@ export const MODELS = {
|
|
|
8223
8337
|
contextWindow: 2000000,
|
|
8224
8338
|
maxTokens: 30000,
|
|
8225
8339
|
},
|
|
8226
|
-
"baidu/ernie-4.5-21b-a3b": {
|
|
8227
|
-
id: "baidu/ernie-4.5-21b-a3b",
|
|
8228
|
-
name: "Baidu: ERNIE 4.5 21B A3B",
|
|
8229
|
-
api: "openai-completions",
|
|
8230
|
-
provider: "openrouter",
|
|
8231
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
8232
|
-
reasoning: false,
|
|
8233
|
-
input: ["text"],
|
|
8234
|
-
cost: {
|
|
8235
|
-
input: 0.07,
|
|
8236
|
-
output: 0.28,
|
|
8237
|
-
cacheRead: 0,
|
|
8238
|
-
cacheWrite: 0,
|
|
8239
|
-
},
|
|
8240
|
-
contextWindow: 131072,
|
|
8241
|
-
maxTokens: 8000,
|
|
8242
|
-
},
|
|
8243
8340
|
"baidu/ernie-4.5-vl-28b-a3b": {
|
|
8244
8341
|
id: "baidu/ernie-4.5-vl-28b-a3b",
|
|
8245
8342
|
name: "Baidu: ERNIE 4.5 VL 28B A3B",
|
|
@@ -8506,13 +8603,13 @@ export const MODELS = {
|
|
|
8506
8603
|
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": "max" },
|
|
8507
8604
|
input: ["text"],
|
|
8508
8605
|
cost: {
|
|
8509
|
-
input: 0.
|
|
8510
|
-
output: 0.
|
|
8511
|
-
cacheRead: 0.
|
|
8606
|
+
input: 0.0983,
|
|
8607
|
+
output: 0.1966,
|
|
8608
|
+
cacheRead: 0.019700000000000002,
|
|
8512
8609
|
cacheWrite: 0,
|
|
8513
8610
|
},
|
|
8514
8611
|
contextWindow: 1048576,
|
|
8515
|
-
maxTokens:
|
|
8612
|
+
maxTokens: 131072,
|
|
8516
8613
|
},
|
|
8517
8614
|
"deepseek/deepseek-v4-flash:free": {
|
|
8518
8615
|
id: "deepseek/deepseek-v4-flash:free",
|
|
@@ -8583,7 +8680,7 @@ export const MODELS = {
|
|
|
8583
8680
|
cacheRead: 0.024999999999999998,
|
|
8584
8681
|
cacheWrite: 0.08333333333333334,
|
|
8585
8682
|
},
|
|
8586
|
-
contextWindow:
|
|
8683
|
+
contextWindow: 1048576,
|
|
8587
8684
|
maxTokens: 8192,
|
|
8588
8685
|
},
|
|
8589
8686
|
"google/gemini-2.0-flash-lite-001": {
|
|
@@ -9079,6 +9176,23 @@ export const MODELS = {
|
|
|
9079
9176
|
contextWindow: 131072,
|
|
9080
9177
|
maxTokens: 4096,
|
|
9081
9178
|
},
|
|
9179
|
+
"meta-llama/llama-4-maverick": {
|
|
9180
|
+
id: "meta-llama/llama-4-maverick",
|
|
9181
|
+
name: "Meta: Llama 4 Maverick",
|
|
9182
|
+
api: "openai-completions",
|
|
9183
|
+
provider: "openrouter",
|
|
9184
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
9185
|
+
reasoning: false,
|
|
9186
|
+
input: ["text", "image"],
|
|
9187
|
+
cost: {
|
|
9188
|
+
input: 0.15,
|
|
9189
|
+
output: 0.6,
|
|
9190
|
+
cacheRead: 0,
|
|
9191
|
+
cacheWrite: 0,
|
|
9192
|
+
},
|
|
9193
|
+
contextWindow: 1048576,
|
|
9194
|
+
maxTokens: 16384,
|
|
9195
|
+
},
|
|
9082
9196
|
"meta-llama/llama-4-scout": {
|
|
9083
9197
|
id: "meta-llama/llama-4-scout",
|
|
9084
9198
|
name: "Meta: Llama 4 Scout",
|
|
@@ -9164,23 +9278,6 @@ export const MODELS = {
|
|
|
9164
9278
|
contextWindow: 204800,
|
|
9165
9279
|
maxTokens: 196608,
|
|
9166
9280
|
},
|
|
9167
|
-
"minimax/minimax-m2.5:free": {
|
|
9168
|
-
id: "minimax/minimax-m2.5:free",
|
|
9169
|
-
name: "MiniMax: MiniMax M2.5 (free)",
|
|
9170
|
-
api: "openai-completions",
|
|
9171
|
-
provider: "openrouter",
|
|
9172
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9173
|
-
reasoning: true,
|
|
9174
|
-
input: ["text"],
|
|
9175
|
-
cost: {
|
|
9176
|
-
input: 0,
|
|
9177
|
-
output: 0,
|
|
9178
|
-
cacheRead: 0,
|
|
9179
|
-
cacheWrite: 0,
|
|
9180
|
-
},
|
|
9181
|
-
contextWindow: 262144,
|
|
9182
|
-
maxTokens: 8192,
|
|
9183
|
-
},
|
|
9184
9281
|
"minimax/minimax-m2.7": {
|
|
9185
9282
|
id: "minimax/minimax-m2.7",
|
|
9186
9283
|
name: "MiniMax: MiniMax M2.7",
|
|
@@ -9190,13 +9287,13 @@ export const MODELS = {
|
|
|
9190
9287
|
reasoning: true,
|
|
9191
9288
|
input: ["text"],
|
|
9192
9289
|
cost: {
|
|
9193
|
-
input: 0.
|
|
9290
|
+
input: 0.26,
|
|
9194
9291
|
output: 1.2,
|
|
9195
9292
|
cacheRead: 0,
|
|
9196
9293
|
cacheWrite: 0,
|
|
9197
9294
|
},
|
|
9198
9295
|
contextWindow: 204800,
|
|
9199
|
-
maxTokens:
|
|
9296
|
+
maxTokens: 4096,
|
|
9200
9297
|
},
|
|
9201
9298
|
"mistralai/codestral-2508": {
|
|
9202
9299
|
id: "mistralai/codestral-2508",
|
|
@@ -9232,40 +9329,6 @@ export const MODELS = {
|
|
|
9232
9329
|
contextWindow: 262144,
|
|
9233
9330
|
maxTokens: 4096,
|
|
9234
9331
|
},
|
|
9235
|
-
"mistralai/devstral-medium": {
|
|
9236
|
-
id: "mistralai/devstral-medium",
|
|
9237
|
-
name: "Mistral: Devstral Medium",
|
|
9238
|
-
api: "openai-completions",
|
|
9239
|
-
provider: "openrouter",
|
|
9240
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9241
|
-
reasoning: false,
|
|
9242
|
-
input: ["text"],
|
|
9243
|
-
cost: {
|
|
9244
|
-
input: 0.39999999999999997,
|
|
9245
|
-
output: 2,
|
|
9246
|
-
cacheRead: 0.04,
|
|
9247
|
-
cacheWrite: 0,
|
|
9248
|
-
},
|
|
9249
|
-
contextWindow: 131072,
|
|
9250
|
-
maxTokens: 4096,
|
|
9251
|
-
},
|
|
9252
|
-
"mistralai/devstral-small": {
|
|
9253
|
-
id: "mistralai/devstral-small",
|
|
9254
|
-
name: "Mistral: Devstral Small 1.1",
|
|
9255
|
-
api: "openai-completions",
|
|
9256
|
-
provider: "openrouter",
|
|
9257
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9258
|
-
reasoning: false,
|
|
9259
|
-
input: ["text"],
|
|
9260
|
-
cost: {
|
|
9261
|
-
input: 0.09999999999999999,
|
|
9262
|
-
output: 0.3,
|
|
9263
|
-
cacheRead: 0.01,
|
|
9264
|
-
cacheWrite: 0,
|
|
9265
|
-
},
|
|
9266
|
-
contextWindow: 131072,
|
|
9267
|
-
maxTokens: 4096,
|
|
9268
|
-
},
|
|
9269
9332
|
"mistralai/ministral-14b-2512": {
|
|
9270
9333
|
id: "mistralai/ministral-14b-2512",
|
|
9271
9334
|
name: "Mistral: Ministral 3 14B 2512",
|
|
@@ -9351,23 +9414,6 @@ export const MODELS = {
|
|
|
9351
9414
|
contextWindow: 131072,
|
|
9352
9415
|
maxTokens: 4096,
|
|
9353
9416
|
},
|
|
9354
|
-
"mistralai/mistral-large-2411": {
|
|
9355
|
-
id: "mistralai/mistral-large-2411",
|
|
9356
|
-
name: "Mistral Large 2411",
|
|
9357
|
-
api: "openai-completions",
|
|
9358
|
-
provider: "openrouter",
|
|
9359
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9360
|
-
reasoning: false,
|
|
9361
|
-
input: ["text"],
|
|
9362
|
-
cost: {
|
|
9363
|
-
input: 2,
|
|
9364
|
-
output: 6,
|
|
9365
|
-
cacheRead: 0.19999999999999998,
|
|
9366
|
-
cacheWrite: 0,
|
|
9367
|
-
},
|
|
9368
|
-
contextWindow: 131072,
|
|
9369
|
-
maxTokens: 4096,
|
|
9370
|
-
},
|
|
9371
9417
|
"mistralai/mistral-large-2512": {
|
|
9372
9418
|
id: "mistralai/mistral-large-2512",
|
|
9373
9419
|
name: "Mistral: Mistral Large 3 2512",
|
|
@@ -9521,23 +9567,6 @@ export const MODELS = {
|
|
|
9521
9567
|
contextWindow: 65536,
|
|
9522
9568
|
maxTokens: 4096,
|
|
9523
9569
|
},
|
|
9524
|
-
"mistralai/pixtral-large-2411": {
|
|
9525
|
-
id: "mistralai/pixtral-large-2411",
|
|
9526
|
-
name: "Mistral: Pixtral Large 2411",
|
|
9527
|
-
api: "openai-completions",
|
|
9528
|
-
provider: "openrouter",
|
|
9529
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
9530
|
-
reasoning: false,
|
|
9531
|
-
input: ["text", "image"],
|
|
9532
|
-
cost: {
|
|
9533
|
-
input: 2,
|
|
9534
|
-
output: 6,
|
|
9535
|
-
cacheRead: 0.19999999999999998,
|
|
9536
|
-
cacheWrite: 0,
|
|
9537
|
-
},
|
|
9538
|
-
contextWindow: 131072,
|
|
9539
|
-
maxTokens: 4096,
|
|
9540
|
-
},
|
|
9541
9570
|
"mistralai/voxtral-small-24b-2507": {
|
|
9542
9571
|
id: "mistralai/voxtral-small-24b-2507",
|
|
9543
9572
|
name: "Mistral: Voxtral Small 24B 2507",
|
|
@@ -9632,13 +9661,13 @@ export const MODELS = {
|
|
|
9632
9661
|
reasoning: true,
|
|
9633
9662
|
input: ["text", "image"],
|
|
9634
9663
|
cost: {
|
|
9635
|
-
input: 0.
|
|
9636
|
-
output: 3.
|
|
9637
|
-
cacheRead: 0.
|
|
9664
|
+
input: 0.684,
|
|
9665
|
+
output: 3.42,
|
|
9666
|
+
cacheRead: 0.144,
|
|
9638
9667
|
cacheWrite: 0,
|
|
9639
9668
|
},
|
|
9640
9669
|
contextWindow: 262144,
|
|
9641
|
-
maxTokens:
|
|
9670
|
+
maxTokens: 262144,
|
|
9642
9671
|
},
|
|
9643
9672
|
"moonshotai/kimi-k2.6:free": {
|
|
9644
9673
|
id: "moonshotai/kimi-k2.6:free",
|
|
@@ -9997,23 +10026,6 @@ export const MODELS = {
|
|
|
9997
10026
|
contextWindow: 128000,
|
|
9998
10027
|
maxTokens: 16384,
|
|
9999
10028
|
},
|
|
10000
|
-
"openai/gpt-4o-audio-preview": {
|
|
10001
|
-
id: "openai/gpt-4o-audio-preview",
|
|
10002
|
-
name: "OpenAI: GPT-4o Audio",
|
|
10003
|
-
api: "openai-completions",
|
|
10004
|
-
provider: "openrouter",
|
|
10005
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
10006
|
-
reasoning: false,
|
|
10007
|
-
input: ["text"],
|
|
10008
|
-
cost: {
|
|
10009
|
-
input: 2.5,
|
|
10010
|
-
output: 10,
|
|
10011
|
-
cacheRead: 0,
|
|
10012
|
-
cacheWrite: 0,
|
|
10013
|
-
},
|
|
10014
|
-
contextWindow: 128000,
|
|
10015
|
-
maxTokens: 16384,
|
|
10016
|
-
},
|
|
10017
10029
|
"openai/gpt-4o-mini": {
|
|
10018
10030
|
id: "openai/gpt-4o-mini",
|
|
10019
10031
|
name: "OpenAI: GPT-4o-mini",
|
|
@@ -10511,13 +10523,13 @@ export const MODELS = {
|
|
|
10511
10523
|
reasoning: true,
|
|
10512
10524
|
input: ["text"],
|
|
10513
10525
|
cost: {
|
|
10514
|
-
input: 0.
|
|
10526
|
+
input: 0.029,
|
|
10515
10527
|
output: 0.14,
|
|
10516
10528
|
cacheRead: 0,
|
|
10517
10529
|
cacheWrite: 0,
|
|
10518
10530
|
},
|
|
10519
10531
|
contextWindow: 131072,
|
|
10520
|
-
maxTokens:
|
|
10532
|
+
maxTokens: 4096,
|
|
10521
10533
|
},
|
|
10522
10534
|
"openai/gpt-oss-20b:free": {
|
|
10523
10535
|
id: "openai/gpt-oss-20b:free",
|
|
@@ -10825,23 +10837,6 @@ export const MODELS = {
|
|
|
10825
10837
|
contextWindow: 131072,
|
|
10826
10838
|
maxTokens: 16384,
|
|
10827
10839
|
},
|
|
10828
|
-
"qwen/qwen-2.5-7b-instruct": {
|
|
10829
|
-
id: "qwen/qwen-2.5-7b-instruct",
|
|
10830
|
-
name: "Qwen: Qwen2.5 7B Instruct",
|
|
10831
|
-
api: "openai-completions",
|
|
10832
|
-
provider: "openrouter",
|
|
10833
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
10834
|
-
reasoning: false,
|
|
10835
|
-
input: ["text"],
|
|
10836
|
-
cost: {
|
|
10837
|
-
input: 0.04,
|
|
10838
|
-
output: 0.09999999999999999,
|
|
10839
|
-
cacheRead: 0,
|
|
10840
|
-
cacheWrite: 0,
|
|
10841
|
-
},
|
|
10842
|
-
contextWindow: 131072,
|
|
10843
|
-
maxTokens: 32768,
|
|
10844
|
-
},
|
|
10845
10840
|
"qwen/qwen-plus": {
|
|
10846
10841
|
id: "qwen/qwen-plus",
|
|
10847
10842
|
name: "Qwen: Qwen-Plus",
|
|
@@ -10953,13 +10948,13 @@ export const MODELS = {
|
|
|
10953
10948
|
reasoning: true,
|
|
10954
10949
|
input: ["text"],
|
|
10955
10950
|
cost: {
|
|
10956
|
-
input: 0.
|
|
10957
|
-
output:
|
|
10958
|
-
cacheRead: 0,
|
|
10951
|
+
input: 0.09999999999999999,
|
|
10952
|
+
output: 0.09999999999999999,
|
|
10953
|
+
cacheRead: 0.09999999999999999,
|
|
10959
10954
|
cacheWrite: 0,
|
|
10960
10955
|
},
|
|
10961
10956
|
contextWindow: 262144,
|
|
10962
|
-
maxTokens:
|
|
10957
|
+
maxTokens: 262144,
|
|
10963
10958
|
},
|
|
10964
10959
|
"qwen/qwen3-30b-a3b": {
|
|
10965
10960
|
id: "qwen/qwen3-30b-a3b",
|
|
@@ -11395,13 +11390,13 @@ export const MODELS = {
|
|
|
11395
11390
|
reasoning: true,
|
|
11396
11391
|
input: ["text", "image"],
|
|
11397
11392
|
cost: {
|
|
11398
|
-
input: 0.
|
|
11393
|
+
input: 0.14,
|
|
11399
11394
|
output: 1,
|
|
11400
|
-
cacheRead: 0,
|
|
11395
|
+
cacheRead: 0.049999999999999996,
|
|
11401
11396
|
cacheWrite: 0,
|
|
11402
11397
|
},
|
|
11403
11398
|
contextWindow: 262144,
|
|
11404
|
-
maxTokens:
|
|
11399
|
+
maxTokens: 262144,
|
|
11405
11400
|
},
|
|
11406
11401
|
"qwen/qwen3.5-397b-a17b": {
|
|
11407
11402
|
id: "qwen/qwen3.5-397b-a17b",
|
|
@@ -11675,6 +11670,23 @@ export const MODELS = {
|
|
|
11675
11670
|
contextWindow: 262144,
|
|
11676
11671
|
maxTokens: 16384,
|
|
11677
11672
|
},
|
|
11673
|
+
"stepfun/step-3.7-flash": {
|
|
11674
|
+
id: "stepfun/step-3.7-flash",
|
|
11675
|
+
name: "StepFun: Step 3.7 Flash",
|
|
11676
|
+
api: "openai-completions",
|
|
11677
|
+
provider: "openrouter",
|
|
11678
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
11679
|
+
reasoning: true,
|
|
11680
|
+
input: ["text", "image"],
|
|
11681
|
+
cost: {
|
|
11682
|
+
input: 0.19999999999999998,
|
|
11683
|
+
output: 1.15,
|
|
11684
|
+
cacheRead: 0.04,
|
|
11685
|
+
cacheWrite: 0,
|
|
11686
|
+
},
|
|
11687
|
+
contextWindow: 256000,
|
|
11688
|
+
maxTokens: 256000,
|
|
11689
|
+
},
|
|
11678
11690
|
"thedrummer/rocinante-12b": {
|
|
11679
11691
|
id: "thedrummer/rocinante-12b",
|
|
11680
11692
|
name: "TheDrummer: Rocinante 12B",
|
|
@@ -11709,23 +11721,6 @@ export const MODELS = {
|
|
|
11709
11721
|
contextWindow: 32768,
|
|
11710
11722
|
maxTokens: 32768,
|
|
11711
11723
|
},
|
|
11712
|
-
"upstage/solar-pro-3": {
|
|
11713
|
-
id: "upstage/solar-pro-3",
|
|
11714
|
-
name: "Upstage: Solar Pro 3",
|
|
11715
|
-
api: "openai-completions",
|
|
11716
|
-
provider: "openrouter",
|
|
11717
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
11718
|
-
reasoning: true,
|
|
11719
|
-
input: ["text"],
|
|
11720
|
-
cost: {
|
|
11721
|
-
input: 0.15,
|
|
11722
|
-
output: 0.6,
|
|
11723
|
-
cacheRead: 0.015,
|
|
11724
|
-
cacheWrite: 0,
|
|
11725
|
-
},
|
|
11726
|
-
contextWindow: 128000,
|
|
11727
|
-
maxTokens: 4096,
|
|
11728
|
-
},
|
|
11729
11724
|
"x-ai/grok-4.20": {
|
|
11730
11725
|
id: "x-ai/grok-4.20",
|
|
11731
11726
|
name: "xAI: Grok 4.20",
|
|
@@ -12126,13 +12121,13 @@ export const MODELS = {
|
|
|
12126
12121
|
reasoning: true,
|
|
12127
12122
|
input: ["text", "image"],
|
|
12128
12123
|
cost: {
|
|
12129
|
-
input: 0.
|
|
12130
|
-
output: 3.
|
|
12131
|
-
cacheRead: 0.
|
|
12124
|
+
input: 0.684,
|
|
12125
|
+
output: 3.42,
|
|
12126
|
+
cacheRead: 0.144,
|
|
12132
12127
|
cacheWrite: 0,
|
|
12133
12128
|
},
|
|
12134
12129
|
contextWindow: 262144,
|
|
12135
|
-
maxTokens:
|
|
12130
|
+
maxTokens: 262144,
|
|
12136
12131
|
},
|
|
12137
12132
|
"~openai/gpt-latest": {
|
|
12138
12133
|
id: "~openai/gpt-latest",
|
|
@@ -12530,20 +12525,20 @@ export const MODELS = {
|
|
|
12530
12525
|
},
|
|
12531
12526
|
"alibaba/qwen-3-235b": {
|
|
12532
12527
|
id: "alibaba/qwen-3-235b",
|
|
12533
|
-
name: "Qwen3 235B
|
|
12528
|
+
name: "Qwen3 235B A22B",
|
|
12534
12529
|
api: "anthropic-messages",
|
|
12535
12530
|
provider: "vercel-ai-gateway",
|
|
12536
12531
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12537
12532
|
reasoning: false,
|
|
12538
12533
|
input: ["text"],
|
|
12539
12534
|
cost: {
|
|
12540
|
-
input: 0.
|
|
12541
|
-
output:
|
|
12542
|
-
cacheRead: 0
|
|
12535
|
+
input: 0.22,
|
|
12536
|
+
output: 0.88,
|
|
12537
|
+
cacheRead: 0,
|
|
12543
12538
|
cacheWrite: 0,
|
|
12544
12539
|
},
|
|
12545
|
-
contextWindow:
|
|
12546
|
-
maxTokens:
|
|
12540
|
+
contextWindow: 262144,
|
|
12541
|
+
maxTokens: 16384,
|
|
12547
12542
|
},
|
|
12548
12543
|
"alibaba/qwen-3-30b": {
|
|
12549
12544
|
id: "alibaba/qwen-3-30b",
|
|
@@ -12962,6 +12957,7 @@ export const MODELS = {
|
|
|
12962
12957
|
provider: "vercel-ai-gateway",
|
|
12963
12958
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12964
12959
|
reasoning: true,
|
|
12960
|
+
thinkingLevelMap: { "minimal": "low", "low": "medium", "medium": "high", "high": "max", "xhigh": "ultracode" },
|
|
12965
12961
|
input: ["text", "image"],
|
|
12966
12962
|
cost: {
|
|
12967
12963
|
input: 5,
|
|
@@ -14735,6 +14731,23 @@ export const MODELS = {
|
|
|
14735
14731
|
contextWindow: 200000,
|
|
14736
14732
|
maxTokens: 8000,
|
|
14737
14733
|
},
|
|
14734
|
+
"stepfun/step-3.7-flash": {
|
|
14735
|
+
id: "stepfun/step-3.7-flash",
|
|
14736
|
+
name: "Step 3.7 Flash",
|
|
14737
|
+
api: "anthropic-messages",
|
|
14738
|
+
provider: "vercel-ai-gateway",
|
|
14739
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14740
|
+
reasoning: true,
|
|
14741
|
+
input: ["text", "image"],
|
|
14742
|
+
cost: {
|
|
14743
|
+
input: 0.19999999999999998,
|
|
14744
|
+
output: 1.15,
|
|
14745
|
+
cacheRead: 0.04,
|
|
14746
|
+
cacheWrite: 0,
|
|
14747
|
+
},
|
|
14748
|
+
contextWindow: 256000,
|
|
14749
|
+
maxTokens: 256000,
|
|
14750
|
+
},
|
|
14738
14751
|
"xai/grok-4.1-fast-non-reasoning": {
|
|
14739
14752
|
id: "xai/grok-4.1-fast-non-reasoning",
|
|
14740
14753
|
name: "Grok 4.1 Fast Non-Reasoning",
|