@avadisabelle/ava-pi-ai 0.65.2 → 0.65.3
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 +263 -71
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +314 -126
- package/dist/models.generated.js.map +1 -1
- package/package.json +1 -1
package/dist/models.generated.js
CHANGED
|
@@ -2539,6 +2539,23 @@ export const MODELS = {
|
|
|
2539
2539
|
contextWindow: 1050000,
|
|
2540
2540
|
maxTokens: 128000,
|
|
2541
2541
|
},
|
|
2542
|
+
"gpt-5.5-pro": {
|
|
2543
|
+
id: "gpt-5.5-pro",
|
|
2544
|
+
name: "GPT-5.5 Pro",
|
|
2545
|
+
api: "azure-openai-responses",
|
|
2546
|
+
provider: "azure-openai-responses",
|
|
2547
|
+
baseUrl: "",
|
|
2548
|
+
reasoning: true,
|
|
2549
|
+
input: ["text", "image"],
|
|
2550
|
+
cost: {
|
|
2551
|
+
input: 30,
|
|
2552
|
+
output: 180,
|
|
2553
|
+
cacheRead: 0,
|
|
2554
|
+
cacheWrite: 0,
|
|
2555
|
+
},
|
|
2556
|
+
contextWindow: 1050000,
|
|
2557
|
+
maxTokens: 128000,
|
|
2558
|
+
},
|
|
2542
2559
|
"o1": {
|
|
2543
2560
|
id: "o1",
|
|
2544
2561
|
name: "o1",
|
|
@@ -5270,22 +5287,39 @@ export const MODELS = {
|
|
|
5270
5287
|
contextWindow: 262144,
|
|
5271
5288
|
maxTokens: 262144,
|
|
5272
5289
|
},
|
|
5290
|
+
"mistral-medium-2604": {
|
|
5291
|
+
id: "mistral-medium-2604",
|
|
5292
|
+
name: "Mistral Medium 3.5",
|
|
5293
|
+
api: "mistral-conversations",
|
|
5294
|
+
provider: "mistral",
|
|
5295
|
+
baseUrl: "https://api.mistral.ai",
|
|
5296
|
+
reasoning: true,
|
|
5297
|
+
input: ["text", "image"],
|
|
5298
|
+
cost: {
|
|
5299
|
+
input: 1.5,
|
|
5300
|
+
output: 7.5,
|
|
5301
|
+
cacheRead: 0,
|
|
5302
|
+
cacheWrite: 0,
|
|
5303
|
+
},
|
|
5304
|
+
contextWindow: 262144,
|
|
5305
|
+
maxTokens: 262144,
|
|
5306
|
+
},
|
|
5273
5307
|
"mistral-medium-latest": {
|
|
5274
5308
|
id: "mistral-medium-latest",
|
|
5275
5309
|
name: "Mistral Medium (latest)",
|
|
5276
5310
|
api: "mistral-conversations",
|
|
5277
5311
|
provider: "mistral",
|
|
5278
5312
|
baseUrl: "https://api.mistral.ai",
|
|
5279
|
-
reasoning:
|
|
5313
|
+
reasoning: true,
|
|
5280
5314
|
input: ["text", "image"],
|
|
5281
5315
|
cost: {
|
|
5282
|
-
input:
|
|
5283
|
-
output:
|
|
5316
|
+
input: 1.5,
|
|
5317
|
+
output: 7.5,
|
|
5284
5318
|
cacheRead: 0,
|
|
5285
5319
|
cacheWrite: 0,
|
|
5286
5320
|
},
|
|
5287
|
-
contextWindow:
|
|
5288
|
-
maxTokens:
|
|
5321
|
+
contextWindow: 262144,
|
|
5322
|
+
maxTokens: 262144,
|
|
5289
5323
|
},
|
|
5290
5324
|
"mistral-nemo": {
|
|
5291
5325
|
id: "mistral-nemo",
|
|
@@ -6003,6 +6037,23 @@ export const MODELS = {
|
|
|
6003
6037
|
contextWindow: 1050000,
|
|
6004
6038
|
maxTokens: 128000,
|
|
6005
6039
|
},
|
|
6040
|
+
"gpt-5.5-pro": {
|
|
6041
|
+
id: "gpt-5.5-pro",
|
|
6042
|
+
name: "GPT-5.5 Pro",
|
|
6043
|
+
api: "openai-responses",
|
|
6044
|
+
provider: "openai",
|
|
6045
|
+
baseUrl: "https://api.openai.com/v1",
|
|
6046
|
+
reasoning: true,
|
|
6047
|
+
input: ["text", "image"],
|
|
6048
|
+
cost: {
|
|
6049
|
+
input: 30,
|
|
6050
|
+
output: 180,
|
|
6051
|
+
cacheRead: 0,
|
|
6052
|
+
cacheWrite: 0,
|
|
6053
|
+
},
|
|
6054
|
+
contextWindow: 1050000,
|
|
6055
|
+
maxTokens: 128000,
|
|
6056
|
+
},
|
|
6006
6057
|
"o1": {
|
|
6007
6058
|
id: "o1",
|
|
6008
6059
|
name: "o1",
|
|
@@ -6840,23 +6891,6 @@ export const MODELS = {
|
|
|
6840
6891
|
contextWindow: 262144,
|
|
6841
6892
|
maxTokens: 65536,
|
|
6842
6893
|
},
|
|
6843
|
-
"ling-2.6-flash-free": {
|
|
6844
|
-
id: "ling-2.6-flash-free",
|
|
6845
|
-
name: "Ling 2.6 Flash Free",
|
|
6846
|
-
api: "openai-completions",
|
|
6847
|
-
provider: "opencode",
|
|
6848
|
-
baseUrl: "https://opencode.ai/zen/v1",
|
|
6849
|
-
reasoning: false,
|
|
6850
|
-
input: ["text"],
|
|
6851
|
-
cost: {
|
|
6852
|
-
input: 0,
|
|
6853
|
-
output: 0,
|
|
6854
|
-
cacheRead: 0,
|
|
6855
|
-
cacheWrite: 0,
|
|
6856
|
-
},
|
|
6857
|
-
contextWindow: 262100,
|
|
6858
|
-
maxTokens: 32800,
|
|
6859
|
-
},
|
|
6860
6894
|
"minimax-m2.5": {
|
|
6861
6895
|
id: "minimax-m2.5",
|
|
6862
6896
|
name: "MiniMax M2.5",
|
|
@@ -7009,8 +7043,8 @@ export const MODELS = {
|
|
|
7009
7043
|
cacheRead: 0.2,
|
|
7010
7044
|
cacheWrite: 0,
|
|
7011
7045
|
},
|
|
7012
|
-
contextWindow:
|
|
7013
|
-
maxTokens:
|
|
7046
|
+
contextWindow: 202752,
|
|
7047
|
+
maxTokens: 32768,
|
|
7014
7048
|
},
|
|
7015
7049
|
"glm-5.1": {
|
|
7016
7050
|
id: "glm-5.1",
|
|
@@ -7026,8 +7060,8 @@ export const MODELS = {
|
|
|
7026
7060
|
cacheRead: 0.26,
|
|
7027
7061
|
cacheWrite: 0,
|
|
7028
7062
|
},
|
|
7029
|
-
contextWindow:
|
|
7030
|
-
maxTokens:
|
|
7063
|
+
contextWindow: 202752,
|
|
7064
|
+
maxTokens: 32768,
|
|
7031
7065
|
},
|
|
7032
7066
|
"kimi-k2.5": {
|
|
7033
7067
|
id: "kimi-k2.5",
|
|
@@ -7890,8 +7924,8 @@ export const MODELS = {
|
|
|
7890
7924
|
reasoning: true,
|
|
7891
7925
|
input: ["text"],
|
|
7892
7926
|
cost: {
|
|
7893
|
-
input: 0.
|
|
7894
|
-
output: 0.
|
|
7927
|
+
input: 0.27,
|
|
7928
|
+
output: 0.95,
|
|
7895
7929
|
cacheRead: 0.13,
|
|
7896
7930
|
cacheWrite: 0,
|
|
7897
7931
|
},
|
|
@@ -7997,7 +8031,7 @@ export const MODELS = {
|
|
|
7997
8031
|
cacheRead: 0.024999999999999998,
|
|
7998
8032
|
cacheWrite: 0.08333333333333334,
|
|
7999
8033
|
},
|
|
8000
|
-
contextWindow:
|
|
8034
|
+
contextWindow: 1048576,
|
|
8001
8035
|
maxTokens: 8192,
|
|
8002
8036
|
},
|
|
8003
8037
|
"google/gemini-2.0-flash-lite-001": {
|
|
@@ -8289,6 +8323,23 @@ export const MODELS = {
|
|
|
8289
8323
|
contextWindow: 262144,
|
|
8290
8324
|
maxTokens: 32768,
|
|
8291
8325
|
},
|
|
8326
|
+
"ibm-granite/granite-4.1-8b": {
|
|
8327
|
+
id: "ibm-granite/granite-4.1-8b",
|
|
8328
|
+
name: "IBM: Granite 4.1 8B",
|
|
8329
|
+
api: "openai-completions",
|
|
8330
|
+
provider: "openrouter",
|
|
8331
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
8332
|
+
reasoning: false,
|
|
8333
|
+
input: ["text"],
|
|
8334
|
+
cost: {
|
|
8335
|
+
input: 0.049999999999999996,
|
|
8336
|
+
output: 0.09999999999999999,
|
|
8337
|
+
cacheRead: 0.049999999999999996,
|
|
8338
|
+
cacheWrite: 0,
|
|
8339
|
+
},
|
|
8340
|
+
contextWindow: 131072,
|
|
8341
|
+
maxTokens: 131072,
|
|
8342
|
+
},
|
|
8292
8343
|
"inception/mercury-2": {
|
|
8293
8344
|
id: "inception/mercury-2",
|
|
8294
8345
|
name: "Inception: Mercury 2",
|
|
@@ -8323,18 +8374,18 @@ export const MODELS = {
|
|
|
8323
8374
|
contextWindow: 262144,
|
|
8324
8375
|
maxTokens: 32768,
|
|
8325
8376
|
},
|
|
8326
|
-
"inclusionai/ling-2.6-flash
|
|
8327
|
-
id: "inclusionai/ling-2.6-flash
|
|
8328
|
-
name: "inclusionAI: Ling-2.6-flash
|
|
8377
|
+
"inclusionai/ling-2.6-flash": {
|
|
8378
|
+
id: "inclusionai/ling-2.6-flash",
|
|
8379
|
+
name: "inclusionAI: Ling-2.6-flash",
|
|
8329
8380
|
api: "openai-completions",
|
|
8330
8381
|
provider: "openrouter",
|
|
8331
8382
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
8332
8383
|
reasoning: false,
|
|
8333
8384
|
input: ["text"],
|
|
8334
8385
|
cost: {
|
|
8335
|
-
input: 0,
|
|
8336
|
-
output: 0,
|
|
8337
|
-
cacheRead: 0,
|
|
8386
|
+
input: 0.08,
|
|
8387
|
+
output: 0.24,
|
|
8388
|
+
cacheRead: 0.016,
|
|
8338
8389
|
cacheWrite: 0,
|
|
8339
8390
|
},
|
|
8340
8391
|
contextWindow: 262144,
|
|
@@ -8792,12 +8843,12 @@ export const MODELS = {
|
|
|
8792
8843
|
input: ["text"],
|
|
8793
8844
|
cost: {
|
|
8794
8845
|
input: 0.02,
|
|
8795
|
-
output: 0.
|
|
8846
|
+
output: 0.03,
|
|
8796
8847
|
cacheRead: 0,
|
|
8797
8848
|
cacheWrite: 0,
|
|
8798
8849
|
},
|
|
8799
8850
|
contextWindow: 131072,
|
|
8800
|
-
maxTokens:
|
|
8851
|
+
maxTokens: 4096,
|
|
8801
8852
|
},
|
|
8802
8853
|
"mistralai/mistral-saba": {
|
|
8803
8854
|
id: "mistralai/mistral-saba",
|
|
@@ -8850,23 +8901,6 @@ export const MODELS = {
|
|
|
8850
8901
|
contextWindow: 128000,
|
|
8851
8902
|
maxTokens: 16384,
|
|
8852
8903
|
},
|
|
8853
|
-
"mistralai/mistral-small-creative": {
|
|
8854
|
-
id: "mistralai/mistral-small-creative",
|
|
8855
|
-
name: "Mistral: Mistral Small Creative",
|
|
8856
|
-
api: "openai-completions",
|
|
8857
|
-
provider: "openrouter",
|
|
8858
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
8859
|
-
reasoning: false,
|
|
8860
|
-
input: ["text"],
|
|
8861
|
-
cost: {
|
|
8862
|
-
input: 0.09999999999999999,
|
|
8863
|
-
output: 0.3,
|
|
8864
|
-
cacheRead: 0.01,
|
|
8865
|
-
cacheWrite: 0,
|
|
8866
|
-
},
|
|
8867
|
-
contextWindow: 32768,
|
|
8868
|
-
maxTokens: 4096,
|
|
8869
|
-
},
|
|
8870
8904
|
"mistralai/mixtral-8x22b-instruct": {
|
|
8871
8905
|
id: "mistralai/mixtral-8x22b-instruct",
|
|
8872
8906
|
name: "Mistral: Mixtral 8x22B Instruct",
|
|
@@ -9012,13 +9046,13 @@ export const MODELS = {
|
|
|
9012
9046
|
reasoning: true,
|
|
9013
9047
|
input: ["text", "image"],
|
|
9014
9048
|
cost: {
|
|
9015
|
-
input: 0.
|
|
9016
|
-
output:
|
|
9017
|
-
cacheRead: 0.
|
|
9049
|
+
input: 0.74,
|
|
9050
|
+
output: 3.49,
|
|
9051
|
+
cacheRead: 0.14,
|
|
9018
9052
|
cacheWrite: 0,
|
|
9019
9053
|
},
|
|
9020
|
-
contextWindow:
|
|
9021
|
-
maxTokens:
|
|
9054
|
+
contextWindow: 262142,
|
|
9055
|
+
maxTokens: 262142,
|
|
9022
9056
|
},
|
|
9023
9057
|
"nex-agi/deepseek-v3.1-nex-n1": {
|
|
9024
9058
|
id: "nex-agi/deepseek-v3.1-nex-n1",
|
|
@@ -9105,6 +9139,23 @@ export const MODELS = {
|
|
|
9105
9139
|
contextWindow: 256000,
|
|
9106
9140
|
maxTokens: 4096,
|
|
9107
9141
|
},
|
|
9142
|
+
"nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free": {
|
|
9143
|
+
id: "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free",
|
|
9144
|
+
name: "NVIDIA: Nemotron 3 Nano Omni (free)",
|
|
9145
|
+
api: "openai-completions",
|
|
9146
|
+
provider: "openrouter",
|
|
9147
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
9148
|
+
reasoning: true,
|
|
9149
|
+
input: ["text", "image"],
|
|
9150
|
+
cost: {
|
|
9151
|
+
input: 0,
|
|
9152
|
+
output: 0,
|
|
9153
|
+
cacheRead: 0,
|
|
9154
|
+
cacheWrite: 0,
|
|
9155
|
+
},
|
|
9156
|
+
contextWindow: 256000,
|
|
9157
|
+
maxTokens: 65536,
|
|
9158
|
+
},
|
|
9108
9159
|
"nvidia/nemotron-3-super-120b-a12b": {
|
|
9109
9160
|
id: "nvidia/nemotron-3-super-120b-a12b",
|
|
9110
9161
|
name: "NVIDIA: Nemotron 3 Super",
|
|
@@ -9914,12 +9965,12 @@ export const MODELS = {
|
|
|
9914
9965
|
input: ["text"],
|
|
9915
9966
|
cost: {
|
|
9916
9967
|
input: 0.039,
|
|
9917
|
-
output: 0.
|
|
9968
|
+
output: 0.18,
|
|
9918
9969
|
cacheRead: 0,
|
|
9919
9970
|
cacheWrite: 0,
|
|
9920
9971
|
},
|
|
9921
9972
|
contextWindow: 131072,
|
|
9922
|
-
maxTokens:
|
|
9973
|
+
maxTokens: 4096,
|
|
9923
9974
|
},
|
|
9924
9975
|
"openai/gpt-oss-120b:free": {
|
|
9925
9976
|
id: "openai/gpt-oss-120b:free",
|
|
@@ -10176,6 +10227,57 @@ export const MODELS = {
|
|
|
10176
10227
|
contextWindow: 200000,
|
|
10177
10228
|
maxTokens: 4096,
|
|
10178
10229
|
},
|
|
10230
|
+
"openrouter/owl-alpha": {
|
|
10231
|
+
id: "openrouter/owl-alpha",
|
|
10232
|
+
name: "Owl Alpha",
|
|
10233
|
+
api: "openai-completions",
|
|
10234
|
+
provider: "openrouter",
|
|
10235
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
10236
|
+
reasoning: false,
|
|
10237
|
+
input: ["text"],
|
|
10238
|
+
cost: {
|
|
10239
|
+
input: 0,
|
|
10240
|
+
output: 0,
|
|
10241
|
+
cacheRead: 0,
|
|
10242
|
+
cacheWrite: 0,
|
|
10243
|
+
},
|
|
10244
|
+
contextWindow: 1048756,
|
|
10245
|
+
maxTokens: 262144,
|
|
10246
|
+
},
|
|
10247
|
+
"poolside/laguna-m.1:free": {
|
|
10248
|
+
id: "poolside/laguna-m.1:free",
|
|
10249
|
+
name: "Poolside: Laguna M.1 (free)",
|
|
10250
|
+
api: "openai-completions",
|
|
10251
|
+
provider: "openrouter",
|
|
10252
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
10253
|
+
reasoning: true,
|
|
10254
|
+
input: ["text"],
|
|
10255
|
+
cost: {
|
|
10256
|
+
input: 0,
|
|
10257
|
+
output: 0,
|
|
10258
|
+
cacheRead: 0,
|
|
10259
|
+
cacheWrite: 0,
|
|
10260
|
+
},
|
|
10261
|
+
contextWindow: 131072,
|
|
10262
|
+
maxTokens: 8192,
|
|
10263
|
+
},
|
|
10264
|
+
"poolside/laguna-xs.2:free": {
|
|
10265
|
+
id: "poolside/laguna-xs.2:free",
|
|
10266
|
+
name: "Poolside: Laguna XS.2 (free)",
|
|
10267
|
+
api: "openai-completions",
|
|
10268
|
+
provider: "openrouter",
|
|
10269
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
10270
|
+
reasoning: true,
|
|
10271
|
+
input: ["text"],
|
|
10272
|
+
cost: {
|
|
10273
|
+
input: 0,
|
|
10274
|
+
output: 0,
|
|
10275
|
+
cacheRead: 0,
|
|
10276
|
+
cacheWrite: 0,
|
|
10277
|
+
},
|
|
10278
|
+
contextWindow: 131072,
|
|
10279
|
+
maxTokens: 8192,
|
|
10280
|
+
},
|
|
10179
10281
|
"prime-intellect/intellect-3": {
|
|
10180
10282
|
id: "prime-intellect/intellect-3",
|
|
10181
10283
|
name: "Prime Intellect: INTELLECT-3",
|
|
@@ -10406,13 +10508,13 @@ export const MODELS = {
|
|
|
10406
10508
|
reasoning: true,
|
|
10407
10509
|
input: ["text"],
|
|
10408
10510
|
cost: {
|
|
10409
|
-
input: 0.
|
|
10410
|
-
output: 0.
|
|
10511
|
+
input: 0.09,
|
|
10512
|
+
output: 0.44999999999999996,
|
|
10411
10513
|
cacheRead: 0,
|
|
10412
10514
|
cacheWrite: 0,
|
|
10413
10515
|
},
|
|
10414
10516
|
contextWindow: 40960,
|
|
10415
|
-
maxTokens:
|
|
10517
|
+
maxTokens: 20000,
|
|
10416
10518
|
},
|
|
10417
10519
|
"qwen/qwen3-30b-a3b-instruct-2507": {
|
|
10418
10520
|
id: "qwen/qwen3-30b-a3b-instruct-2507",
|
|
@@ -10542,9 +10644,9 @@ export const MODELS = {
|
|
|
10542
10644
|
reasoning: false,
|
|
10543
10645
|
input: ["text"],
|
|
10544
10646
|
cost: {
|
|
10545
|
-
input: 0.
|
|
10647
|
+
input: 0.12,
|
|
10546
10648
|
output: 0.7999999999999999,
|
|
10547
|
-
cacheRead: 0.
|
|
10649
|
+
cacheRead: 0.07,
|
|
10548
10650
|
cacheWrite: 0,
|
|
10549
10651
|
},
|
|
10550
10652
|
contextWindow: 262144,
|
|
@@ -10933,13 +11035,13 @@ export const MODELS = {
|
|
|
10933
11035
|
reasoning: true,
|
|
10934
11036
|
input: ["text", "image"],
|
|
10935
11037
|
cost: {
|
|
10936
|
-
input: 0.
|
|
10937
|
-
output:
|
|
10938
|
-
cacheRead: 0
|
|
11038
|
+
input: 0.32,
|
|
11039
|
+
output: 3.1999999999999997,
|
|
11040
|
+
cacheRead: 0,
|
|
10939
11041
|
cacheWrite: 0,
|
|
10940
11042
|
},
|
|
10941
11043
|
contextWindow: 262144,
|
|
10942
|
-
maxTokens:
|
|
11044
|
+
maxTokens: 81920,
|
|
10943
11045
|
},
|
|
10944
11046
|
"qwen/qwen3.6-flash": {
|
|
10945
11047
|
id: "qwen/qwen3.6-flash",
|
|
@@ -10967,10 +11069,10 @@ export const MODELS = {
|
|
|
10967
11069
|
reasoning: true,
|
|
10968
11070
|
input: ["text"],
|
|
10969
11071
|
cost: {
|
|
10970
|
-
input: 1.
|
|
10971
|
-
output:
|
|
11072
|
+
input: 1.04,
|
|
11073
|
+
output: 6.24,
|
|
10972
11074
|
cacheRead: 0,
|
|
10973
|
-
cacheWrite: 1.
|
|
11075
|
+
cacheWrite: 1.3,
|
|
10974
11076
|
},
|
|
10975
11077
|
contextWindow: 262144,
|
|
10976
11078
|
maxTokens: 65536,
|
|
@@ -10992,23 +11094,6 @@ export const MODELS = {
|
|
|
10992
11094
|
contextWindow: 1000000,
|
|
10993
11095
|
maxTokens: 65536,
|
|
10994
11096
|
},
|
|
10995
|
-
"qwen/qwq-32b": {
|
|
10996
|
-
id: "qwen/qwq-32b",
|
|
10997
|
-
name: "Qwen: QwQ 32B",
|
|
10998
|
-
api: "openai-completions",
|
|
10999
|
-
provider: "openrouter",
|
|
11000
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
11001
|
-
reasoning: true,
|
|
11002
|
-
input: ["text"],
|
|
11003
|
-
cost: {
|
|
11004
|
-
input: 0.15,
|
|
11005
|
-
output: 0.58,
|
|
11006
|
-
cacheRead: 0,
|
|
11007
|
-
cacheWrite: 0,
|
|
11008
|
-
},
|
|
11009
|
-
contextWindow: 131072,
|
|
11010
|
-
maxTokens: 131072,
|
|
11011
|
-
},
|
|
11012
11097
|
"rekaai/reka-edge": {
|
|
11013
11098
|
id: "rekaai/reka-edge",
|
|
11014
11099
|
name: "Reka Edge",
|
|
@@ -11307,14 +11392,31 @@ export const MODELS = {
|
|
|
11307
11392
|
reasoning: true,
|
|
11308
11393
|
input: ["text", "image"],
|
|
11309
11394
|
cost: {
|
|
11310
|
-
input:
|
|
11311
|
-
output:
|
|
11395
|
+
input: 1.25,
|
|
11396
|
+
output: 2.5,
|
|
11312
11397
|
cacheRead: 0.19999999999999998,
|
|
11313
11398
|
cacheWrite: 0,
|
|
11314
11399
|
},
|
|
11315
11400
|
contextWindow: 2000000,
|
|
11316
11401
|
maxTokens: 4096,
|
|
11317
11402
|
},
|
|
11403
|
+
"x-ai/grok-4.3": {
|
|
11404
|
+
id: "x-ai/grok-4.3",
|
|
11405
|
+
name: "xAI: Grok 4.3",
|
|
11406
|
+
api: "openai-completions",
|
|
11407
|
+
provider: "openrouter",
|
|
11408
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
11409
|
+
reasoning: true,
|
|
11410
|
+
input: ["text", "image"],
|
|
11411
|
+
cost: {
|
|
11412
|
+
input: 1.25,
|
|
11413
|
+
output: 2.5,
|
|
11414
|
+
cacheRead: 0.19999999999999998,
|
|
11415
|
+
cacheWrite: 0,
|
|
11416
|
+
},
|
|
11417
|
+
contextWindow: 1000000,
|
|
11418
|
+
maxTokens: 4096,
|
|
11419
|
+
},
|
|
11318
11420
|
"x-ai/grok-code-fast-1": {
|
|
11319
11421
|
id: "x-ai/grok-code-fast-1",
|
|
11320
11422
|
name: "xAI: Grok Code Fast 1",
|
|
@@ -11732,13 +11834,13 @@ export const MODELS = {
|
|
|
11732
11834
|
reasoning: true,
|
|
11733
11835
|
input: ["text", "image"],
|
|
11734
11836
|
cost: {
|
|
11735
|
-
input: 0.
|
|
11736
|
-
output:
|
|
11737
|
-
cacheRead: 0.
|
|
11837
|
+
input: 0.74,
|
|
11838
|
+
output: 3.49,
|
|
11839
|
+
cacheRead: 0.14,
|
|
11738
11840
|
cacheWrite: 0,
|
|
11739
11841
|
},
|
|
11740
|
-
contextWindow:
|
|
11741
|
-
maxTokens:
|
|
11842
|
+
contextWindow: 262142,
|
|
11843
|
+
maxTokens: 262142,
|
|
11742
11844
|
},
|
|
11743
11845
|
"~openai/gpt-latest": {
|
|
11744
11846
|
id: "~openai/gpt-latest",
|
|
@@ -11863,20 +11965,20 @@ export const MODELS = {
|
|
|
11863
11965
|
},
|
|
11864
11966
|
"alibaba/qwen3-235b-a22b-thinking": {
|
|
11865
11967
|
id: "alibaba/qwen3-235b-a22b-thinking",
|
|
11866
|
-
name: "Qwen3 235B A22B Thinking
|
|
11968
|
+
name: "Qwen3 VL 235B A22B Thinking",
|
|
11867
11969
|
api: "anthropic-messages",
|
|
11868
11970
|
provider: "vercel-ai-gateway",
|
|
11869
11971
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
11870
11972
|
reasoning: true,
|
|
11871
11973
|
input: ["text", "image"],
|
|
11872
11974
|
cost: {
|
|
11873
|
-
input: 0.
|
|
11874
|
-
output:
|
|
11875
|
-
cacheRead: 0
|
|
11975
|
+
input: 0.39999999999999997,
|
|
11976
|
+
output: 4,
|
|
11977
|
+
cacheRead: 0,
|
|
11876
11978
|
cacheWrite: 0,
|
|
11877
11979
|
},
|
|
11878
|
-
contextWindow:
|
|
11879
|
-
maxTokens:
|
|
11980
|
+
contextWindow: 131072,
|
|
11981
|
+
maxTokens: 32768,
|
|
11880
11982
|
},
|
|
11881
11983
|
"alibaba/qwen3-coder": {
|
|
11882
11984
|
id: "alibaba/qwen3-coder",
|
|
@@ -12048,6 +12150,23 @@ export const MODELS = {
|
|
|
12048
12150
|
contextWindow: 1000000,
|
|
12049
12151
|
maxTokens: 64000,
|
|
12050
12152
|
},
|
|
12153
|
+
"alibaba/qwen3.6-27b": {
|
|
12154
|
+
id: "alibaba/qwen3.6-27b",
|
|
12155
|
+
name: "Qwen 3.6 27B",
|
|
12156
|
+
api: "anthropic-messages",
|
|
12157
|
+
provider: "vercel-ai-gateway",
|
|
12158
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12159
|
+
reasoning: true,
|
|
12160
|
+
input: ["text", "image"],
|
|
12161
|
+
cost: {
|
|
12162
|
+
input: 0.6,
|
|
12163
|
+
output: 3.5999999999999996,
|
|
12164
|
+
cacheRead: 0,
|
|
12165
|
+
cacheWrite: 0,
|
|
12166
|
+
},
|
|
12167
|
+
contextWindow: 256000,
|
|
12168
|
+
maxTokens: 256000,
|
|
12169
|
+
},
|
|
12051
12170
|
"alibaba/qwen3.6-plus": {
|
|
12052
12171
|
id: "alibaba/qwen3.6-plus",
|
|
12053
12172
|
name: "Qwen 3.6 Plus",
|
|
@@ -12428,16 +12547,16 @@ export const MODELS = {
|
|
|
12428
12547
|
api: "anthropic-messages",
|
|
12429
12548
|
provider: "vercel-ai-gateway",
|
|
12430
12549
|
baseUrl: "https://ai-gateway.vercel.sh",
|
|
12431
|
-
reasoning:
|
|
12550
|
+
reasoning: false,
|
|
12432
12551
|
input: ["text"],
|
|
12433
12552
|
cost: {
|
|
12434
|
-
input: 0.
|
|
12435
|
-
output:
|
|
12436
|
-
cacheRead: 0
|
|
12553
|
+
input: 0.62,
|
|
12554
|
+
output: 1.85,
|
|
12555
|
+
cacheRead: 0,
|
|
12437
12556
|
cacheWrite: 0,
|
|
12438
12557
|
},
|
|
12439
12558
|
contextWindow: 128000,
|
|
12440
|
-
maxTokens:
|
|
12559
|
+
maxTokens: 8000,
|
|
12441
12560
|
},
|
|
12442
12561
|
"deepseek/deepseek-v4-flash": {
|
|
12443
12562
|
id: "deepseek/deepseek-v4-flash",
|
|
@@ -12450,7 +12569,7 @@ export const MODELS = {
|
|
|
12450
12569
|
cost: {
|
|
12451
12570
|
input: 0.14,
|
|
12452
12571
|
output: 0.28,
|
|
12453
|
-
cacheRead: 0.
|
|
12572
|
+
cacheRead: 0.0028,
|
|
12454
12573
|
cacheWrite: 0,
|
|
12455
12574
|
},
|
|
12456
12575
|
contextWindow: 1000000,
|
|
@@ -13952,23 +14071,6 @@ export const MODELS = {
|
|
|
13952
14071
|
contextWindow: 200000,
|
|
13953
14072
|
maxTokens: 8000,
|
|
13954
14073
|
},
|
|
13955
|
-
"prime-intellect/intellect-3": {
|
|
13956
|
-
id: "prime-intellect/intellect-3",
|
|
13957
|
-
name: "INTELLECT 3",
|
|
13958
|
-
api: "anthropic-messages",
|
|
13959
|
-
provider: "vercel-ai-gateway",
|
|
13960
|
-
baseUrl: "https://ai-gateway.vercel.sh",
|
|
13961
|
-
reasoning: true,
|
|
13962
|
-
input: ["text"],
|
|
13963
|
-
cost: {
|
|
13964
|
-
input: 0.19999999999999998,
|
|
13965
|
-
output: 1.1,
|
|
13966
|
-
cacheRead: 0,
|
|
13967
|
-
cacheWrite: 0,
|
|
13968
|
-
},
|
|
13969
|
-
contextWindow: 131072,
|
|
13970
|
-
maxTokens: 131072,
|
|
13971
|
-
},
|
|
13972
14074
|
"xai/grok-3": {
|
|
13973
14075
|
id: "xai/grok-3",
|
|
13974
14076
|
name: "Grok 3 Beta",
|
|
@@ -14224,6 +14326,23 @@ export const MODELS = {
|
|
|
14224
14326
|
contextWindow: 2000000,
|
|
14225
14327
|
maxTokens: 2000000,
|
|
14226
14328
|
},
|
|
14329
|
+
"xai/grok-4.3": {
|
|
14330
|
+
id: "xai/grok-4.3",
|
|
14331
|
+
name: "Grok 4.3",
|
|
14332
|
+
api: "anthropic-messages",
|
|
14333
|
+
provider: "vercel-ai-gateway",
|
|
14334
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14335
|
+
reasoning: true,
|
|
14336
|
+
input: ["text", "image"],
|
|
14337
|
+
cost: {
|
|
14338
|
+
input: 1.25,
|
|
14339
|
+
output: 2.5,
|
|
14340
|
+
cacheRead: 0.19999999999999998,
|
|
14341
|
+
cacheWrite: 0,
|
|
14342
|
+
},
|
|
14343
|
+
contextWindow: 1000000,
|
|
14344
|
+
maxTokens: 1000000,
|
|
14345
|
+
},
|
|
14227
14346
|
"xai/grok-code-fast-1": {
|
|
14228
14347
|
id: "xai/grok-code-fast-1",
|
|
14229
14348
|
name: "Grok Code Fast 1",
|
|
@@ -14275,6 +14394,40 @@ export const MODELS = {
|
|
|
14275
14394
|
contextWindow: 1000000,
|
|
14276
14395
|
maxTokens: 128000,
|
|
14277
14396
|
},
|
|
14397
|
+
"xiaomi/mimo-v2.5": {
|
|
14398
|
+
id: "xiaomi/mimo-v2.5",
|
|
14399
|
+
name: "MiMo M2.5",
|
|
14400
|
+
api: "anthropic-messages",
|
|
14401
|
+
provider: "vercel-ai-gateway",
|
|
14402
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14403
|
+
reasoning: true,
|
|
14404
|
+
input: ["text", "image"],
|
|
14405
|
+
cost: {
|
|
14406
|
+
input: 0.39999999999999997,
|
|
14407
|
+
output: 2,
|
|
14408
|
+
cacheRead: 0.08,
|
|
14409
|
+
cacheWrite: 0,
|
|
14410
|
+
},
|
|
14411
|
+
contextWindow: 1050000,
|
|
14412
|
+
maxTokens: 131100,
|
|
14413
|
+
},
|
|
14414
|
+
"xiaomi/mimo-v2.5-pro": {
|
|
14415
|
+
id: "xiaomi/mimo-v2.5-pro",
|
|
14416
|
+
name: "MiMo V2.5 Pro",
|
|
14417
|
+
api: "anthropic-messages",
|
|
14418
|
+
provider: "vercel-ai-gateway",
|
|
14419
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14420
|
+
reasoning: true,
|
|
14421
|
+
input: ["text", "image"],
|
|
14422
|
+
cost: {
|
|
14423
|
+
input: 1,
|
|
14424
|
+
output: 3,
|
|
14425
|
+
cacheRead: 0.19999999999999998,
|
|
14426
|
+
cacheWrite: 0,
|
|
14427
|
+
},
|
|
14428
|
+
contextWindow: 1050000,
|
|
14429
|
+
maxTokens: 131000,
|
|
14430
|
+
},
|
|
14278
14431
|
"zai/glm-4.5": {
|
|
14279
14432
|
id: "zai/glm-4.5",
|
|
14280
14433
|
name: "GLM-4.5",
|
|
@@ -14855,6 +15008,23 @@ export const MODELS = {
|
|
|
14855
15008
|
contextWindow: 2000000,
|
|
14856
15009
|
maxTokens: 30000,
|
|
14857
15010
|
},
|
|
15011
|
+
"grok-4.3": {
|
|
15012
|
+
id: "grok-4.3",
|
|
15013
|
+
name: "Grok 4.3",
|
|
15014
|
+
api: "openai-completions",
|
|
15015
|
+
provider: "xai",
|
|
15016
|
+
baseUrl: "https://api.x.ai/v1",
|
|
15017
|
+
reasoning: true,
|
|
15018
|
+
input: ["text", "image"],
|
|
15019
|
+
cost: {
|
|
15020
|
+
input: 1.25,
|
|
15021
|
+
output: 2.5,
|
|
15022
|
+
cacheRead: 0.2,
|
|
15023
|
+
cacheWrite: 0,
|
|
15024
|
+
},
|
|
15025
|
+
contextWindow: 1000000,
|
|
15026
|
+
maxTokens: 30000,
|
|
15027
|
+
},
|
|
14858
15028
|
"grok-beta": {
|
|
14859
15029
|
id: "grok-beta",
|
|
14860
15030
|
name: "Grok Beta",
|
|
@@ -14980,6 +15150,24 @@ export const MODELS = {
|
|
|
14980
15150
|
contextWindow: 200000,
|
|
14981
15151
|
maxTokens: 131072,
|
|
14982
15152
|
},
|
|
15153
|
+
"glm-5v-turbo": {
|
|
15154
|
+
id: "glm-5v-turbo",
|
|
15155
|
+
name: "GLM-5V-Turbo",
|
|
15156
|
+
api: "openai-completions",
|
|
15157
|
+
provider: "zai",
|
|
15158
|
+
baseUrl: "https://api.z.ai/api/coding/paas/v4",
|
|
15159
|
+
compat: { "supportsDeveloperRole": false, "thinkingFormat": "zai", "zaiToolStream": true },
|
|
15160
|
+
reasoning: true,
|
|
15161
|
+
input: ["text", "image"],
|
|
15162
|
+
cost: {
|
|
15163
|
+
input: 0,
|
|
15164
|
+
output: 0,
|
|
15165
|
+
cacheRead: 0,
|
|
15166
|
+
cacheWrite: 0,
|
|
15167
|
+
},
|
|
15168
|
+
contextWindow: 200000,
|
|
15169
|
+
maxTokens: 131072,
|
|
15170
|
+
},
|
|
14983
15171
|
},
|
|
14984
15172
|
};
|
|
14985
15173
|
//# sourceMappingURL=models.generated.js.map
|