@llmgateway/models 1.42.0 → 1.43.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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/models/alibaba.d.ts +423 -58
- package/dist/models/alibaba.js +530 -88
- package/dist/models/alibaba.js.map +1 -1
- package/dist/models/deepseek.d.ts +40 -5
- package/dist/models/deepseek.js +43 -5
- package/dist/models/deepseek.js.map +1 -1
- package/dist/models/google.d.ts +87 -0
- package/dist/models/google.js +89 -0
- package/dist/models/google.js.map +1 -1
- package/dist/models/moonshot.d.ts +51 -0
- package/dist/models/moonshot.js +48 -0
- package/dist/models/moonshot.js.map +1 -1
- package/dist/models/openai.d.ts +88 -0
- package/dist/models/openai.js +92 -0
- package/dist/models/openai.js.map +1 -1
- package/dist/models/zai.d.ts +87 -0
- package/dist/models/zai.js +93 -0
- package/dist/models/zai.js.map +1 -1
- package/dist/models.d.ts +790 -63
- package/dist/models.js.map +1 -1
- package/dist/provider.d.ts +2 -0
- package/dist/provider.js +23 -0
- package/dist/provider.js.map +1 -1
- package/dist/providers.d.ts +51 -0
- package/dist/providers.js +37 -0
- package/dist/providers.js.map +1 -1
- package/dist/region-helpers.d.ts +4 -0
- package/dist/region-helpers.js +23 -0
- package/dist/region-helpers.js.map +1 -0
- package/dist/types.d.ts +4 -0
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/models.d.ts
CHANGED
|
@@ -8,6 +8,18 @@ export interface PricingTier {
|
|
|
8
8
|
outputPrice: number;
|
|
9
9
|
cachedInputPrice?: number;
|
|
10
10
|
}
|
|
11
|
+
export interface ProviderRegion {
|
|
12
|
+
id: string;
|
|
13
|
+
inputPrice?: number;
|
|
14
|
+
outputPrice?: number;
|
|
15
|
+
cachedInputPrice?: number;
|
|
16
|
+
pricingTiers?: PricingTier[];
|
|
17
|
+
discount?: number;
|
|
18
|
+
requestPrice?: number;
|
|
19
|
+
webSearchPrice?: number;
|
|
20
|
+
contextSize?: number;
|
|
21
|
+
maxOutput?: number;
|
|
22
|
+
}
|
|
11
23
|
export interface ProviderModelMapping {
|
|
12
24
|
providerId: (typeof providers)[number]["id"];
|
|
13
25
|
modelName: string;
|
|
@@ -43,6 +55,8 @@ export interface ProviderModelMapping {
|
|
|
43
55
|
deprecatedAt?: Date;
|
|
44
56
|
deactivatedAt?: Date;
|
|
45
57
|
imageGenerations?: boolean;
|
|
58
|
+
region?: string;
|
|
59
|
+
regions?: ProviderRegion[];
|
|
46
60
|
videoGenerations?: boolean;
|
|
47
61
|
supportedVideoSizes?: string[];
|
|
48
62
|
supportedVideoDurationsSeconds?: number[];
|
|
@@ -1302,6 +1316,27 @@ export declare const models: [{
|
|
|
1302
1316
|
readonly supportsResponsesApi: true;
|
|
1303
1317
|
readonly jsonOutputSchema: true;
|
|
1304
1318
|
readonly jsonOutput: true;
|
|
1319
|
+
}, {
|
|
1320
|
+
readonly test: "skip";
|
|
1321
|
+
readonly providerId: "azure";
|
|
1322
|
+
readonly modelName: "gpt-5.4-mini";
|
|
1323
|
+
readonly inputPrice: number;
|
|
1324
|
+
readonly outputPrice: number;
|
|
1325
|
+
readonly cachedInputPrice: number;
|
|
1326
|
+
readonly discount: 0.3;
|
|
1327
|
+
readonly requestPrice: 0;
|
|
1328
|
+
readonly contextSize: 400000;
|
|
1329
|
+
readonly maxOutput: 128000;
|
|
1330
|
+
readonly streaming: true;
|
|
1331
|
+
readonly vision: true;
|
|
1332
|
+
readonly tools: true;
|
|
1333
|
+
readonly webSearch: true;
|
|
1334
|
+
readonly webSearchPrice: 0.01;
|
|
1335
|
+
readonly reasoning: true;
|
|
1336
|
+
readonly reasoningOutput: "omit";
|
|
1337
|
+
readonly supportsResponsesApi: true;
|
|
1338
|
+
readonly jsonOutputSchema: true;
|
|
1339
|
+
readonly jsonOutput: true;
|
|
1305
1340
|
}];
|
|
1306
1341
|
}, {
|
|
1307
1342
|
readonly id: "gpt-5.4-nano";
|
|
@@ -1328,6 +1363,27 @@ export declare const models: [{
|
|
|
1328
1363
|
readonly supportsResponsesApi: true;
|
|
1329
1364
|
readonly jsonOutputSchema: true;
|
|
1330
1365
|
readonly jsonOutput: true;
|
|
1366
|
+
}, {
|
|
1367
|
+
readonly test: "skip";
|
|
1368
|
+
readonly providerId: "azure";
|
|
1369
|
+
readonly modelName: "gpt-5.4-nano";
|
|
1370
|
+
readonly inputPrice: number;
|
|
1371
|
+
readonly outputPrice: number;
|
|
1372
|
+
readonly cachedInputPrice: number;
|
|
1373
|
+
readonly discount: 0.3;
|
|
1374
|
+
readonly requestPrice: 0;
|
|
1375
|
+
readonly contextSize: 400000;
|
|
1376
|
+
readonly maxOutput: 128000;
|
|
1377
|
+
readonly streaming: true;
|
|
1378
|
+
readonly vision: true;
|
|
1379
|
+
readonly tools: true;
|
|
1380
|
+
readonly webSearch: true;
|
|
1381
|
+
readonly webSearchPrice: 0.01;
|
|
1382
|
+
readonly reasoning: true;
|
|
1383
|
+
readonly reasoningOutput: "omit";
|
|
1384
|
+
readonly supportsResponsesApi: true;
|
|
1385
|
+
readonly jsonOutputSchema: true;
|
|
1386
|
+
readonly jsonOutput: true;
|
|
1331
1387
|
}];
|
|
1332
1388
|
}, {
|
|
1333
1389
|
readonly id: "gpt-5.2-codex";
|
|
@@ -1473,6 +1529,7 @@ export declare const models: [{
|
|
|
1473
1529
|
readonly providers: [{
|
|
1474
1530
|
readonly providerId: "openai";
|
|
1475
1531
|
readonly modelName: "sora-2";
|
|
1532
|
+
readonly deactivatedAt: Date;
|
|
1476
1533
|
readonly inputPrice: undefined;
|
|
1477
1534
|
readonly outputPrice: undefined;
|
|
1478
1535
|
readonly requestPrice: undefined;
|
|
@@ -1490,9 +1547,31 @@ export declare const models: [{
|
|
|
1490
1547
|
readonly videoGenerations: true;
|
|
1491
1548
|
readonly supportsVideoAudio: true;
|
|
1492
1549
|
readonly supportsVideoWithoutAudio: false;
|
|
1550
|
+
}, {
|
|
1551
|
+
readonly providerId: "obsidian";
|
|
1552
|
+
readonly modelName: "sora-2";
|
|
1553
|
+
readonly deactivatedAt: Date;
|
|
1554
|
+
readonly inputPrice: undefined;
|
|
1555
|
+
readonly outputPrice: undefined;
|
|
1556
|
+
readonly requestPrice: undefined;
|
|
1557
|
+
readonly perSecondPrice: {
|
|
1558
|
+
readonly "720p": 0.08;
|
|
1559
|
+
};
|
|
1560
|
+
readonly supportedVideoSizes: ["1280x720", "720x1280"];
|
|
1561
|
+
readonly supportedVideoDurationsSeconds: [10, 15];
|
|
1562
|
+
readonly contextSize: 32768;
|
|
1563
|
+
readonly maxOutput: 1;
|
|
1564
|
+
readonly streaming: false;
|
|
1565
|
+
readonly tools: false;
|
|
1566
|
+
readonly jsonOutput: false;
|
|
1567
|
+
readonly jsonOutputSchema: false;
|
|
1568
|
+
readonly videoGenerations: true;
|
|
1569
|
+
readonly supportsVideoAudio: true;
|
|
1570
|
+
readonly supportsVideoWithoutAudio: false;
|
|
1493
1571
|
}, {
|
|
1494
1572
|
readonly providerId: "avalanche";
|
|
1495
1573
|
readonly modelName: "sora-2";
|
|
1574
|
+
readonly deactivatedAt: Date;
|
|
1496
1575
|
readonly inputPrice: undefined;
|
|
1497
1576
|
readonly outputPrice: undefined;
|
|
1498
1577
|
readonly requestPrice: undefined;
|
|
@@ -1523,6 +1602,7 @@ export declare const models: [{
|
|
|
1523
1602
|
readonly providers: [{
|
|
1524
1603
|
readonly providerId: "openai";
|
|
1525
1604
|
readonly modelName: "sora-2-pro";
|
|
1605
|
+
readonly deactivatedAt: Date;
|
|
1526
1606
|
readonly inputPrice: undefined;
|
|
1527
1607
|
readonly outputPrice: undefined;
|
|
1528
1608
|
readonly requestPrice: undefined;
|
|
@@ -1542,9 +1622,31 @@ export declare const models: [{
|
|
|
1542
1622
|
readonly videoGenerations: true;
|
|
1543
1623
|
readonly supportsVideoAudio: true;
|
|
1544
1624
|
readonly supportsVideoWithoutAudio: false;
|
|
1625
|
+
}, {
|
|
1626
|
+
readonly providerId: "obsidian";
|
|
1627
|
+
readonly modelName: "sora-2-pro";
|
|
1628
|
+
readonly deactivatedAt: Date;
|
|
1629
|
+
readonly inputPrice: undefined;
|
|
1630
|
+
readonly outputPrice: undefined;
|
|
1631
|
+
readonly requestPrice: undefined;
|
|
1632
|
+
readonly perSecondPrice: {
|
|
1633
|
+
readonly "720p": 0.24;
|
|
1634
|
+
};
|
|
1635
|
+
readonly supportedVideoSizes: ["1280x720", "720x1280"];
|
|
1636
|
+
readonly supportedVideoDurationsSeconds: [15];
|
|
1637
|
+
readonly contextSize: 32768;
|
|
1638
|
+
readonly maxOutput: 1;
|
|
1639
|
+
readonly streaming: false;
|
|
1640
|
+
readonly tools: false;
|
|
1641
|
+
readonly jsonOutput: false;
|
|
1642
|
+
readonly jsonOutputSchema: false;
|
|
1643
|
+
readonly videoGenerations: true;
|
|
1644
|
+
readonly supportsVideoAudio: true;
|
|
1645
|
+
readonly supportsVideoWithoutAudio: false;
|
|
1545
1646
|
}, {
|
|
1546
1647
|
readonly providerId: "avalanche";
|
|
1547
1648
|
readonly modelName: "sora-2-pro";
|
|
1649
|
+
readonly deactivatedAt: Date;
|
|
1548
1650
|
readonly inputPrice: undefined;
|
|
1549
1651
|
readonly outputPrice: undefined;
|
|
1550
1652
|
readonly requestPrice: undefined;
|
|
@@ -2949,6 +3051,39 @@ export declare const models: [{
|
|
|
2949
3051
|
readonly webSearchPrice: 0.014;
|
|
2950
3052
|
readonly jsonOutput: true;
|
|
2951
3053
|
readonly jsonOutputSchema: true;
|
|
3054
|
+
}, {
|
|
3055
|
+
readonly test: "skip";
|
|
3056
|
+
readonly providerId: "quartz";
|
|
3057
|
+
readonly modelName: "gemini-3.1-pro-preview";
|
|
3058
|
+
readonly discount: 0.2;
|
|
3059
|
+
readonly inputPrice: number;
|
|
3060
|
+
readonly outputPrice: number;
|
|
3061
|
+
readonly cachedInputPrice: number;
|
|
3062
|
+
readonly pricingTiers: [{
|
|
3063
|
+
readonly name: "Up to 200K";
|
|
3064
|
+
readonly upToTokens: 200000;
|
|
3065
|
+
readonly inputPrice: number;
|
|
3066
|
+
readonly outputPrice: number;
|
|
3067
|
+
readonly cachedInputPrice: number;
|
|
3068
|
+
}, {
|
|
3069
|
+
readonly name: "Over 200K";
|
|
3070
|
+
readonly upToTokens: number;
|
|
3071
|
+
readonly inputPrice: number;
|
|
3072
|
+
readonly outputPrice: number;
|
|
3073
|
+
readonly cachedInputPrice: number;
|
|
3074
|
+
}];
|
|
3075
|
+
readonly requestPrice: 0;
|
|
3076
|
+
readonly contextSize: 1048576;
|
|
3077
|
+
readonly maxOutput: 65536;
|
|
3078
|
+
readonly reasoning: true;
|
|
3079
|
+
readonly reasoningMaxTokens: true;
|
|
3080
|
+
readonly streaming: true;
|
|
3081
|
+
readonly vision: true;
|
|
3082
|
+
readonly tools: true;
|
|
3083
|
+
readonly webSearch: true;
|
|
3084
|
+
readonly webSearchPrice: 0.014;
|
|
3085
|
+
readonly jsonOutput: true;
|
|
3086
|
+
readonly jsonOutputSchema: true;
|
|
2952
3087
|
}];
|
|
2953
3088
|
}, {
|
|
2954
3089
|
readonly id: "gemini-3.1-flash-lite-preview";
|
|
@@ -3201,6 +3336,33 @@ export declare const models: [{
|
|
|
3201
3336
|
readonly tools: false;
|
|
3202
3337
|
readonly jsonOutput: true;
|
|
3203
3338
|
readonly jsonOutputSchema: true;
|
|
3339
|
+
}, {
|
|
3340
|
+
readonly test: "skip";
|
|
3341
|
+
readonly providerId: "quartz";
|
|
3342
|
+
readonly modelName: "gemini-3.1-flash-image-preview";
|
|
3343
|
+
readonly discount: 0.2;
|
|
3344
|
+
readonly inputPrice: number;
|
|
3345
|
+
readonly outputPrice: number;
|
|
3346
|
+
readonly imageInputPrice: number;
|
|
3347
|
+
readonly imageInputTokensByResolution: {
|
|
3348
|
+
readonly default: 560;
|
|
3349
|
+
};
|
|
3350
|
+
readonly imageOutputPrice: number;
|
|
3351
|
+
readonly imageOutputTokensByResolution: {
|
|
3352
|
+
readonly "0.5K": 747;
|
|
3353
|
+
readonly "1K": 1120;
|
|
3354
|
+
readonly "2K": 1680;
|
|
3355
|
+
readonly "4K": 2520;
|
|
3356
|
+
readonly default: 1120;
|
|
3357
|
+
};
|
|
3358
|
+
readonly requestPrice: 0;
|
|
3359
|
+
readonly contextSize: 65536;
|
|
3360
|
+
readonly maxOutput: 65536;
|
|
3361
|
+
readonly streaming: true;
|
|
3362
|
+
readonly vision: true;
|
|
3363
|
+
readonly tools: false;
|
|
3364
|
+
readonly jsonOutput: true;
|
|
3365
|
+
readonly jsonOutputSchema: true;
|
|
3204
3366
|
}, {
|
|
3205
3367
|
readonly test: "skip";
|
|
3206
3368
|
readonly providerId: "obsidian";
|
|
@@ -3464,6 +3626,33 @@ export declare const models: [{
|
|
|
3464
3626
|
readonly tools: false;
|
|
3465
3627
|
readonly jsonOutput: true;
|
|
3466
3628
|
readonly jsonOutputSchema: true;
|
|
3629
|
+
}, {
|
|
3630
|
+
readonly test: "skip";
|
|
3631
|
+
readonly providerId: "quartz";
|
|
3632
|
+
readonly modelName: "gemini-3-pro-image-preview";
|
|
3633
|
+
readonly discount: 0.2;
|
|
3634
|
+
readonly inputPrice: number;
|
|
3635
|
+
readonly outputPrice: number;
|
|
3636
|
+
readonly cachedInputPrice: number;
|
|
3637
|
+
readonly imageInputPrice: number;
|
|
3638
|
+
readonly imageInputTokensByResolution: {
|
|
3639
|
+
readonly default: 560;
|
|
3640
|
+
};
|
|
3641
|
+
readonly imageOutputPrice: number;
|
|
3642
|
+
readonly imageOutputTokensByResolution: {
|
|
3643
|
+
readonly "1K": 1120;
|
|
3644
|
+
readonly "2K": 1120;
|
|
3645
|
+
readonly "4K": 2000;
|
|
3646
|
+
readonly default: 1120;
|
|
3647
|
+
};
|
|
3648
|
+
readonly requestPrice: 0;
|
|
3649
|
+
readonly contextSize: 65536;
|
|
3650
|
+
readonly maxOutput: 32768;
|
|
3651
|
+
readonly streaming: true;
|
|
3652
|
+
readonly vision: true;
|
|
3653
|
+
readonly tools: false;
|
|
3654
|
+
readonly jsonOutput: true;
|
|
3655
|
+
readonly jsonOutputSchema: true;
|
|
3467
3656
|
}, {
|
|
3468
3657
|
readonly test: "skip";
|
|
3469
3658
|
readonly providerId: "obsidian";
|
|
@@ -4973,7 +5162,7 @@ export declare const models: [{
|
|
|
4973
5162
|
}, {
|
|
4974
5163
|
readonly id: "deepseek-v3.1";
|
|
4975
5164
|
readonly name: "DeepSeek V3.1";
|
|
4976
|
-
readonly description: "Updated DeepSeek V3 with
|
|
5165
|
+
readonly description: "Updated DeepSeek V3 with tools and improved performance.";
|
|
4977
5166
|
readonly family: "deepseek";
|
|
4978
5167
|
readonly releasedAt: Date;
|
|
4979
5168
|
readonly providers: [{
|
|
@@ -4988,7 +5177,7 @@ export declare const models: [{
|
|
|
4988
5177
|
readonly contextSize: 128000;
|
|
4989
5178
|
readonly maxOutput: undefined;
|
|
4990
5179
|
readonly streaming: true;
|
|
4991
|
-
readonly vision:
|
|
5180
|
+
readonly vision: false;
|
|
4992
5181
|
readonly tools: true;
|
|
4993
5182
|
readonly jsonOutputSchema: false;
|
|
4994
5183
|
readonly jsonOutput: true;
|
|
@@ -5011,7 +5200,7 @@ export declare const models: [{
|
|
|
5011
5200
|
}, {
|
|
5012
5201
|
readonly id: "deepseek-v3.2";
|
|
5013
5202
|
readonly name: "DeepSeek V3.2";
|
|
5014
|
-
readonly description: "Latest DeepSeek V3 with
|
|
5203
|
+
readonly description: "Latest DeepSeek V3 with tools and improved performance.";
|
|
5015
5204
|
readonly family: "deepseek";
|
|
5016
5205
|
readonly releasedAt: Date;
|
|
5017
5206
|
readonly providers: [{
|
|
@@ -5025,7 +5214,7 @@ export declare const models: [{
|
|
|
5025
5214
|
readonly maxOutput: undefined;
|
|
5026
5215
|
readonly jsonOutput: true;
|
|
5027
5216
|
readonly streaming: true;
|
|
5028
|
-
readonly vision:
|
|
5217
|
+
readonly vision: false;
|
|
5029
5218
|
readonly tools: true;
|
|
5030
5219
|
}, {
|
|
5031
5220
|
readonly providerId: "canopywave";
|
|
@@ -5038,10 +5227,45 @@ export declare const models: [{
|
|
|
5038
5227
|
readonly contextSize: 163800;
|
|
5039
5228
|
readonly maxOutput: undefined;
|
|
5040
5229
|
readonly streaming: true;
|
|
5041
|
-
readonly vision:
|
|
5230
|
+
readonly vision: false;
|
|
5042
5231
|
readonly tools: true;
|
|
5043
5232
|
readonly jsonOutputSchema: false;
|
|
5044
5233
|
readonly jsonOutput: true;
|
|
5234
|
+
}, {
|
|
5235
|
+
readonly providerId: "novita";
|
|
5236
|
+
readonly modelName: "deepseek/deepseek-v3.2";
|
|
5237
|
+
readonly inputPrice: number;
|
|
5238
|
+
readonly cachedInputPrice: number;
|
|
5239
|
+
readonly outputPrice: number;
|
|
5240
|
+
readonly requestPrice: 0;
|
|
5241
|
+
readonly contextSize: 163840;
|
|
5242
|
+
readonly maxOutput: 65536;
|
|
5243
|
+
readonly reasoning: false;
|
|
5244
|
+
readonly streaming: true;
|
|
5245
|
+
readonly vision: false;
|
|
5246
|
+
readonly tools: true;
|
|
5247
|
+
readonly jsonOutput: true;
|
|
5248
|
+
}, {
|
|
5249
|
+
readonly providerId: "alibaba";
|
|
5250
|
+
readonly modelName: "deepseek-v3.2";
|
|
5251
|
+
readonly discount: 0.2;
|
|
5252
|
+
readonly inputPrice: number;
|
|
5253
|
+
readonly outputPrice: number;
|
|
5254
|
+
readonly regions: [{
|
|
5255
|
+
readonly id: "singapore";
|
|
5256
|
+
}, {
|
|
5257
|
+
readonly id: "cn-beijing";
|
|
5258
|
+
readonly inputPrice: number;
|
|
5259
|
+
readonly outputPrice: number;
|
|
5260
|
+
}];
|
|
5261
|
+
readonly requestPrice: 0;
|
|
5262
|
+
readonly contextSize: 131072;
|
|
5263
|
+
readonly maxOutput: 65536;
|
|
5264
|
+
readonly reasoning: false;
|
|
5265
|
+
readonly streaming: true;
|
|
5266
|
+
readonly vision: false;
|
|
5267
|
+
readonly tools: true;
|
|
5268
|
+
readonly jsonOutput: true;
|
|
5045
5269
|
}, {
|
|
5046
5270
|
readonly providerId: "bytedance";
|
|
5047
5271
|
readonly modelName: "deepseek-v3-2-251201";
|
|
@@ -5665,6 +5889,23 @@ export declare const models: [{
|
|
|
5665
5889
|
readonly vision: false;
|
|
5666
5890
|
readonly tools: true;
|
|
5667
5891
|
readonly jsonOutput: false;
|
|
5892
|
+
}, {
|
|
5893
|
+
readonly test: "skip";
|
|
5894
|
+
readonly providerId: "alibaba";
|
|
5895
|
+
readonly modelName: "Moonshot-Kimi-K2-Instruct";
|
|
5896
|
+
readonly inputPrice: number;
|
|
5897
|
+
readonly outputPrice: number;
|
|
5898
|
+
readonly regions: [{
|
|
5899
|
+
readonly id: "cn-beijing";
|
|
5900
|
+
}];
|
|
5901
|
+
readonly requestPrice: 0;
|
|
5902
|
+
readonly contextSize: 131072;
|
|
5903
|
+
readonly maxOutput: 8192;
|
|
5904
|
+
readonly streaming: true;
|
|
5905
|
+
readonly vision: false;
|
|
5906
|
+
readonly tools: true;
|
|
5907
|
+
readonly webSearch: true;
|
|
5908
|
+
readonly jsonOutput: false;
|
|
5668
5909
|
}];
|
|
5669
5910
|
}, {
|
|
5670
5911
|
readonly id: "kimi-k2-thinking";
|
|
@@ -5715,6 +5956,23 @@ export declare const models: [{
|
|
|
5715
5956
|
readonly vision: false;
|
|
5716
5957
|
readonly tools: true;
|
|
5717
5958
|
readonly jsonOutput: false;
|
|
5959
|
+
}, {
|
|
5960
|
+
readonly test: "skip";
|
|
5961
|
+
readonly providerId: "alibaba";
|
|
5962
|
+
readonly modelName: "kimi-k2-thinking";
|
|
5963
|
+
readonly inputPrice: number;
|
|
5964
|
+
readonly outputPrice: number;
|
|
5965
|
+
readonly regions: [{
|
|
5966
|
+
readonly id: "cn-beijing";
|
|
5967
|
+
}];
|
|
5968
|
+
readonly requestPrice: 0;
|
|
5969
|
+
readonly contextSize: 262144;
|
|
5970
|
+
readonly maxOutput: 16384;
|
|
5971
|
+
readonly reasoning: true;
|
|
5972
|
+
readonly streaming: true;
|
|
5973
|
+
readonly vision: false;
|
|
5974
|
+
readonly tools: true;
|
|
5975
|
+
readonly jsonOutput: true;
|
|
5718
5976
|
}];
|
|
5719
5977
|
}, {
|
|
5720
5978
|
readonly id: "kimi-k2-thinking-turbo";
|
|
@@ -5787,6 +6045,23 @@ export declare const models: [{
|
|
|
5787
6045
|
readonly vision: true;
|
|
5788
6046
|
readonly tools: false;
|
|
5789
6047
|
readonly jsonOutput: false;
|
|
6048
|
+
}, {
|
|
6049
|
+
readonly test: "skip";
|
|
6050
|
+
readonly providerId: "alibaba";
|
|
6051
|
+
readonly modelName: "kimi-k2.5";
|
|
6052
|
+
readonly inputPrice: number;
|
|
6053
|
+
readonly outputPrice: number;
|
|
6054
|
+
readonly regions: [{
|
|
6055
|
+
readonly id: "cn-beijing";
|
|
6056
|
+
}];
|
|
6057
|
+
readonly requestPrice: 0;
|
|
6058
|
+
readonly contextSize: 262144;
|
|
6059
|
+
readonly maxOutput: 98304;
|
|
6060
|
+
readonly reasoning: true;
|
|
6061
|
+
readonly streaming: true;
|
|
6062
|
+
readonly vision: true;
|
|
6063
|
+
readonly tools: true;
|
|
6064
|
+
readonly jsonOutput: false;
|
|
5790
6065
|
}, {
|
|
5791
6066
|
readonly providerId: "embercloud";
|
|
5792
6067
|
readonly modelName: "kimi-k2.5";
|
|
@@ -5816,9 +6091,16 @@ export declare const models: [{
|
|
|
5816
6091
|
readonly discount: 0.2;
|
|
5817
6092
|
readonly inputPrice: number;
|
|
5818
6093
|
readonly outputPrice: number;
|
|
6094
|
+
readonly regions: [{
|
|
6095
|
+
readonly id: "singapore";
|
|
6096
|
+
}, {
|
|
6097
|
+
readonly id: "cn-beijing";
|
|
6098
|
+
readonly inputPrice: number;
|
|
6099
|
+
readonly outputPrice: number;
|
|
6100
|
+
}];
|
|
5819
6101
|
readonly requestPrice: 0;
|
|
5820
|
-
readonly contextSize:
|
|
5821
|
-
readonly maxOutput:
|
|
6102
|
+
readonly contextSize: 32768;
|
|
6103
|
+
readonly maxOutput: 8192;
|
|
5822
6104
|
readonly streaming: true;
|
|
5823
6105
|
readonly vision: true;
|
|
5824
6106
|
readonly tools: true;
|
|
@@ -5837,9 +6119,17 @@ export declare const models: [{
|
|
|
5837
6119
|
readonly discount: 0.2;
|
|
5838
6120
|
readonly inputPrice: number;
|
|
5839
6121
|
readonly outputPrice: number;
|
|
6122
|
+
readonly regions: [{
|
|
6123
|
+
readonly id: "singapore";
|
|
6124
|
+
}, {
|
|
6125
|
+
readonly id: "cn-beijing";
|
|
6126
|
+
readonly inputPrice: number;
|
|
6127
|
+
readonly outputPrice: number;
|
|
6128
|
+
readonly contextSize: 131072;
|
|
6129
|
+
}];
|
|
5840
6130
|
readonly requestPrice: 0;
|
|
5841
|
-
readonly contextSize:
|
|
5842
|
-
readonly maxOutput:
|
|
6131
|
+
readonly contextSize: 32768;
|
|
6132
|
+
readonly maxOutput: 8192;
|
|
5843
6133
|
readonly streaming: true;
|
|
5844
6134
|
readonly vision: true;
|
|
5845
6135
|
readonly tools: true;
|
|
@@ -5871,6 +6161,51 @@ export declare const models: [{
|
|
|
5871
6161
|
readonly outputPrice: number;
|
|
5872
6162
|
readonly cachedInputPrice: number;
|
|
5873
6163
|
}];
|
|
6164
|
+
readonly regions: [{
|
|
6165
|
+
readonly id: "singapore";
|
|
6166
|
+
}, {
|
|
6167
|
+
readonly id: "us-virginia";
|
|
6168
|
+
readonly inputPrice: number;
|
|
6169
|
+
readonly outputPrice: number;
|
|
6170
|
+
readonly cachedInputPrice: number;
|
|
6171
|
+
readonly pricingTiers: [{
|
|
6172
|
+
readonly name: "Up to 256K";
|
|
6173
|
+
readonly upToTokens: 256000;
|
|
6174
|
+
readonly inputPrice: number;
|
|
6175
|
+
readonly outputPrice: number;
|
|
6176
|
+
readonly cachedInputPrice: number;
|
|
6177
|
+
}, {
|
|
6178
|
+
readonly name: "Over 256K";
|
|
6179
|
+
readonly upToTokens: number;
|
|
6180
|
+
readonly inputPrice: number;
|
|
6181
|
+
readonly outputPrice: number;
|
|
6182
|
+
readonly cachedInputPrice: number;
|
|
6183
|
+
}];
|
|
6184
|
+
}, {
|
|
6185
|
+
readonly id: "cn-beijing";
|
|
6186
|
+
readonly inputPrice: number;
|
|
6187
|
+
readonly outputPrice: number;
|
|
6188
|
+
readonly cachedInputPrice: number;
|
|
6189
|
+
readonly pricingTiers: [{
|
|
6190
|
+
readonly name: "Up to 128K";
|
|
6191
|
+
readonly upToTokens: 128000;
|
|
6192
|
+
readonly inputPrice: number;
|
|
6193
|
+
readonly outputPrice: number;
|
|
6194
|
+
readonly cachedInputPrice: number;
|
|
6195
|
+
}, {
|
|
6196
|
+
readonly name: "128K-256K";
|
|
6197
|
+
readonly upToTokens: 256000;
|
|
6198
|
+
readonly inputPrice: number;
|
|
6199
|
+
readonly outputPrice: number;
|
|
6200
|
+
readonly cachedInputPrice: number;
|
|
6201
|
+
}, {
|
|
6202
|
+
readonly name: "256K-1M";
|
|
6203
|
+
readonly upToTokens: 1000000;
|
|
6204
|
+
readonly inputPrice: number;
|
|
6205
|
+
readonly outputPrice: number;
|
|
6206
|
+
readonly cachedInputPrice: number;
|
|
6207
|
+
}];
|
|
6208
|
+
}];
|
|
5874
6209
|
readonly requestPrice: 0;
|
|
5875
6210
|
readonly contextSize: 131072;
|
|
5876
6211
|
readonly maxOutput: 32000;
|
|
@@ -5905,6 +6240,33 @@ export declare const models: [{
|
|
|
5905
6240
|
readonly outputPrice: number;
|
|
5906
6241
|
readonly cachedInputPrice: number;
|
|
5907
6242
|
}];
|
|
6243
|
+
readonly regions: [{
|
|
6244
|
+
readonly id: "singapore";
|
|
6245
|
+
}, {
|
|
6246
|
+
readonly id: "cn-beijing";
|
|
6247
|
+
readonly inputPrice: number;
|
|
6248
|
+
readonly outputPrice: number;
|
|
6249
|
+
readonly cachedInputPrice: number;
|
|
6250
|
+
readonly pricingTiers: [{
|
|
6251
|
+
readonly name: "Up to 128K";
|
|
6252
|
+
readonly upToTokens: 128000;
|
|
6253
|
+
readonly inputPrice: number;
|
|
6254
|
+
readonly outputPrice: number;
|
|
6255
|
+
readonly cachedInputPrice: number;
|
|
6256
|
+
}, {
|
|
6257
|
+
readonly name: "128K-256K";
|
|
6258
|
+
readonly upToTokens: 256000;
|
|
6259
|
+
readonly inputPrice: number;
|
|
6260
|
+
readonly outputPrice: number;
|
|
6261
|
+
readonly cachedInputPrice: number;
|
|
6262
|
+
}, {
|
|
6263
|
+
readonly name: "256K-1M";
|
|
6264
|
+
readonly upToTokens: 1000000;
|
|
6265
|
+
readonly inputPrice: number;
|
|
6266
|
+
readonly outputPrice: number;
|
|
6267
|
+
readonly cachedInputPrice: number;
|
|
6268
|
+
}];
|
|
6269
|
+
}];
|
|
5908
6270
|
readonly requestPrice: 0;
|
|
5909
6271
|
readonly contextSize: 1000000;
|
|
5910
6272
|
readonly maxOutput: 32000;
|
|
@@ -5926,18 +6288,45 @@ export declare const models: [{
|
|
|
5926
6288
|
readonly inputPrice: number;
|
|
5927
6289
|
readonly outputPrice: number;
|
|
5928
6290
|
readonly cachedInputPrice: number;
|
|
5929
|
-
readonly
|
|
5930
|
-
readonly
|
|
5931
|
-
readonly
|
|
5932
|
-
|
|
5933
|
-
|
|
5934
|
-
|
|
6291
|
+
readonly regions: [{
|
|
6292
|
+
readonly id: "singapore";
|
|
6293
|
+
readonly pricingTiers: [{
|
|
6294
|
+
readonly name: "Up to 256K";
|
|
6295
|
+
readonly upToTokens: 256000;
|
|
6296
|
+
readonly inputPrice: number;
|
|
6297
|
+
readonly outputPrice: number;
|
|
6298
|
+
readonly cachedInputPrice: number;
|
|
6299
|
+
}, {
|
|
6300
|
+
readonly name: "Over 256K";
|
|
6301
|
+
readonly upToTokens: number;
|
|
6302
|
+
readonly inputPrice: number;
|
|
6303
|
+
readonly outputPrice: number;
|
|
6304
|
+
readonly cachedInputPrice: number;
|
|
6305
|
+
}];
|
|
5935
6306
|
}, {
|
|
5936
|
-
readonly
|
|
5937
|
-
readonly upToTokens: number;
|
|
6307
|
+
readonly id: "cn-beijing";
|
|
5938
6308
|
readonly inputPrice: number;
|
|
5939
6309
|
readonly outputPrice: number;
|
|
5940
6310
|
readonly cachedInputPrice: number;
|
|
6311
|
+
readonly pricingTiers: [{
|
|
6312
|
+
readonly name: "Up to 128K";
|
|
6313
|
+
readonly upToTokens: 128000;
|
|
6314
|
+
readonly inputPrice: number;
|
|
6315
|
+
readonly outputPrice: number;
|
|
6316
|
+
readonly cachedInputPrice: number;
|
|
6317
|
+
}, {
|
|
6318
|
+
readonly name: "128K-256K";
|
|
6319
|
+
readonly upToTokens: 256000;
|
|
6320
|
+
readonly inputPrice: number;
|
|
6321
|
+
readonly outputPrice: number;
|
|
6322
|
+
readonly cachedInputPrice: number;
|
|
6323
|
+
}, {
|
|
6324
|
+
readonly name: "256K-1M";
|
|
6325
|
+
readonly upToTokens: 1000000;
|
|
6326
|
+
readonly inputPrice: number;
|
|
6327
|
+
readonly outputPrice: number;
|
|
6328
|
+
readonly cachedInputPrice: number;
|
|
6329
|
+
}];
|
|
5941
6330
|
}];
|
|
5942
6331
|
readonly requestPrice: 0;
|
|
5943
6332
|
readonly contextSize: 1000000;
|
|
@@ -5979,6 +6368,13 @@ export declare const models: [{
|
|
|
5979
6368
|
readonly discount: 0.2;
|
|
5980
6369
|
readonly inputPrice: number;
|
|
5981
6370
|
readonly outputPrice: number;
|
|
6371
|
+
readonly regions: [{
|
|
6372
|
+
readonly id: "singapore";
|
|
6373
|
+
}, {
|
|
6374
|
+
readonly id: "cn-beijing";
|
|
6375
|
+
readonly inputPrice: number;
|
|
6376
|
+
readonly outputPrice: number;
|
|
6377
|
+
}];
|
|
5982
6378
|
readonly requestPrice: 0;
|
|
5983
6379
|
readonly contextSize: 1000000;
|
|
5984
6380
|
readonly maxOutput: 8192;
|
|
@@ -6733,6 +7129,24 @@ export declare const models: [{
|
|
|
6733
7129
|
readonly discount: 0.2;
|
|
6734
7130
|
readonly inputPrice: number;
|
|
6735
7131
|
readonly outputPrice: number;
|
|
7132
|
+
readonly regions: [{
|
|
7133
|
+
readonly id: "singapore";
|
|
7134
|
+
}, {
|
|
7135
|
+
readonly id: "cn-beijing";
|
|
7136
|
+
readonly inputPrice: number;
|
|
7137
|
+
readonly outputPrice: number;
|
|
7138
|
+
readonly pricingTiers: [{
|
|
7139
|
+
readonly name: "Up to 128K";
|
|
7140
|
+
readonly upToTokens: 128000;
|
|
7141
|
+
readonly inputPrice: number;
|
|
7142
|
+
readonly outputPrice: number;
|
|
7143
|
+
}, {
|
|
7144
|
+
readonly name: "128K-256K";
|
|
7145
|
+
readonly upToTokens: 256000;
|
|
7146
|
+
readonly inputPrice: number;
|
|
7147
|
+
readonly outputPrice: number;
|
|
7148
|
+
}];
|
|
7149
|
+
}];
|
|
6736
7150
|
readonly requestPrice: 0;
|
|
6737
7151
|
readonly contextSize: 262144;
|
|
6738
7152
|
readonly maxOutput: 65536;
|
|
@@ -6859,6 +7273,13 @@ export declare const models: [{
|
|
|
6859
7273
|
readonly discount: 0.2;
|
|
6860
7274
|
readonly inputPrice: number;
|
|
6861
7275
|
readonly outputPrice: number;
|
|
7276
|
+
readonly regions: [{
|
|
7277
|
+
readonly id: "singapore";
|
|
7278
|
+
}, {
|
|
7279
|
+
readonly id: "cn-beijing";
|
|
7280
|
+
readonly inputPrice: number;
|
|
7281
|
+
readonly outputPrice: number;
|
|
7282
|
+
}];
|
|
6862
7283
|
readonly requestPrice: 0;
|
|
6863
7284
|
readonly contextSize: 131072;
|
|
6864
7285
|
readonly maxOutput: 8192;
|
|
@@ -6882,6 +7303,9 @@ export declare const models: [{
|
|
|
6882
7303
|
readonly discount: 0.2;
|
|
6883
7304
|
readonly inputPrice: number;
|
|
6884
7305
|
readonly outputPrice: number;
|
|
7306
|
+
readonly regions: [{
|
|
7307
|
+
readonly id: "cn-beijing";
|
|
7308
|
+
}];
|
|
6885
7309
|
readonly requestPrice: 0;
|
|
6886
7310
|
readonly contextSize: 131072;
|
|
6887
7311
|
readonly maxOutput: 8192;
|
|
@@ -6903,30 +7327,93 @@ export declare const models: [{
|
|
|
6903
7327
|
readonly inputPrice: number;
|
|
6904
7328
|
readonly outputPrice: number;
|
|
6905
7329
|
readonly cachedInputPrice: number;
|
|
6906
|
-
readonly
|
|
6907
|
-
readonly
|
|
6908
|
-
readonly
|
|
6909
|
-
|
|
6910
|
-
|
|
6911
|
-
|
|
7330
|
+
readonly regions: [{
|
|
7331
|
+
readonly id: "singapore";
|
|
7332
|
+
readonly pricingTiers: [{
|
|
7333
|
+
readonly name: "Up to 32K";
|
|
7334
|
+
readonly upToTokens: 32000;
|
|
7335
|
+
readonly inputPrice: number;
|
|
7336
|
+
readonly outputPrice: number;
|
|
7337
|
+
readonly cachedInputPrice: number;
|
|
7338
|
+
}, {
|
|
7339
|
+
readonly name: "32K-128K";
|
|
7340
|
+
readonly upToTokens: 128000;
|
|
7341
|
+
readonly inputPrice: number;
|
|
7342
|
+
readonly outputPrice: number;
|
|
7343
|
+
readonly cachedInputPrice: number;
|
|
7344
|
+
}, {
|
|
7345
|
+
readonly name: "128K-256K";
|
|
7346
|
+
readonly upToTokens: 256000;
|
|
7347
|
+
readonly inputPrice: number;
|
|
7348
|
+
readonly outputPrice: number;
|
|
7349
|
+
readonly cachedInputPrice: number;
|
|
7350
|
+
}, {
|
|
7351
|
+
readonly name: "Over 256K";
|
|
7352
|
+
readonly upToTokens: number;
|
|
7353
|
+
readonly inputPrice: number;
|
|
7354
|
+
readonly outputPrice: number;
|
|
7355
|
+
readonly cachedInputPrice: number;
|
|
7356
|
+
}];
|
|
6912
7357
|
}, {
|
|
6913
|
-
readonly
|
|
6914
|
-
readonly upToTokens: 128000;
|
|
7358
|
+
readonly id: "us-virginia";
|
|
6915
7359
|
readonly inputPrice: number;
|
|
6916
7360
|
readonly outputPrice: number;
|
|
6917
7361
|
readonly cachedInputPrice: number;
|
|
7362
|
+
readonly pricingTiers: [{
|
|
7363
|
+
readonly name: "Up to 32K";
|
|
7364
|
+
readonly upToTokens: 32000;
|
|
7365
|
+
readonly inputPrice: number;
|
|
7366
|
+
readonly outputPrice: number;
|
|
7367
|
+
readonly cachedInputPrice: number;
|
|
7368
|
+
}, {
|
|
7369
|
+
readonly name: "32K-128K";
|
|
7370
|
+
readonly upToTokens: 128000;
|
|
7371
|
+
readonly inputPrice: number;
|
|
7372
|
+
readonly outputPrice: number;
|
|
7373
|
+
readonly cachedInputPrice: number;
|
|
7374
|
+
}, {
|
|
7375
|
+
readonly name: "128K-256K";
|
|
7376
|
+
readonly upToTokens: 256000;
|
|
7377
|
+
readonly inputPrice: number;
|
|
7378
|
+
readonly outputPrice: number;
|
|
7379
|
+
readonly cachedInputPrice: number;
|
|
7380
|
+
}, {
|
|
7381
|
+
readonly name: "Over 256K";
|
|
7382
|
+
readonly upToTokens: number;
|
|
7383
|
+
readonly inputPrice: number;
|
|
7384
|
+
readonly outputPrice: number;
|
|
7385
|
+
readonly cachedInputPrice: number;
|
|
7386
|
+
}];
|
|
6918
7387
|
}, {
|
|
6919
|
-
readonly
|
|
6920
|
-
readonly upToTokens: 256000;
|
|
6921
|
-
readonly inputPrice: number;
|
|
6922
|
-
readonly outputPrice: number;
|
|
6923
|
-
readonly cachedInputPrice: number;
|
|
6924
|
-
}, {
|
|
6925
|
-
readonly name: "Over 256K";
|
|
6926
|
-
readonly upToTokens: number;
|
|
7388
|
+
readonly id: "cn-beijing";
|
|
6927
7389
|
readonly inputPrice: number;
|
|
6928
7390
|
readonly outputPrice: number;
|
|
6929
7391
|
readonly cachedInputPrice: number;
|
|
7392
|
+
readonly pricingTiers: [{
|
|
7393
|
+
readonly name: "Up to 32K";
|
|
7394
|
+
readonly upToTokens: 32000;
|
|
7395
|
+
readonly inputPrice: number;
|
|
7396
|
+
readonly outputPrice: number;
|
|
7397
|
+
readonly cachedInputPrice: number;
|
|
7398
|
+
}, {
|
|
7399
|
+
readonly name: "32K-128K";
|
|
7400
|
+
readonly upToTokens: 128000;
|
|
7401
|
+
readonly inputPrice: number;
|
|
7402
|
+
readonly outputPrice: number;
|
|
7403
|
+
readonly cachedInputPrice: number;
|
|
7404
|
+
}, {
|
|
7405
|
+
readonly name: "128K-256K";
|
|
7406
|
+
readonly upToTokens: 256000;
|
|
7407
|
+
readonly inputPrice: number;
|
|
7408
|
+
readonly outputPrice: number;
|
|
7409
|
+
readonly cachedInputPrice: number;
|
|
7410
|
+
}, {
|
|
7411
|
+
readonly name: "256K-1M";
|
|
7412
|
+
readonly upToTokens: 1000000;
|
|
7413
|
+
readonly inputPrice: number;
|
|
7414
|
+
readonly outputPrice: number;
|
|
7415
|
+
readonly cachedInputPrice: number;
|
|
7416
|
+
}];
|
|
6930
7417
|
}];
|
|
6931
7418
|
readonly requestPrice: 0;
|
|
6932
7419
|
readonly contextSize: 1000000;
|
|
@@ -6949,24 +7436,75 @@ export declare const models: [{
|
|
|
6949
7436
|
readonly inputPrice: number;
|
|
6950
7437
|
readonly outputPrice: number;
|
|
6951
7438
|
readonly cachedInputPrice: number;
|
|
6952
|
-
readonly
|
|
6953
|
-
readonly
|
|
6954
|
-
readonly
|
|
6955
|
-
|
|
6956
|
-
|
|
6957
|
-
|
|
7439
|
+
readonly regions: [{
|
|
7440
|
+
readonly id: "singapore";
|
|
7441
|
+
readonly pricingTiers: [{
|
|
7442
|
+
readonly name: "Up to 32K";
|
|
7443
|
+
readonly upToTokens: 32000;
|
|
7444
|
+
readonly inputPrice: number;
|
|
7445
|
+
readonly outputPrice: number;
|
|
7446
|
+
readonly cachedInputPrice: number;
|
|
7447
|
+
}, {
|
|
7448
|
+
readonly name: "32K-128K";
|
|
7449
|
+
readonly upToTokens: 128000;
|
|
7450
|
+
readonly inputPrice: number;
|
|
7451
|
+
readonly outputPrice: number;
|
|
7452
|
+
readonly cachedInputPrice: number;
|
|
7453
|
+
}, {
|
|
7454
|
+
readonly name: "128K-256K";
|
|
7455
|
+
readonly upToTokens: 256000;
|
|
7456
|
+
readonly inputPrice: number;
|
|
7457
|
+
readonly outputPrice: number;
|
|
7458
|
+
readonly cachedInputPrice: number;
|
|
7459
|
+
}];
|
|
6958
7460
|
}, {
|
|
6959
|
-
readonly
|
|
6960
|
-
readonly upToTokens: 128000;
|
|
7461
|
+
readonly id: "us-virginia";
|
|
6961
7462
|
readonly inputPrice: number;
|
|
6962
7463
|
readonly outputPrice: number;
|
|
6963
7464
|
readonly cachedInputPrice: number;
|
|
7465
|
+
readonly pricingTiers: [{
|
|
7466
|
+
readonly name: "Up to 32K";
|
|
7467
|
+
readonly upToTokens: 32000;
|
|
7468
|
+
readonly inputPrice: number;
|
|
7469
|
+
readonly outputPrice: number;
|
|
7470
|
+
readonly cachedInputPrice: number;
|
|
7471
|
+
}, {
|
|
7472
|
+
readonly name: "32K-128K";
|
|
7473
|
+
readonly upToTokens: 128000;
|
|
7474
|
+
readonly inputPrice: number;
|
|
7475
|
+
readonly outputPrice: number;
|
|
7476
|
+
readonly cachedInputPrice: number;
|
|
7477
|
+
}, {
|
|
7478
|
+
readonly name: "Over 128K";
|
|
7479
|
+
readonly upToTokens: number;
|
|
7480
|
+
readonly inputPrice: number;
|
|
7481
|
+
readonly outputPrice: number;
|
|
7482
|
+
readonly cachedInputPrice: number;
|
|
7483
|
+
}];
|
|
6964
7484
|
}, {
|
|
6965
|
-
readonly
|
|
6966
|
-
readonly upToTokens: number;
|
|
7485
|
+
readonly id: "cn-beijing";
|
|
6967
7486
|
readonly inputPrice: number;
|
|
6968
7487
|
readonly outputPrice: number;
|
|
6969
7488
|
readonly cachedInputPrice: number;
|
|
7489
|
+
readonly pricingTiers: [{
|
|
7490
|
+
readonly name: "Up to 32K";
|
|
7491
|
+
readonly upToTokens: 32000;
|
|
7492
|
+
readonly inputPrice: number;
|
|
7493
|
+
readonly outputPrice: number;
|
|
7494
|
+
readonly cachedInputPrice: number;
|
|
7495
|
+
}, {
|
|
7496
|
+
readonly name: "32K-128K";
|
|
7497
|
+
readonly upToTokens: 128000;
|
|
7498
|
+
readonly inputPrice: number;
|
|
7499
|
+
readonly outputPrice: number;
|
|
7500
|
+
readonly cachedInputPrice: number;
|
|
7501
|
+
}, {
|
|
7502
|
+
readonly name: "128K-256K";
|
|
7503
|
+
readonly upToTokens: 256000;
|
|
7504
|
+
readonly inputPrice: number;
|
|
7505
|
+
readonly outputPrice: number;
|
|
7506
|
+
readonly cachedInputPrice: number;
|
|
7507
|
+
}];
|
|
6970
7508
|
}];
|
|
6971
7509
|
readonly requestPrice: 0;
|
|
6972
7510
|
readonly contextSize: 262144;
|
|
@@ -6989,24 +7527,75 @@ export declare const models: [{
|
|
|
6989
7527
|
readonly inputPrice: number;
|
|
6990
7528
|
readonly outputPrice: number;
|
|
6991
7529
|
readonly cachedInputPrice: number;
|
|
6992
|
-
readonly
|
|
6993
|
-
readonly
|
|
6994
|
-
readonly
|
|
6995
|
-
|
|
6996
|
-
|
|
6997
|
-
|
|
7530
|
+
readonly regions: [{
|
|
7531
|
+
readonly id: "singapore";
|
|
7532
|
+
readonly pricingTiers: [{
|
|
7533
|
+
readonly name: "Up to 32K";
|
|
7534
|
+
readonly upToTokens: 32000;
|
|
7535
|
+
readonly inputPrice: number;
|
|
7536
|
+
readonly outputPrice: number;
|
|
7537
|
+
readonly cachedInputPrice: number;
|
|
7538
|
+
}, {
|
|
7539
|
+
readonly name: "32K-128K";
|
|
7540
|
+
readonly upToTokens: 128000;
|
|
7541
|
+
readonly inputPrice: number;
|
|
7542
|
+
readonly outputPrice: number;
|
|
7543
|
+
readonly cachedInputPrice: number;
|
|
7544
|
+
}, {
|
|
7545
|
+
readonly name: "128K-256K";
|
|
7546
|
+
readonly upToTokens: 256000;
|
|
7547
|
+
readonly inputPrice: number;
|
|
7548
|
+
readonly outputPrice: number;
|
|
7549
|
+
readonly cachedInputPrice: number;
|
|
7550
|
+
}];
|
|
6998
7551
|
}, {
|
|
6999
|
-
readonly
|
|
7000
|
-
readonly upToTokens: 128000;
|
|
7552
|
+
readonly id: "us-virginia";
|
|
7001
7553
|
readonly inputPrice: number;
|
|
7002
7554
|
readonly outputPrice: number;
|
|
7003
7555
|
readonly cachedInputPrice: number;
|
|
7556
|
+
readonly pricingTiers: [{
|
|
7557
|
+
readonly name: "Up to 32K";
|
|
7558
|
+
readonly upToTokens: 32000;
|
|
7559
|
+
readonly inputPrice: number;
|
|
7560
|
+
readonly outputPrice: number;
|
|
7561
|
+
readonly cachedInputPrice: number;
|
|
7562
|
+
}, {
|
|
7563
|
+
readonly name: "32K-128K";
|
|
7564
|
+
readonly upToTokens: 128000;
|
|
7565
|
+
readonly inputPrice: number;
|
|
7566
|
+
readonly outputPrice: number;
|
|
7567
|
+
readonly cachedInputPrice: number;
|
|
7568
|
+
}, {
|
|
7569
|
+
readonly name: "Over 128K";
|
|
7570
|
+
readonly upToTokens: number;
|
|
7571
|
+
readonly inputPrice: number;
|
|
7572
|
+
readonly outputPrice: number;
|
|
7573
|
+
readonly cachedInputPrice: number;
|
|
7574
|
+
}];
|
|
7004
7575
|
}, {
|
|
7005
|
-
readonly
|
|
7006
|
-
readonly upToTokens: number;
|
|
7576
|
+
readonly id: "cn-beijing";
|
|
7007
7577
|
readonly inputPrice: number;
|
|
7008
7578
|
readonly outputPrice: number;
|
|
7009
7579
|
readonly cachedInputPrice: number;
|
|
7580
|
+
readonly pricingTiers: [{
|
|
7581
|
+
readonly name: "Up to 32K";
|
|
7582
|
+
readonly upToTokens: 32000;
|
|
7583
|
+
readonly inputPrice: number;
|
|
7584
|
+
readonly outputPrice: number;
|
|
7585
|
+
readonly cachedInputPrice: number;
|
|
7586
|
+
}, {
|
|
7587
|
+
readonly name: "32K-128K";
|
|
7588
|
+
readonly upToTokens: 128000;
|
|
7589
|
+
readonly inputPrice: number;
|
|
7590
|
+
readonly outputPrice: number;
|
|
7591
|
+
readonly cachedInputPrice: number;
|
|
7592
|
+
}, {
|
|
7593
|
+
readonly name: "128K-256K";
|
|
7594
|
+
readonly upToTokens: 256000;
|
|
7595
|
+
readonly inputPrice: number;
|
|
7596
|
+
readonly outputPrice: number;
|
|
7597
|
+
readonly cachedInputPrice: number;
|
|
7598
|
+
}];
|
|
7010
7599
|
}];
|
|
7011
7600
|
readonly requestPrice: 0;
|
|
7012
7601
|
readonly contextSize: 262144;
|
|
@@ -7118,24 +7707,75 @@ export declare const models: [{
|
|
|
7118
7707
|
readonly inputPrice: number;
|
|
7119
7708
|
readonly outputPrice: number;
|
|
7120
7709
|
readonly cachedInputPrice: number;
|
|
7121
|
-
readonly
|
|
7122
|
-
readonly
|
|
7123
|
-
readonly
|
|
7124
|
-
|
|
7125
|
-
|
|
7126
|
-
|
|
7710
|
+
readonly regions: [{
|
|
7711
|
+
readonly id: "singapore";
|
|
7712
|
+
readonly pricingTiers: [{
|
|
7713
|
+
readonly name: "Up to 32K";
|
|
7714
|
+
readonly upToTokens: 32000;
|
|
7715
|
+
readonly inputPrice: number;
|
|
7716
|
+
readonly outputPrice: number;
|
|
7717
|
+
readonly cachedInputPrice: number;
|
|
7718
|
+
}, {
|
|
7719
|
+
readonly name: "32K-128K";
|
|
7720
|
+
readonly upToTokens: 128000;
|
|
7721
|
+
readonly inputPrice: number;
|
|
7722
|
+
readonly outputPrice: number;
|
|
7723
|
+
readonly cachedInputPrice: number;
|
|
7724
|
+
}, {
|
|
7725
|
+
readonly name: "128K-252K";
|
|
7726
|
+
readonly upToTokens: 252000;
|
|
7727
|
+
readonly inputPrice: number;
|
|
7728
|
+
readonly outputPrice: number;
|
|
7729
|
+
readonly cachedInputPrice: number;
|
|
7730
|
+
}];
|
|
7127
7731
|
}, {
|
|
7128
|
-
readonly
|
|
7129
|
-
readonly upToTokens: 128000;
|
|
7732
|
+
readonly id: "us-virginia";
|
|
7130
7733
|
readonly inputPrice: number;
|
|
7131
7734
|
readonly outputPrice: number;
|
|
7132
7735
|
readonly cachedInputPrice: number;
|
|
7736
|
+
readonly pricingTiers: [{
|
|
7737
|
+
readonly name: "Up to 32K";
|
|
7738
|
+
readonly upToTokens: 32000;
|
|
7739
|
+
readonly inputPrice: number;
|
|
7740
|
+
readonly outputPrice: number;
|
|
7741
|
+
readonly cachedInputPrice: number;
|
|
7742
|
+
}, {
|
|
7743
|
+
readonly name: "32K-128K";
|
|
7744
|
+
readonly upToTokens: 128000;
|
|
7745
|
+
readonly inputPrice: number;
|
|
7746
|
+
readonly outputPrice: number;
|
|
7747
|
+
readonly cachedInputPrice: number;
|
|
7748
|
+
}, {
|
|
7749
|
+
readonly name: "Over 128K";
|
|
7750
|
+
readonly upToTokens: number;
|
|
7751
|
+
readonly inputPrice: number;
|
|
7752
|
+
readonly outputPrice: number;
|
|
7753
|
+
readonly cachedInputPrice: number;
|
|
7754
|
+
}];
|
|
7133
7755
|
}, {
|
|
7134
|
-
readonly
|
|
7135
|
-
readonly upToTokens: number;
|
|
7756
|
+
readonly id: "cn-beijing";
|
|
7136
7757
|
readonly inputPrice: number;
|
|
7137
7758
|
readonly outputPrice: number;
|
|
7138
7759
|
readonly cachedInputPrice: number;
|
|
7760
|
+
readonly pricingTiers: [{
|
|
7761
|
+
readonly name: "Up to 32K";
|
|
7762
|
+
readonly upToTokens: 32000;
|
|
7763
|
+
readonly inputPrice: number;
|
|
7764
|
+
readonly outputPrice: number;
|
|
7765
|
+
readonly cachedInputPrice: number;
|
|
7766
|
+
}, {
|
|
7767
|
+
readonly name: "32K-128K";
|
|
7768
|
+
readonly upToTokens: 128000;
|
|
7769
|
+
readonly inputPrice: number;
|
|
7770
|
+
readonly outputPrice: number;
|
|
7771
|
+
readonly cachedInputPrice: number;
|
|
7772
|
+
}, {
|
|
7773
|
+
readonly name: "128K-252K";
|
|
7774
|
+
readonly upToTokens: 252000;
|
|
7775
|
+
readonly inputPrice: number;
|
|
7776
|
+
readonly outputPrice: number;
|
|
7777
|
+
readonly cachedInputPrice: number;
|
|
7778
|
+
}];
|
|
7139
7779
|
}];
|
|
7140
7780
|
readonly requestPrice: 0;
|
|
7141
7781
|
readonly contextSize: 262144;
|
|
@@ -7432,6 +8072,34 @@ export declare const models: [{
|
|
|
7432
8072
|
readonly vision: false;
|
|
7433
8073
|
readonly tools: true;
|
|
7434
8074
|
readonly jsonOutput: true;
|
|
8075
|
+
}, {
|
|
8076
|
+
readonly test: "skip";
|
|
8077
|
+
readonly providerId: "alibaba";
|
|
8078
|
+
readonly modelName: "glm-5";
|
|
8079
|
+
readonly inputPrice: number;
|
|
8080
|
+
readonly outputPrice: number;
|
|
8081
|
+
readonly pricingTiers: [{
|
|
8082
|
+
readonly name: "Up to 32K";
|
|
8083
|
+
readonly upToTokens: 32000;
|
|
8084
|
+
readonly inputPrice: number;
|
|
8085
|
+
readonly outputPrice: number;
|
|
8086
|
+
}, {
|
|
8087
|
+
readonly name: "Over 32K";
|
|
8088
|
+
readonly upToTokens: number;
|
|
8089
|
+
readonly inputPrice: number;
|
|
8090
|
+
readonly outputPrice: number;
|
|
8091
|
+
}];
|
|
8092
|
+
readonly regions: [{
|
|
8093
|
+
readonly id: "cn-beijing";
|
|
8094
|
+
}];
|
|
8095
|
+
readonly requestPrice: 0;
|
|
8096
|
+
readonly contextSize: 202752;
|
|
8097
|
+
readonly maxOutput: 16384;
|
|
8098
|
+
readonly streaming: true;
|
|
8099
|
+
readonly reasoning: true;
|
|
8100
|
+
readonly vision: false;
|
|
8101
|
+
readonly tools: true;
|
|
8102
|
+
readonly jsonOutput: true;
|
|
7435
8103
|
}, {
|
|
7436
8104
|
readonly providerId: "embercloud";
|
|
7437
8105
|
readonly modelName: "glm-5";
|
|
@@ -7611,6 +8279,7 @@ export declare const models: [{
|
|
|
7611
8279
|
readonly description: "Free, fast GLM-4.5 model.";
|
|
7612
8280
|
readonly family: "glm";
|
|
7613
8281
|
readonly free: true;
|
|
8282
|
+
readonly stability: "unstable";
|
|
7614
8283
|
readonly releasedAt: Date;
|
|
7615
8284
|
readonly providers: [{
|
|
7616
8285
|
readonly providerId: "zai";
|
|
@@ -7723,6 +8392,34 @@ export declare const models: [{
|
|
|
7723
8392
|
readonly vision: false;
|
|
7724
8393
|
readonly tools: false;
|
|
7725
8394
|
readonly jsonOutput: false;
|
|
8395
|
+
}, {
|
|
8396
|
+
readonly test: "skip";
|
|
8397
|
+
readonly providerId: "alibaba";
|
|
8398
|
+
readonly modelName: "glm-4.7";
|
|
8399
|
+
readonly inputPrice: number;
|
|
8400
|
+
readonly outputPrice: number;
|
|
8401
|
+
readonly pricingTiers: [{
|
|
8402
|
+
readonly name: "Up to 32K";
|
|
8403
|
+
readonly upToTokens: 32000;
|
|
8404
|
+
readonly inputPrice: number;
|
|
8405
|
+
readonly outputPrice: number;
|
|
8406
|
+
}, {
|
|
8407
|
+
readonly name: "Over 32K";
|
|
8408
|
+
readonly upToTokens: number;
|
|
8409
|
+
readonly inputPrice: number;
|
|
8410
|
+
readonly outputPrice: number;
|
|
8411
|
+
}];
|
|
8412
|
+
readonly regions: [{
|
|
8413
|
+
readonly id: "cn-beijing";
|
|
8414
|
+
}];
|
|
8415
|
+
readonly requestPrice: 0;
|
|
8416
|
+
readonly contextSize: 202752;
|
|
8417
|
+
readonly maxOutput: 16384;
|
|
8418
|
+
readonly streaming: true;
|
|
8419
|
+
readonly reasoning: true;
|
|
8420
|
+
readonly vision: false;
|
|
8421
|
+
readonly tools: true;
|
|
8422
|
+
readonly jsonOutput: true;
|
|
7726
8423
|
}, {
|
|
7727
8424
|
readonly providerId: "embercloud";
|
|
7728
8425
|
readonly modelName: "glm-4.7";
|
|
@@ -7767,6 +8464,7 @@ export declare const models: [{
|
|
|
7767
8464
|
readonly description: "Free, lightweight GLM-4.7 model.";
|
|
7768
8465
|
readonly family: "glm";
|
|
7769
8466
|
readonly free: true;
|
|
8467
|
+
readonly stability: "unstable";
|
|
7770
8468
|
readonly releasedAt: Date;
|
|
7771
8469
|
readonly providers: [{
|
|
7772
8470
|
readonly providerId: "zai";
|
|
@@ -7850,6 +8548,34 @@ export declare const models: [{
|
|
|
7850
8548
|
readonly vision: false;
|
|
7851
8549
|
readonly tools: true;
|
|
7852
8550
|
readonly jsonOutput: true;
|
|
8551
|
+
}, {
|
|
8552
|
+
readonly test: "skip";
|
|
8553
|
+
readonly providerId: "alibaba";
|
|
8554
|
+
readonly modelName: "glm-4.6";
|
|
8555
|
+
readonly inputPrice: number;
|
|
8556
|
+
readonly outputPrice: number;
|
|
8557
|
+
readonly pricingTiers: [{
|
|
8558
|
+
readonly name: "Up to 32K";
|
|
8559
|
+
readonly upToTokens: 32000;
|
|
8560
|
+
readonly inputPrice: number;
|
|
8561
|
+
readonly outputPrice: number;
|
|
8562
|
+
}, {
|
|
8563
|
+
readonly name: "Over 32K";
|
|
8564
|
+
readonly upToTokens: number;
|
|
8565
|
+
readonly inputPrice: number;
|
|
8566
|
+
readonly outputPrice: number;
|
|
8567
|
+
}];
|
|
8568
|
+
readonly regions: [{
|
|
8569
|
+
readonly id: "cn-beijing";
|
|
8570
|
+
}];
|
|
8571
|
+
readonly requestPrice: 0;
|
|
8572
|
+
readonly contextSize: 202752;
|
|
8573
|
+
readonly maxOutput: 16384;
|
|
8574
|
+
readonly streaming: true;
|
|
8575
|
+
readonly reasoning: true;
|
|
8576
|
+
readonly vision: false;
|
|
8577
|
+
readonly tools: true;
|
|
8578
|
+
readonly jsonOutput: true;
|
|
7853
8579
|
}, {
|
|
7854
8580
|
readonly providerId: "novita";
|
|
7855
8581
|
readonly test: "skip";
|
|
@@ -7952,6 +8678,7 @@ export declare const models: [{
|
|
|
7952
8678
|
readonly description: "Ultra-fast, lightweight vision-language model (9B) for low-latency workloads.";
|
|
7953
8679
|
readonly family: "glm";
|
|
7954
8680
|
readonly free: true;
|
|
8681
|
+
readonly stability: "unstable";
|
|
7955
8682
|
readonly releasedAt: Date;
|
|
7956
8683
|
readonly providers: [{
|
|
7957
8684
|
readonly providerId: "zai";
|