@earendil-works/pi-ai 0.78.0 → 0.79.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/README.md +12 -4
- package/dist/env-api-keys.d.ts.map +1 -1
- package/dist/env-api-keys.js +3 -0
- package/dist/env-api-keys.js.map +1 -1
- package/dist/image-models.generated.d.ts +45 -0
- package/dist/image-models.generated.d.ts.map +1 -1
- package/dist/image-models.generated.js +45 -0
- package/dist/image-models.generated.js.map +1 -1
- package/dist/models.generated.d.ts +1365 -401
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +1331 -639
- package/dist/models.generated.js.map +1 -1
- package/dist/providers/amazon-bedrock.d.ts.map +1 -1
- package/dist/providers/amazon-bedrock.js +46 -19
- package/dist/providers/amazon-bedrock.js.map +1 -1
- package/dist/providers/anthropic.d.ts.map +1 -1
- package/dist/providers/anthropic.js +5 -4
- package/dist/providers/anthropic.js.map +1 -1
- package/dist/providers/openai-completions.d.ts.map +1 -1
- package/dist/providers/openai-completions.js +33 -12
- package/dist/providers/openai-completions.js.map +1 -1
- package/dist/providers/openai-responses-shared.d.ts.map +1 -1
- package/dist/providers/openai-responses-shared.js +2 -1
- package/dist/providers/openai-responses-shared.js.map +1 -1
- package/dist/providers/openai-responses.d.ts.map +1 -1
- package/dist/providers/openai-responses.js +1 -0
- package/dist/providers/openai-responses.js.map +1 -1
- package/dist/types.d.ts +12 -4
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/utils/oauth/github-copilot.d.ts.map +1 -1
- package/dist/utils/oauth/github-copilot.js +13 -1
- package/dist/utils/oauth/github-copilot.js.map +1 -1
- package/dist/utils/oauth/openai-codex.d.ts.map +1 -1
- package/dist/utils/oauth/openai-codex.js +4 -2
- package/dist/utils/oauth/openai-codex.js.map +1 -1
- package/package.json +1 -1
|
@@ -1110,6 +1110,63 @@ export declare const MODELS: {
|
|
|
1110
1110
|
contextWindow: number;
|
|
1111
1111
|
maxTokens: number;
|
|
1112
1112
|
};
|
|
1113
|
+
readonly "openai.gpt-5.4": {
|
|
1114
|
+
id: string;
|
|
1115
|
+
name: string;
|
|
1116
|
+
api: "bedrock-converse-stream";
|
|
1117
|
+
provider: string;
|
|
1118
|
+
baseUrl: string;
|
|
1119
|
+
reasoning: true;
|
|
1120
|
+
thinkingLevelMap: {
|
|
1121
|
+
xhigh: string;
|
|
1122
|
+
};
|
|
1123
|
+
input: ("image" | "text")[];
|
|
1124
|
+
cost: {
|
|
1125
|
+
input: number;
|
|
1126
|
+
output: number;
|
|
1127
|
+
cacheRead: number;
|
|
1128
|
+
cacheWrite: number;
|
|
1129
|
+
};
|
|
1130
|
+
contextWindow: number;
|
|
1131
|
+
maxTokens: number;
|
|
1132
|
+
};
|
|
1133
|
+
readonly "openai.gpt-5.5": {
|
|
1134
|
+
id: string;
|
|
1135
|
+
name: string;
|
|
1136
|
+
api: "bedrock-converse-stream";
|
|
1137
|
+
provider: string;
|
|
1138
|
+
baseUrl: string;
|
|
1139
|
+
reasoning: true;
|
|
1140
|
+
thinkingLevelMap: {
|
|
1141
|
+
xhigh: string;
|
|
1142
|
+
};
|
|
1143
|
+
input: ("image" | "text")[];
|
|
1144
|
+
cost: {
|
|
1145
|
+
input: number;
|
|
1146
|
+
output: number;
|
|
1147
|
+
cacheRead: number;
|
|
1148
|
+
cacheWrite: number;
|
|
1149
|
+
};
|
|
1150
|
+
contextWindow: number;
|
|
1151
|
+
maxTokens: number;
|
|
1152
|
+
};
|
|
1153
|
+
readonly "openai.gpt-oss-120b": {
|
|
1154
|
+
id: string;
|
|
1155
|
+
name: string;
|
|
1156
|
+
api: "bedrock-converse-stream";
|
|
1157
|
+
provider: string;
|
|
1158
|
+
baseUrl: string;
|
|
1159
|
+
reasoning: false;
|
|
1160
|
+
input: "text"[];
|
|
1161
|
+
cost: {
|
|
1162
|
+
input: number;
|
|
1163
|
+
output: number;
|
|
1164
|
+
cacheRead: number;
|
|
1165
|
+
cacheWrite: number;
|
|
1166
|
+
};
|
|
1167
|
+
contextWindow: number;
|
|
1168
|
+
maxTokens: number;
|
|
1169
|
+
};
|
|
1113
1170
|
readonly "openai.gpt-oss-120b-1:0": {
|
|
1114
1171
|
id: string;
|
|
1115
1172
|
name: string;
|
|
@@ -1127,6 +1184,23 @@ export declare const MODELS: {
|
|
|
1127
1184
|
contextWindow: number;
|
|
1128
1185
|
maxTokens: number;
|
|
1129
1186
|
};
|
|
1187
|
+
readonly "openai.gpt-oss-20b": {
|
|
1188
|
+
id: string;
|
|
1189
|
+
name: string;
|
|
1190
|
+
api: "bedrock-converse-stream";
|
|
1191
|
+
provider: string;
|
|
1192
|
+
baseUrl: string;
|
|
1193
|
+
reasoning: false;
|
|
1194
|
+
input: "text"[];
|
|
1195
|
+
cost: {
|
|
1196
|
+
input: number;
|
|
1197
|
+
output: number;
|
|
1198
|
+
cacheRead: number;
|
|
1199
|
+
cacheWrite: number;
|
|
1200
|
+
};
|
|
1201
|
+
contextWindow: number;
|
|
1202
|
+
maxTokens: number;
|
|
1203
|
+
};
|
|
1130
1204
|
readonly "openai.gpt-oss-20b-1:0": {
|
|
1131
1205
|
id: string;
|
|
1132
1206
|
name: string;
|
|
@@ -1579,6 +1653,89 @@ export declare const MODELS: {
|
|
|
1579
1653
|
maxTokens: number;
|
|
1580
1654
|
};
|
|
1581
1655
|
};
|
|
1656
|
+
readonly "ant-ling": {
|
|
1657
|
+
readonly "Ling-2.6-1T": {
|
|
1658
|
+
id: string;
|
|
1659
|
+
name: string;
|
|
1660
|
+
api: "openai-completions";
|
|
1661
|
+
provider: string;
|
|
1662
|
+
baseUrl: string;
|
|
1663
|
+
compat: {
|
|
1664
|
+
supportsStore: false;
|
|
1665
|
+
supportsDeveloperRole: false;
|
|
1666
|
+
supportsReasoningEffort: false;
|
|
1667
|
+
maxTokensField: "max_tokens";
|
|
1668
|
+
supportsLongCacheRetention: false;
|
|
1669
|
+
};
|
|
1670
|
+
reasoning: false;
|
|
1671
|
+
input: "text"[];
|
|
1672
|
+
cost: {
|
|
1673
|
+
input: number;
|
|
1674
|
+
output: number;
|
|
1675
|
+
cacheRead: number;
|
|
1676
|
+
cacheWrite: number;
|
|
1677
|
+
};
|
|
1678
|
+
contextWindow: number;
|
|
1679
|
+
maxTokens: number;
|
|
1680
|
+
};
|
|
1681
|
+
readonly "Ling-2.6-flash": {
|
|
1682
|
+
id: string;
|
|
1683
|
+
name: string;
|
|
1684
|
+
api: "openai-completions";
|
|
1685
|
+
provider: string;
|
|
1686
|
+
baseUrl: string;
|
|
1687
|
+
compat: {
|
|
1688
|
+
supportsStore: false;
|
|
1689
|
+
supportsDeveloperRole: false;
|
|
1690
|
+
supportsReasoningEffort: false;
|
|
1691
|
+
maxTokensField: "max_tokens";
|
|
1692
|
+
supportsLongCacheRetention: false;
|
|
1693
|
+
};
|
|
1694
|
+
reasoning: false;
|
|
1695
|
+
input: "text"[];
|
|
1696
|
+
cost: {
|
|
1697
|
+
input: number;
|
|
1698
|
+
output: number;
|
|
1699
|
+
cacheRead: number;
|
|
1700
|
+
cacheWrite: number;
|
|
1701
|
+
};
|
|
1702
|
+
contextWindow: number;
|
|
1703
|
+
maxTokens: number;
|
|
1704
|
+
};
|
|
1705
|
+
readonly "Ring-2.6-1T": {
|
|
1706
|
+
id: string;
|
|
1707
|
+
name: string;
|
|
1708
|
+
api: "openai-completions";
|
|
1709
|
+
provider: string;
|
|
1710
|
+
baseUrl: string;
|
|
1711
|
+
compat: {
|
|
1712
|
+
supportsStore: false;
|
|
1713
|
+
supportsDeveloperRole: false;
|
|
1714
|
+
supportsReasoningEffort: false;
|
|
1715
|
+
maxTokensField: "max_tokens";
|
|
1716
|
+
supportsLongCacheRetention: false;
|
|
1717
|
+
thinkingFormat: "ant-ling";
|
|
1718
|
+
};
|
|
1719
|
+
reasoning: true;
|
|
1720
|
+
thinkingLevelMap: {
|
|
1721
|
+
off: null;
|
|
1722
|
+
minimal: null;
|
|
1723
|
+
low: null;
|
|
1724
|
+
medium: null;
|
|
1725
|
+
high: string;
|
|
1726
|
+
xhigh: string;
|
|
1727
|
+
};
|
|
1728
|
+
input: "text"[];
|
|
1729
|
+
cost: {
|
|
1730
|
+
input: number;
|
|
1731
|
+
output: number;
|
|
1732
|
+
cacheRead: number;
|
|
1733
|
+
cacheWrite: number;
|
|
1734
|
+
};
|
|
1735
|
+
contextWindow: number;
|
|
1736
|
+
maxTokens: number;
|
|
1737
|
+
};
|
|
1738
|
+
};
|
|
1582
1739
|
readonly anthropic: {
|
|
1583
1740
|
readonly "claude-3-5-haiku-20241022": {
|
|
1584
1741
|
id: string;
|
|
@@ -1883,6 +2040,7 @@ export declare const MODELS: {
|
|
|
1883
2040
|
baseUrl: string;
|
|
1884
2041
|
compat: {
|
|
1885
2042
|
forceAdaptiveThinking: true;
|
|
2043
|
+
supportsTemperature: false;
|
|
1886
2044
|
};
|
|
1887
2045
|
reasoning: true;
|
|
1888
2046
|
thinkingLevelMap: {
|
|
@@ -1906,6 +2064,7 @@ export declare const MODELS: {
|
|
|
1906
2064
|
baseUrl: string;
|
|
1907
2065
|
compat: {
|
|
1908
2066
|
forceAdaptiveThinking: true;
|
|
2067
|
+
supportsTemperature: false;
|
|
1909
2068
|
};
|
|
1910
2069
|
reasoning: true;
|
|
1911
2070
|
thinkingLevelMap: {
|
|
@@ -3068,6 +3227,31 @@ export declare const MODELS: {
|
|
|
3068
3227
|
baseUrl: string;
|
|
3069
3228
|
compat: {
|
|
3070
3229
|
forceAdaptiveThinking: true;
|
|
3230
|
+
supportsTemperature: false;
|
|
3231
|
+
};
|
|
3232
|
+
reasoning: true;
|
|
3233
|
+
thinkingLevelMap: {
|
|
3234
|
+
xhigh: string;
|
|
3235
|
+
};
|
|
3236
|
+
input: ("image" | "text")[];
|
|
3237
|
+
cost: {
|
|
3238
|
+
input: number;
|
|
3239
|
+
output: number;
|
|
3240
|
+
cacheRead: number;
|
|
3241
|
+
cacheWrite: number;
|
|
3242
|
+
};
|
|
3243
|
+
contextWindow: number;
|
|
3244
|
+
maxTokens: number;
|
|
3245
|
+
};
|
|
3246
|
+
readonly "claude-opus-4-8": {
|
|
3247
|
+
id: string;
|
|
3248
|
+
name: string;
|
|
3249
|
+
api: "anthropic-messages";
|
|
3250
|
+
provider: string;
|
|
3251
|
+
baseUrl: string;
|
|
3252
|
+
compat: {
|
|
3253
|
+
forceAdaptiveThinking: true;
|
|
3254
|
+
supportsTemperature: false;
|
|
3071
3255
|
};
|
|
3072
3256
|
reasoning: true;
|
|
3073
3257
|
thinkingLevelMap: {
|
|
@@ -3617,26 +3801,6 @@ export declare const MODELS: {
|
|
|
3617
3801
|
contextWindow: number;
|
|
3618
3802
|
maxTokens: number;
|
|
3619
3803
|
};
|
|
3620
|
-
readonly "@cf/moonshotai/kimi-k2.5": {
|
|
3621
|
-
id: string;
|
|
3622
|
-
name: string;
|
|
3623
|
-
api: "openai-completions";
|
|
3624
|
-
provider: string;
|
|
3625
|
-
baseUrl: string;
|
|
3626
|
-
compat: {
|
|
3627
|
-
sendSessionAffinityHeaders: true;
|
|
3628
|
-
};
|
|
3629
|
-
reasoning: true;
|
|
3630
|
-
input: ("image" | "text")[];
|
|
3631
|
-
cost: {
|
|
3632
|
-
input: number;
|
|
3633
|
-
output: number;
|
|
3634
|
-
cacheRead: number;
|
|
3635
|
-
cacheWrite: number;
|
|
3636
|
-
};
|
|
3637
|
-
contextWindow: number;
|
|
3638
|
-
maxTokens: number;
|
|
3639
|
-
};
|
|
3640
3804
|
readonly "@cf/moonshotai/kimi-k2.6": {
|
|
3641
3805
|
id: string;
|
|
3642
3806
|
name: string;
|
|
@@ -4070,6 +4234,29 @@ export declare const MODELS: {
|
|
|
4070
4234
|
contextWindow: number;
|
|
4071
4235
|
maxTokens: number;
|
|
4072
4236
|
};
|
|
4237
|
+
readonly "accounts/fireworks/routers/kimi-k2p6-fast": {
|
|
4238
|
+
id: string;
|
|
4239
|
+
name: string;
|
|
4240
|
+
api: "anthropic-messages";
|
|
4241
|
+
provider: string;
|
|
4242
|
+
baseUrl: string;
|
|
4243
|
+
compat: {
|
|
4244
|
+
sendSessionAffinityHeaders: true;
|
|
4245
|
+
supportsEagerToolInputStreaming: false;
|
|
4246
|
+
supportsCacheControlOnTools: false;
|
|
4247
|
+
supportsLongCacheRetention: false;
|
|
4248
|
+
};
|
|
4249
|
+
reasoning: true;
|
|
4250
|
+
input: ("image" | "text")[];
|
|
4251
|
+
cost: {
|
|
4252
|
+
input: number;
|
|
4253
|
+
output: number;
|
|
4254
|
+
cacheRead: number;
|
|
4255
|
+
cacheWrite: number;
|
|
4256
|
+
};
|
|
4257
|
+
contextWindow: number;
|
|
4258
|
+
maxTokens: number;
|
|
4259
|
+
};
|
|
4073
4260
|
readonly "accounts/fireworks/routers/kimi-k2p6-turbo": {
|
|
4074
4261
|
id: string;
|
|
4075
4262
|
name: string;
|
|
@@ -4187,6 +4374,7 @@ export declare const MODELS: {
|
|
|
4187
4374
|
};
|
|
4188
4375
|
compat: {
|
|
4189
4376
|
forceAdaptiveThinking: true;
|
|
4377
|
+
supportsTemperature: false;
|
|
4190
4378
|
};
|
|
4191
4379
|
reasoning: true;
|
|
4192
4380
|
thinkingLevelMap: {
|
|
@@ -4216,6 +4404,7 @@ export declare const MODELS: {
|
|
|
4216
4404
|
};
|
|
4217
4405
|
compat: {
|
|
4218
4406
|
forceAdaptiveThinking: true;
|
|
4407
|
+
supportsTemperature: false;
|
|
4219
4408
|
};
|
|
4220
4409
|
reasoning: true;
|
|
4221
4410
|
thinkingLevelMap: {
|
|
@@ -4231,7 +4420,7 @@ export declare const MODELS: {
|
|
|
4231
4420
|
contextWindow: number;
|
|
4232
4421
|
maxTokens: number;
|
|
4233
4422
|
};
|
|
4234
|
-
readonly "claude-sonnet-4
|
|
4423
|
+
readonly "claude-sonnet-4": {
|
|
4235
4424
|
id: string;
|
|
4236
4425
|
name: string;
|
|
4237
4426
|
api: "anthropic-messages";
|
|
@@ -4257,7 +4446,7 @@ export declare const MODELS: {
|
|
|
4257
4446
|
contextWindow: number;
|
|
4258
4447
|
maxTokens: number;
|
|
4259
4448
|
};
|
|
4260
|
-
readonly "claude-sonnet-4.
|
|
4449
|
+
readonly "claude-sonnet-4.5": {
|
|
4261
4450
|
id: string;
|
|
4262
4451
|
name: string;
|
|
4263
4452
|
api: "anthropic-messages";
|
|
@@ -4270,7 +4459,7 @@ export declare const MODELS: {
|
|
|
4270
4459
|
"Copilot-Integration-Id": string;
|
|
4271
4460
|
};
|
|
4272
4461
|
compat: {
|
|
4273
|
-
|
|
4462
|
+
supportsEagerToolInputStreaming: false;
|
|
4274
4463
|
};
|
|
4275
4464
|
reasoning: true;
|
|
4276
4465
|
input: ("image" | "text")[];
|
|
@@ -4283,10 +4472,10 @@ export declare const MODELS: {
|
|
|
4283
4472
|
contextWindow: number;
|
|
4284
4473
|
maxTokens: number;
|
|
4285
4474
|
};
|
|
4286
|
-
readonly "
|
|
4475
|
+
readonly "claude-sonnet-4.6": {
|
|
4287
4476
|
id: string;
|
|
4288
4477
|
name: string;
|
|
4289
|
-
api: "
|
|
4478
|
+
api: "anthropic-messages";
|
|
4290
4479
|
provider: string;
|
|
4291
4480
|
baseUrl: string;
|
|
4292
4481
|
headers: {
|
|
@@ -4296,11 +4485,9 @@ export declare const MODELS: {
|
|
|
4296
4485
|
"Copilot-Integration-Id": string;
|
|
4297
4486
|
};
|
|
4298
4487
|
compat: {
|
|
4299
|
-
|
|
4300
|
-
supportsDeveloperRole: false;
|
|
4301
|
-
supportsReasoningEffort: false;
|
|
4488
|
+
forceAdaptiveThinking: true;
|
|
4302
4489
|
};
|
|
4303
|
-
reasoning:
|
|
4490
|
+
reasoning: true;
|
|
4304
4491
|
input: ("image" | "text")[];
|
|
4305
4492
|
cost: {
|
|
4306
4493
|
input: number;
|
|
@@ -4311,7 +4498,7 @@ export declare const MODELS: {
|
|
|
4311
4498
|
contextWindow: number;
|
|
4312
4499
|
maxTokens: number;
|
|
4313
4500
|
};
|
|
4314
|
-
readonly "gemini-
|
|
4501
|
+
readonly "gemini-2.5-pro": {
|
|
4315
4502
|
id: string;
|
|
4316
4503
|
name: string;
|
|
4317
4504
|
api: "openai-completions";
|
|
@@ -4339,7 +4526,7 @@ export declare const MODELS: {
|
|
|
4339
4526
|
contextWindow: number;
|
|
4340
4527
|
maxTokens: number;
|
|
4341
4528
|
};
|
|
4342
|
-
readonly "gemini-3
|
|
4529
|
+
readonly "gemini-3-flash-preview": {
|
|
4343
4530
|
id: string;
|
|
4344
4531
|
name: string;
|
|
4345
4532
|
api: "openai-completions";
|
|
@@ -4367,7 +4554,7 @@ export declare const MODELS: {
|
|
|
4367
4554
|
contextWindow: number;
|
|
4368
4555
|
maxTokens: number;
|
|
4369
4556
|
};
|
|
4370
|
-
readonly "gemini-3.
|
|
4557
|
+
readonly "gemini-3.1-pro-preview": {
|
|
4371
4558
|
id: string;
|
|
4372
4559
|
name: string;
|
|
4373
4560
|
api: "openai-completions";
|
|
@@ -4395,7 +4582,7 @@ export declare const MODELS: {
|
|
|
4395
4582
|
contextWindow: number;
|
|
4396
4583
|
maxTokens: number;
|
|
4397
4584
|
};
|
|
4398
|
-
readonly "
|
|
4585
|
+
readonly "gemini-3.5-flash": {
|
|
4399
4586
|
id: string;
|
|
4400
4587
|
name: string;
|
|
4401
4588
|
api: "openai-completions";
|
|
@@ -4412,7 +4599,7 @@ export declare const MODELS: {
|
|
|
4412
4599
|
supportsDeveloperRole: false;
|
|
4413
4600
|
supportsReasoningEffort: false;
|
|
4414
4601
|
};
|
|
4415
|
-
reasoning:
|
|
4602
|
+
reasoning: true;
|
|
4416
4603
|
input: ("image" | "text")[];
|
|
4417
4604
|
cost: {
|
|
4418
4605
|
input: number;
|
|
@@ -4423,7 +4610,7 @@ export declare const MODELS: {
|
|
|
4423
4610
|
contextWindow: number;
|
|
4424
4611
|
maxTokens: number;
|
|
4425
4612
|
};
|
|
4426
|
-
readonly "gpt-
|
|
4613
|
+
readonly "gpt-4.1": {
|
|
4427
4614
|
id: string;
|
|
4428
4615
|
name: string;
|
|
4429
4616
|
api: "openai-completions";
|
|
@@ -4618,7 +4805,7 @@ export declare const MODELS: {
|
|
|
4618
4805
|
contextWindow: number;
|
|
4619
4806
|
maxTokens: number;
|
|
4620
4807
|
};
|
|
4621
|
-
readonly "gpt-5.
|
|
4808
|
+
readonly "gpt-5.4-nano": {
|
|
4622
4809
|
id: string;
|
|
4623
4810
|
name: string;
|
|
4624
4811
|
api: "openai-responses";
|
|
@@ -4646,10 +4833,10 @@ export declare const MODELS: {
|
|
|
4646
4833
|
contextWindow: number;
|
|
4647
4834
|
maxTokens: number;
|
|
4648
4835
|
};
|
|
4649
|
-
readonly "
|
|
4836
|
+
readonly "gpt-5.5": {
|
|
4650
4837
|
id: string;
|
|
4651
4838
|
name: string;
|
|
4652
|
-
api: "openai-
|
|
4839
|
+
api: "openai-responses";
|
|
4653
4840
|
provider: string;
|
|
4654
4841
|
baseUrl: string;
|
|
4655
4842
|
headers: {
|
|
@@ -4658,17 +4845,45 @@ export declare const MODELS: {
|
|
|
4658
4845
|
"Editor-Plugin-Version": string;
|
|
4659
4846
|
"Copilot-Integration-Id": string;
|
|
4660
4847
|
};
|
|
4661
|
-
compat: {
|
|
4662
|
-
supportsStore: false;
|
|
4663
|
-
supportsDeveloperRole: false;
|
|
4664
|
-
supportsReasoningEffort: false;
|
|
4665
|
-
};
|
|
4666
4848
|
reasoning: true;
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4849
|
+
thinkingLevelMap: {
|
|
4850
|
+
off: null;
|
|
4851
|
+
minimal: string;
|
|
4852
|
+
xhigh: string;
|
|
4853
|
+
};
|
|
4854
|
+
input: ("image" | "text")[];
|
|
4855
|
+
cost: {
|
|
4856
|
+
input: number;
|
|
4857
|
+
output: number;
|
|
4858
|
+
cacheRead: number;
|
|
4859
|
+
cacheWrite: number;
|
|
4860
|
+
};
|
|
4861
|
+
contextWindow: number;
|
|
4862
|
+
maxTokens: number;
|
|
4863
|
+
};
|
|
4864
|
+
readonly "raptor-mini": {
|
|
4865
|
+
id: string;
|
|
4866
|
+
name: string;
|
|
4867
|
+
api: "openai-completions";
|
|
4868
|
+
provider: string;
|
|
4869
|
+
baseUrl: string;
|
|
4870
|
+
headers: {
|
|
4871
|
+
"User-Agent": string;
|
|
4872
|
+
"Editor-Version": string;
|
|
4873
|
+
"Editor-Plugin-Version": string;
|
|
4874
|
+
"Copilot-Integration-Id": string;
|
|
4875
|
+
};
|
|
4876
|
+
compat: {
|
|
4877
|
+
supportsStore: false;
|
|
4878
|
+
supportsDeveloperRole: false;
|
|
4879
|
+
supportsReasoningEffort: false;
|
|
4880
|
+
};
|
|
4881
|
+
reasoning: true;
|
|
4882
|
+
input: ("image" | "text")[];
|
|
4883
|
+
cost: {
|
|
4884
|
+
input: number;
|
|
4885
|
+
output: number;
|
|
4886
|
+
cacheRead: number;
|
|
4672
4887
|
cacheWrite: number;
|
|
4673
4888
|
};
|
|
4674
4889
|
contextWindow: number;
|
|
@@ -6076,6 +6291,23 @@ export declare const MODELS: {
|
|
|
6076
6291
|
contextWindow: number;
|
|
6077
6292
|
maxTokens: number;
|
|
6078
6293
|
};
|
|
6294
|
+
readonly "MiniMax-M3": {
|
|
6295
|
+
id: string;
|
|
6296
|
+
name: string;
|
|
6297
|
+
api: "anthropic-messages";
|
|
6298
|
+
provider: string;
|
|
6299
|
+
baseUrl: string;
|
|
6300
|
+
reasoning: true;
|
|
6301
|
+
input: ("image" | "text")[];
|
|
6302
|
+
cost: {
|
|
6303
|
+
input: number;
|
|
6304
|
+
output: number;
|
|
6305
|
+
cacheRead: number;
|
|
6306
|
+
cacheWrite: number;
|
|
6307
|
+
};
|
|
6308
|
+
contextWindow: number;
|
|
6309
|
+
maxTokens: number;
|
|
6310
|
+
};
|
|
6079
6311
|
};
|
|
6080
6312
|
readonly "minimax-cn": {
|
|
6081
6313
|
readonly "MiniMax-M2.7": {
|
|
@@ -6112,6 +6344,23 @@ export declare const MODELS: {
|
|
|
6112
6344
|
contextWindow: number;
|
|
6113
6345
|
maxTokens: number;
|
|
6114
6346
|
};
|
|
6347
|
+
readonly "MiniMax-M3": {
|
|
6348
|
+
id: string;
|
|
6349
|
+
name: string;
|
|
6350
|
+
api: "anthropic-messages";
|
|
6351
|
+
provider: string;
|
|
6352
|
+
baseUrl: string;
|
|
6353
|
+
reasoning: true;
|
|
6354
|
+
input: ("image" | "text")[];
|
|
6355
|
+
cost: {
|
|
6356
|
+
input: number;
|
|
6357
|
+
output: number;
|
|
6358
|
+
cacheRead: number;
|
|
6359
|
+
cacheWrite: number;
|
|
6360
|
+
};
|
|
6361
|
+
contextWindow: number;
|
|
6362
|
+
maxTokens: number;
|
|
6363
|
+
};
|
|
6115
6364
|
};
|
|
6116
6365
|
readonly mistral: {
|
|
6117
6366
|
readonly "codestral-latest": {
|
|
@@ -6148,6 +6397,23 @@ export declare const MODELS: {
|
|
|
6148
6397
|
contextWindow: number;
|
|
6149
6398
|
maxTokens: number;
|
|
6150
6399
|
};
|
|
6400
|
+
readonly "devstral-latest": {
|
|
6401
|
+
id: string;
|
|
6402
|
+
name: string;
|
|
6403
|
+
api: "mistral-conversations";
|
|
6404
|
+
provider: string;
|
|
6405
|
+
baseUrl: string;
|
|
6406
|
+
reasoning: false;
|
|
6407
|
+
input: "text"[];
|
|
6408
|
+
cost: {
|
|
6409
|
+
input: number;
|
|
6410
|
+
output: number;
|
|
6411
|
+
cacheRead: number;
|
|
6412
|
+
cacheWrite: number;
|
|
6413
|
+
};
|
|
6414
|
+
contextWindow: number;
|
|
6415
|
+
maxTokens: number;
|
|
6416
|
+
};
|
|
6151
6417
|
readonly "devstral-medium-2507": {
|
|
6152
6418
|
id: string;
|
|
6153
6419
|
name: string;
|
|
@@ -6426,7 +6692,7 @@ export declare const MODELS: {
|
|
|
6426
6692
|
api: "mistral-conversations";
|
|
6427
6693
|
provider: string;
|
|
6428
6694
|
baseUrl: string;
|
|
6429
|
-
reasoning:
|
|
6695
|
+
reasoning: false;
|
|
6430
6696
|
input: ("image" | "text")[];
|
|
6431
6697
|
cost: {
|
|
6432
6698
|
input: number;
|
|
@@ -6522,6 +6788,23 @@ export declare const MODELS: {
|
|
|
6522
6788
|
contextWindow: number;
|
|
6523
6789
|
maxTokens: number;
|
|
6524
6790
|
};
|
|
6791
|
+
readonly "open-mistral-nemo": {
|
|
6792
|
+
id: string;
|
|
6793
|
+
name: string;
|
|
6794
|
+
api: "mistral-conversations";
|
|
6795
|
+
provider: string;
|
|
6796
|
+
baseUrl: string;
|
|
6797
|
+
reasoning: false;
|
|
6798
|
+
input: "text"[];
|
|
6799
|
+
cost: {
|
|
6800
|
+
input: number;
|
|
6801
|
+
output: number;
|
|
6802
|
+
cacheRead: number;
|
|
6803
|
+
cacheWrite: number;
|
|
6804
|
+
};
|
|
6805
|
+
contextWindow: number;
|
|
6806
|
+
maxTokens: number;
|
|
6807
|
+
};
|
|
6525
6808
|
readonly "open-mixtral-8x22b": {
|
|
6526
6809
|
id: string;
|
|
6527
6810
|
name: string;
|
|
@@ -6799,7 +7082,577 @@ export declare const MODELS: {
|
|
|
6799
7082
|
maxTokensField: "max_tokens";
|
|
6800
7083
|
supportsStrictMode: false;
|
|
6801
7084
|
};
|
|
6802
|
-
reasoning: false;
|
|
7085
|
+
reasoning: false;
|
|
7086
|
+
input: "text"[];
|
|
7087
|
+
cost: {
|
|
7088
|
+
input: number;
|
|
7089
|
+
output: number;
|
|
7090
|
+
cacheRead: number;
|
|
7091
|
+
cacheWrite: number;
|
|
7092
|
+
};
|
|
7093
|
+
contextWindow: number;
|
|
7094
|
+
maxTokens: number;
|
|
7095
|
+
};
|
|
7096
|
+
readonly "kimi-k2-thinking": {
|
|
7097
|
+
id: string;
|
|
7098
|
+
name: string;
|
|
7099
|
+
api: "openai-completions";
|
|
7100
|
+
provider: string;
|
|
7101
|
+
baseUrl: string;
|
|
7102
|
+
compat: {
|
|
7103
|
+
supportsStore: false;
|
|
7104
|
+
supportsDeveloperRole: false;
|
|
7105
|
+
supportsReasoningEffort: false;
|
|
7106
|
+
maxTokensField: "max_tokens";
|
|
7107
|
+
supportsStrictMode: false;
|
|
7108
|
+
};
|
|
7109
|
+
reasoning: true;
|
|
7110
|
+
input: "text"[];
|
|
7111
|
+
cost: {
|
|
7112
|
+
input: number;
|
|
7113
|
+
output: number;
|
|
7114
|
+
cacheRead: number;
|
|
7115
|
+
cacheWrite: number;
|
|
7116
|
+
};
|
|
7117
|
+
contextWindow: number;
|
|
7118
|
+
maxTokens: number;
|
|
7119
|
+
};
|
|
7120
|
+
readonly "kimi-k2-thinking-turbo": {
|
|
7121
|
+
id: string;
|
|
7122
|
+
name: string;
|
|
7123
|
+
api: "openai-completions";
|
|
7124
|
+
provider: string;
|
|
7125
|
+
baseUrl: string;
|
|
7126
|
+
compat: {
|
|
7127
|
+
supportsStore: false;
|
|
7128
|
+
supportsDeveloperRole: false;
|
|
7129
|
+
supportsReasoningEffort: false;
|
|
7130
|
+
maxTokensField: "max_tokens";
|
|
7131
|
+
supportsStrictMode: false;
|
|
7132
|
+
};
|
|
7133
|
+
reasoning: true;
|
|
7134
|
+
input: "text"[];
|
|
7135
|
+
cost: {
|
|
7136
|
+
input: number;
|
|
7137
|
+
output: number;
|
|
7138
|
+
cacheRead: number;
|
|
7139
|
+
cacheWrite: number;
|
|
7140
|
+
};
|
|
7141
|
+
contextWindow: number;
|
|
7142
|
+
maxTokens: number;
|
|
7143
|
+
};
|
|
7144
|
+
readonly "kimi-k2-turbo-preview": {
|
|
7145
|
+
id: string;
|
|
7146
|
+
name: string;
|
|
7147
|
+
api: "openai-completions";
|
|
7148
|
+
provider: string;
|
|
7149
|
+
baseUrl: string;
|
|
7150
|
+
compat: {
|
|
7151
|
+
supportsStore: false;
|
|
7152
|
+
supportsDeveloperRole: false;
|
|
7153
|
+
supportsReasoningEffort: false;
|
|
7154
|
+
maxTokensField: "max_tokens";
|
|
7155
|
+
supportsStrictMode: false;
|
|
7156
|
+
};
|
|
7157
|
+
reasoning: false;
|
|
7158
|
+
input: "text"[];
|
|
7159
|
+
cost: {
|
|
7160
|
+
input: number;
|
|
7161
|
+
output: number;
|
|
7162
|
+
cacheRead: number;
|
|
7163
|
+
cacheWrite: number;
|
|
7164
|
+
};
|
|
7165
|
+
contextWindow: number;
|
|
7166
|
+
maxTokens: number;
|
|
7167
|
+
};
|
|
7168
|
+
readonly "kimi-k2.5": {
|
|
7169
|
+
id: string;
|
|
7170
|
+
name: string;
|
|
7171
|
+
api: "openai-completions";
|
|
7172
|
+
provider: string;
|
|
7173
|
+
baseUrl: string;
|
|
7174
|
+
compat: {
|
|
7175
|
+
supportsStore: false;
|
|
7176
|
+
supportsDeveloperRole: false;
|
|
7177
|
+
supportsReasoningEffort: false;
|
|
7178
|
+
maxTokensField: "max_tokens";
|
|
7179
|
+
supportsStrictMode: false;
|
|
7180
|
+
};
|
|
7181
|
+
reasoning: true;
|
|
7182
|
+
input: ("image" | "text")[];
|
|
7183
|
+
cost: {
|
|
7184
|
+
input: number;
|
|
7185
|
+
output: number;
|
|
7186
|
+
cacheRead: number;
|
|
7187
|
+
cacheWrite: number;
|
|
7188
|
+
};
|
|
7189
|
+
contextWindow: number;
|
|
7190
|
+
maxTokens: number;
|
|
7191
|
+
};
|
|
7192
|
+
readonly "kimi-k2.6": {
|
|
7193
|
+
id: string;
|
|
7194
|
+
name: string;
|
|
7195
|
+
api: "openai-completions";
|
|
7196
|
+
provider: string;
|
|
7197
|
+
baseUrl: string;
|
|
7198
|
+
compat: {
|
|
7199
|
+
supportsStore: false;
|
|
7200
|
+
supportsDeveloperRole: false;
|
|
7201
|
+
supportsReasoningEffort: false;
|
|
7202
|
+
maxTokensField: "max_tokens";
|
|
7203
|
+
supportsStrictMode: false;
|
|
7204
|
+
};
|
|
7205
|
+
reasoning: true;
|
|
7206
|
+
input: ("image" | "text")[];
|
|
7207
|
+
cost: {
|
|
7208
|
+
input: number;
|
|
7209
|
+
output: number;
|
|
7210
|
+
cacheRead: number;
|
|
7211
|
+
cacheWrite: number;
|
|
7212
|
+
};
|
|
7213
|
+
contextWindow: number;
|
|
7214
|
+
maxTokens: number;
|
|
7215
|
+
};
|
|
7216
|
+
};
|
|
7217
|
+
readonly nvidia: {
|
|
7218
|
+
readonly "meta/llama-3.1-70b-instruct": {
|
|
7219
|
+
id: string;
|
|
7220
|
+
name: string;
|
|
7221
|
+
api: "openai-completions";
|
|
7222
|
+
provider: string;
|
|
7223
|
+
baseUrl: string;
|
|
7224
|
+
headers: {
|
|
7225
|
+
"NVCF-POLL-SECONDS": string;
|
|
7226
|
+
};
|
|
7227
|
+
compat: {
|
|
7228
|
+
supportsStore: false;
|
|
7229
|
+
supportsDeveloperRole: false;
|
|
7230
|
+
supportsReasoningEffort: false;
|
|
7231
|
+
maxTokensField: "max_tokens";
|
|
7232
|
+
supportsStrictMode: false;
|
|
7233
|
+
supportsLongCacheRetention: false;
|
|
7234
|
+
};
|
|
7235
|
+
reasoning: false;
|
|
7236
|
+
input: "text"[];
|
|
7237
|
+
cost: {
|
|
7238
|
+
input: number;
|
|
7239
|
+
output: number;
|
|
7240
|
+
cacheRead: number;
|
|
7241
|
+
cacheWrite: number;
|
|
7242
|
+
};
|
|
7243
|
+
contextWindow: number;
|
|
7244
|
+
maxTokens: number;
|
|
7245
|
+
};
|
|
7246
|
+
readonly "meta/llama-3.1-8b-instruct": {
|
|
7247
|
+
id: string;
|
|
7248
|
+
name: string;
|
|
7249
|
+
api: "openai-completions";
|
|
7250
|
+
provider: string;
|
|
7251
|
+
baseUrl: string;
|
|
7252
|
+
headers: {
|
|
7253
|
+
"NVCF-POLL-SECONDS": string;
|
|
7254
|
+
};
|
|
7255
|
+
compat: {
|
|
7256
|
+
supportsStore: false;
|
|
7257
|
+
supportsDeveloperRole: false;
|
|
7258
|
+
supportsReasoningEffort: false;
|
|
7259
|
+
maxTokensField: "max_tokens";
|
|
7260
|
+
supportsStrictMode: false;
|
|
7261
|
+
supportsLongCacheRetention: false;
|
|
7262
|
+
};
|
|
7263
|
+
reasoning: false;
|
|
7264
|
+
input: "text"[];
|
|
7265
|
+
cost: {
|
|
7266
|
+
input: number;
|
|
7267
|
+
output: number;
|
|
7268
|
+
cacheRead: number;
|
|
7269
|
+
cacheWrite: number;
|
|
7270
|
+
};
|
|
7271
|
+
contextWindow: number;
|
|
7272
|
+
maxTokens: number;
|
|
7273
|
+
};
|
|
7274
|
+
readonly "meta/llama-3.2-11b-vision-instruct": {
|
|
7275
|
+
id: string;
|
|
7276
|
+
name: string;
|
|
7277
|
+
api: "openai-completions";
|
|
7278
|
+
provider: string;
|
|
7279
|
+
baseUrl: string;
|
|
7280
|
+
headers: {
|
|
7281
|
+
"NVCF-POLL-SECONDS": string;
|
|
7282
|
+
};
|
|
7283
|
+
compat: {
|
|
7284
|
+
supportsStore: false;
|
|
7285
|
+
supportsDeveloperRole: false;
|
|
7286
|
+
supportsReasoningEffort: false;
|
|
7287
|
+
maxTokensField: "max_tokens";
|
|
7288
|
+
supportsStrictMode: false;
|
|
7289
|
+
supportsLongCacheRetention: false;
|
|
7290
|
+
};
|
|
7291
|
+
reasoning: false;
|
|
7292
|
+
input: ("image" | "text")[];
|
|
7293
|
+
cost: {
|
|
7294
|
+
input: number;
|
|
7295
|
+
output: number;
|
|
7296
|
+
cacheRead: number;
|
|
7297
|
+
cacheWrite: number;
|
|
7298
|
+
};
|
|
7299
|
+
contextWindow: number;
|
|
7300
|
+
maxTokens: number;
|
|
7301
|
+
};
|
|
7302
|
+
readonly "meta/llama-3.2-90b-vision-instruct": {
|
|
7303
|
+
id: string;
|
|
7304
|
+
name: string;
|
|
7305
|
+
api: "openai-completions";
|
|
7306
|
+
provider: string;
|
|
7307
|
+
baseUrl: string;
|
|
7308
|
+
headers: {
|
|
7309
|
+
"NVCF-POLL-SECONDS": string;
|
|
7310
|
+
};
|
|
7311
|
+
compat: {
|
|
7312
|
+
supportsStore: false;
|
|
7313
|
+
supportsDeveloperRole: false;
|
|
7314
|
+
supportsReasoningEffort: false;
|
|
7315
|
+
maxTokensField: "max_tokens";
|
|
7316
|
+
supportsStrictMode: false;
|
|
7317
|
+
supportsLongCacheRetention: false;
|
|
7318
|
+
};
|
|
7319
|
+
reasoning: false;
|
|
7320
|
+
input: ("image" | "text")[];
|
|
7321
|
+
cost: {
|
|
7322
|
+
input: number;
|
|
7323
|
+
output: number;
|
|
7324
|
+
cacheRead: number;
|
|
7325
|
+
cacheWrite: number;
|
|
7326
|
+
};
|
|
7327
|
+
contextWindow: number;
|
|
7328
|
+
maxTokens: number;
|
|
7329
|
+
};
|
|
7330
|
+
readonly "meta/llama-3.3-70b-instruct": {
|
|
7331
|
+
id: string;
|
|
7332
|
+
name: string;
|
|
7333
|
+
api: "openai-completions";
|
|
7334
|
+
provider: string;
|
|
7335
|
+
baseUrl: string;
|
|
7336
|
+
headers: {
|
|
7337
|
+
"NVCF-POLL-SECONDS": string;
|
|
7338
|
+
};
|
|
7339
|
+
compat: {
|
|
7340
|
+
supportsStore: false;
|
|
7341
|
+
supportsDeveloperRole: false;
|
|
7342
|
+
supportsReasoningEffort: false;
|
|
7343
|
+
maxTokensField: "max_tokens";
|
|
7344
|
+
supportsStrictMode: false;
|
|
7345
|
+
supportsLongCacheRetention: false;
|
|
7346
|
+
};
|
|
7347
|
+
reasoning: false;
|
|
7348
|
+
input: "text"[];
|
|
7349
|
+
cost: {
|
|
7350
|
+
input: number;
|
|
7351
|
+
output: number;
|
|
7352
|
+
cacheRead: number;
|
|
7353
|
+
cacheWrite: number;
|
|
7354
|
+
};
|
|
7355
|
+
contextWindow: number;
|
|
7356
|
+
maxTokens: number;
|
|
7357
|
+
};
|
|
7358
|
+
readonly "mistralai/mistral-large-3-675b-instruct-2512": {
|
|
7359
|
+
id: string;
|
|
7360
|
+
name: string;
|
|
7361
|
+
api: "openai-completions";
|
|
7362
|
+
provider: string;
|
|
7363
|
+
baseUrl: string;
|
|
7364
|
+
headers: {
|
|
7365
|
+
"NVCF-POLL-SECONDS": string;
|
|
7366
|
+
};
|
|
7367
|
+
compat: {
|
|
7368
|
+
supportsStore: false;
|
|
7369
|
+
supportsDeveloperRole: false;
|
|
7370
|
+
supportsReasoningEffort: false;
|
|
7371
|
+
maxTokensField: "max_tokens";
|
|
7372
|
+
supportsStrictMode: false;
|
|
7373
|
+
supportsLongCacheRetention: false;
|
|
7374
|
+
};
|
|
7375
|
+
reasoning: false;
|
|
7376
|
+
input: ("image" | "text")[];
|
|
7377
|
+
cost: {
|
|
7378
|
+
input: number;
|
|
7379
|
+
output: number;
|
|
7380
|
+
cacheRead: number;
|
|
7381
|
+
cacheWrite: number;
|
|
7382
|
+
};
|
|
7383
|
+
contextWindow: number;
|
|
7384
|
+
maxTokens: number;
|
|
7385
|
+
};
|
|
7386
|
+
readonly "mistralai/mistral-small-4-119b-2603": {
|
|
7387
|
+
id: string;
|
|
7388
|
+
name: string;
|
|
7389
|
+
api: "openai-completions";
|
|
7390
|
+
provider: string;
|
|
7391
|
+
baseUrl: string;
|
|
7392
|
+
headers: {
|
|
7393
|
+
"NVCF-POLL-SECONDS": string;
|
|
7394
|
+
};
|
|
7395
|
+
compat: {
|
|
7396
|
+
supportsStore: false;
|
|
7397
|
+
supportsDeveloperRole: false;
|
|
7398
|
+
supportsReasoningEffort: false;
|
|
7399
|
+
maxTokensField: "max_tokens";
|
|
7400
|
+
supportsStrictMode: false;
|
|
7401
|
+
supportsLongCacheRetention: false;
|
|
7402
|
+
};
|
|
7403
|
+
reasoning: false;
|
|
7404
|
+
input: "text"[];
|
|
7405
|
+
cost: {
|
|
7406
|
+
input: number;
|
|
7407
|
+
output: number;
|
|
7408
|
+
cacheRead: number;
|
|
7409
|
+
cacheWrite: number;
|
|
7410
|
+
};
|
|
7411
|
+
contextWindow: number;
|
|
7412
|
+
maxTokens: number;
|
|
7413
|
+
};
|
|
7414
|
+
readonly "moonshotai/kimi-k2.6": {
|
|
7415
|
+
id: string;
|
|
7416
|
+
name: string;
|
|
7417
|
+
api: "openai-completions";
|
|
7418
|
+
provider: string;
|
|
7419
|
+
baseUrl: string;
|
|
7420
|
+
headers: {
|
|
7421
|
+
"NVCF-POLL-SECONDS": string;
|
|
7422
|
+
};
|
|
7423
|
+
compat: {
|
|
7424
|
+
supportsStore: false;
|
|
7425
|
+
supportsDeveloperRole: false;
|
|
7426
|
+
supportsReasoningEffort: false;
|
|
7427
|
+
maxTokensField: "max_tokens";
|
|
7428
|
+
supportsStrictMode: false;
|
|
7429
|
+
supportsLongCacheRetention: false;
|
|
7430
|
+
};
|
|
7431
|
+
reasoning: true;
|
|
7432
|
+
input: ("image" | "text")[];
|
|
7433
|
+
cost: {
|
|
7434
|
+
input: number;
|
|
7435
|
+
output: number;
|
|
7436
|
+
cacheRead: number;
|
|
7437
|
+
cacheWrite: number;
|
|
7438
|
+
};
|
|
7439
|
+
contextWindow: number;
|
|
7440
|
+
maxTokens: number;
|
|
7441
|
+
};
|
|
7442
|
+
readonly "nvidia/llama-3.3-nemotron-super-49b-v1": {
|
|
7443
|
+
id: string;
|
|
7444
|
+
name: string;
|
|
7445
|
+
api: "openai-completions";
|
|
7446
|
+
provider: string;
|
|
7447
|
+
baseUrl: string;
|
|
7448
|
+
headers: {
|
|
7449
|
+
"NVCF-POLL-SECONDS": string;
|
|
7450
|
+
};
|
|
7451
|
+
compat: {
|
|
7452
|
+
supportsStore: false;
|
|
7453
|
+
supportsDeveloperRole: false;
|
|
7454
|
+
supportsReasoningEffort: false;
|
|
7455
|
+
maxTokensField: "max_tokens";
|
|
7456
|
+
supportsStrictMode: false;
|
|
7457
|
+
supportsLongCacheRetention: false;
|
|
7458
|
+
};
|
|
7459
|
+
reasoning: true;
|
|
7460
|
+
input: "text"[];
|
|
7461
|
+
cost: {
|
|
7462
|
+
input: number;
|
|
7463
|
+
output: number;
|
|
7464
|
+
cacheRead: number;
|
|
7465
|
+
cacheWrite: number;
|
|
7466
|
+
};
|
|
7467
|
+
contextWindow: number;
|
|
7468
|
+
maxTokens: number;
|
|
7469
|
+
};
|
|
7470
|
+
readonly "nvidia/llama-3.3-nemotron-super-49b-v1.5": {
|
|
7471
|
+
id: string;
|
|
7472
|
+
name: string;
|
|
7473
|
+
api: "openai-completions";
|
|
7474
|
+
provider: string;
|
|
7475
|
+
baseUrl: string;
|
|
7476
|
+
headers: {
|
|
7477
|
+
"NVCF-POLL-SECONDS": string;
|
|
7478
|
+
};
|
|
7479
|
+
compat: {
|
|
7480
|
+
supportsStore: false;
|
|
7481
|
+
supportsDeveloperRole: false;
|
|
7482
|
+
supportsReasoningEffort: false;
|
|
7483
|
+
maxTokensField: "max_tokens";
|
|
7484
|
+
supportsStrictMode: false;
|
|
7485
|
+
supportsLongCacheRetention: false;
|
|
7486
|
+
};
|
|
7487
|
+
reasoning: true;
|
|
7488
|
+
input: "text"[];
|
|
7489
|
+
cost: {
|
|
7490
|
+
input: number;
|
|
7491
|
+
output: number;
|
|
7492
|
+
cacheRead: number;
|
|
7493
|
+
cacheWrite: number;
|
|
7494
|
+
};
|
|
7495
|
+
contextWindow: number;
|
|
7496
|
+
maxTokens: number;
|
|
7497
|
+
};
|
|
7498
|
+
readonly "nvidia/nemotron-3-nano-30b-a3b": {
|
|
7499
|
+
id: string;
|
|
7500
|
+
name: string;
|
|
7501
|
+
api: "openai-completions";
|
|
7502
|
+
provider: string;
|
|
7503
|
+
baseUrl: string;
|
|
7504
|
+
headers: {
|
|
7505
|
+
"NVCF-POLL-SECONDS": string;
|
|
7506
|
+
};
|
|
7507
|
+
compat: {
|
|
7508
|
+
supportsStore: false;
|
|
7509
|
+
supportsDeveloperRole: false;
|
|
7510
|
+
supportsReasoningEffort: false;
|
|
7511
|
+
maxTokensField: "max_tokens";
|
|
7512
|
+
supportsStrictMode: false;
|
|
7513
|
+
supportsLongCacheRetention: false;
|
|
7514
|
+
};
|
|
7515
|
+
reasoning: true;
|
|
7516
|
+
input: "text"[];
|
|
7517
|
+
cost: {
|
|
7518
|
+
input: number;
|
|
7519
|
+
output: number;
|
|
7520
|
+
cacheRead: number;
|
|
7521
|
+
cacheWrite: number;
|
|
7522
|
+
};
|
|
7523
|
+
contextWindow: number;
|
|
7524
|
+
maxTokens: number;
|
|
7525
|
+
};
|
|
7526
|
+
readonly "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning": {
|
|
7527
|
+
id: string;
|
|
7528
|
+
name: string;
|
|
7529
|
+
api: "openai-completions";
|
|
7530
|
+
provider: string;
|
|
7531
|
+
baseUrl: string;
|
|
7532
|
+
headers: {
|
|
7533
|
+
"NVCF-POLL-SECONDS": string;
|
|
7534
|
+
};
|
|
7535
|
+
compat: {
|
|
7536
|
+
supportsStore: false;
|
|
7537
|
+
supportsDeveloperRole: false;
|
|
7538
|
+
supportsReasoningEffort: false;
|
|
7539
|
+
maxTokensField: "max_tokens";
|
|
7540
|
+
supportsStrictMode: false;
|
|
7541
|
+
supportsLongCacheRetention: false;
|
|
7542
|
+
};
|
|
7543
|
+
reasoning: true;
|
|
7544
|
+
input: ("image" | "text")[];
|
|
7545
|
+
cost: {
|
|
7546
|
+
input: number;
|
|
7547
|
+
output: number;
|
|
7548
|
+
cacheRead: number;
|
|
7549
|
+
cacheWrite: number;
|
|
7550
|
+
};
|
|
7551
|
+
contextWindow: number;
|
|
7552
|
+
maxTokens: number;
|
|
7553
|
+
};
|
|
7554
|
+
readonly "nvidia/nemotron-3-super-120b-a12b": {
|
|
7555
|
+
id: string;
|
|
7556
|
+
name: string;
|
|
7557
|
+
api: "openai-completions";
|
|
7558
|
+
provider: string;
|
|
7559
|
+
baseUrl: string;
|
|
7560
|
+
headers: {
|
|
7561
|
+
"NVCF-POLL-SECONDS": string;
|
|
7562
|
+
};
|
|
7563
|
+
compat: {
|
|
7564
|
+
supportsStore: false;
|
|
7565
|
+
supportsDeveloperRole: false;
|
|
7566
|
+
supportsReasoningEffort: false;
|
|
7567
|
+
maxTokensField: "max_tokens";
|
|
7568
|
+
supportsStrictMode: false;
|
|
7569
|
+
supportsLongCacheRetention: false;
|
|
7570
|
+
};
|
|
7571
|
+
reasoning: true;
|
|
7572
|
+
input: "text"[];
|
|
7573
|
+
cost: {
|
|
7574
|
+
input: number;
|
|
7575
|
+
output: number;
|
|
7576
|
+
cacheRead: number;
|
|
7577
|
+
cacheWrite: number;
|
|
7578
|
+
};
|
|
7579
|
+
contextWindow: number;
|
|
7580
|
+
maxTokens: number;
|
|
7581
|
+
};
|
|
7582
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
7583
|
+
id: string;
|
|
7584
|
+
name: string;
|
|
7585
|
+
api: "openai-completions";
|
|
7586
|
+
provider: string;
|
|
7587
|
+
baseUrl: string;
|
|
7588
|
+
headers: {
|
|
7589
|
+
"NVCF-POLL-SECONDS": string;
|
|
7590
|
+
};
|
|
7591
|
+
compat: {
|
|
7592
|
+
supportsStore: false;
|
|
7593
|
+
supportsDeveloperRole: false;
|
|
7594
|
+
supportsReasoningEffort: false;
|
|
7595
|
+
maxTokensField: "max_tokens";
|
|
7596
|
+
supportsStrictMode: false;
|
|
7597
|
+
supportsLongCacheRetention: false;
|
|
7598
|
+
};
|
|
7599
|
+
reasoning: true;
|
|
7600
|
+
input: "text"[];
|
|
7601
|
+
cost: {
|
|
7602
|
+
input: number;
|
|
7603
|
+
output: number;
|
|
7604
|
+
cacheRead: number;
|
|
7605
|
+
cacheWrite: number;
|
|
7606
|
+
};
|
|
7607
|
+
contextWindow: number;
|
|
7608
|
+
maxTokens: number;
|
|
7609
|
+
};
|
|
7610
|
+
readonly "nvidia/nvidia-nemotron-nano-9b-v2": {
|
|
7611
|
+
id: string;
|
|
7612
|
+
name: string;
|
|
7613
|
+
api: "openai-completions";
|
|
7614
|
+
provider: string;
|
|
7615
|
+
baseUrl: string;
|
|
7616
|
+
headers: {
|
|
7617
|
+
"NVCF-POLL-SECONDS": string;
|
|
7618
|
+
};
|
|
7619
|
+
compat: {
|
|
7620
|
+
supportsStore: false;
|
|
7621
|
+
supportsDeveloperRole: false;
|
|
7622
|
+
supportsReasoningEffort: false;
|
|
7623
|
+
maxTokensField: "max_tokens";
|
|
7624
|
+
supportsStrictMode: false;
|
|
7625
|
+
supportsLongCacheRetention: false;
|
|
7626
|
+
};
|
|
7627
|
+
reasoning: true;
|
|
7628
|
+
input: "text"[];
|
|
7629
|
+
cost: {
|
|
7630
|
+
input: number;
|
|
7631
|
+
output: number;
|
|
7632
|
+
cacheRead: number;
|
|
7633
|
+
cacheWrite: number;
|
|
7634
|
+
};
|
|
7635
|
+
contextWindow: number;
|
|
7636
|
+
maxTokens: number;
|
|
7637
|
+
};
|
|
7638
|
+
readonly "openai/gpt-oss-20b": {
|
|
7639
|
+
id: string;
|
|
7640
|
+
name: string;
|
|
7641
|
+
api: "openai-completions";
|
|
7642
|
+
provider: string;
|
|
7643
|
+
baseUrl: string;
|
|
7644
|
+
headers: {
|
|
7645
|
+
"NVCF-POLL-SECONDS": string;
|
|
7646
|
+
};
|
|
7647
|
+
compat: {
|
|
7648
|
+
supportsStore: false;
|
|
7649
|
+
supportsDeveloperRole: false;
|
|
7650
|
+
supportsReasoningEffort: false;
|
|
7651
|
+
maxTokensField: "max_tokens";
|
|
7652
|
+
supportsStrictMode: false;
|
|
7653
|
+
supportsLongCacheRetention: false;
|
|
7654
|
+
};
|
|
7655
|
+
reasoning: true;
|
|
6803
7656
|
input: "text"[];
|
|
6804
7657
|
cost: {
|
|
6805
7658
|
input: number;
|
|
@@ -6810,20 +7663,24 @@ export declare const MODELS: {
|
|
|
6810
7663
|
contextWindow: number;
|
|
6811
7664
|
maxTokens: number;
|
|
6812
7665
|
};
|
|
6813
|
-
readonly "
|
|
7666
|
+
readonly "qwen/qwen3-coder-480b-a35b-instruct": {
|
|
6814
7667
|
id: string;
|
|
6815
7668
|
name: string;
|
|
6816
7669
|
api: "openai-completions";
|
|
6817
7670
|
provider: string;
|
|
6818
7671
|
baseUrl: string;
|
|
7672
|
+
headers: {
|
|
7673
|
+
"NVCF-POLL-SECONDS": string;
|
|
7674
|
+
};
|
|
6819
7675
|
compat: {
|
|
6820
7676
|
supportsStore: false;
|
|
6821
7677
|
supportsDeveloperRole: false;
|
|
6822
7678
|
supportsReasoningEffort: false;
|
|
6823
7679
|
maxTokensField: "max_tokens";
|
|
6824
7680
|
supportsStrictMode: false;
|
|
7681
|
+
supportsLongCacheRetention: false;
|
|
6825
7682
|
};
|
|
6826
|
-
reasoning:
|
|
7683
|
+
reasoning: false;
|
|
6827
7684
|
input: "text"[];
|
|
6828
7685
|
cost: {
|
|
6829
7686
|
input: number;
|
|
@@ -6834,21 +7691,25 @@ export declare const MODELS: {
|
|
|
6834
7691
|
contextWindow: number;
|
|
6835
7692
|
maxTokens: number;
|
|
6836
7693
|
};
|
|
6837
|
-
readonly "
|
|
7694
|
+
readonly "qwen/qwen3.5-122b-a10b": {
|
|
6838
7695
|
id: string;
|
|
6839
7696
|
name: string;
|
|
6840
7697
|
api: "openai-completions";
|
|
6841
7698
|
provider: string;
|
|
6842
7699
|
baseUrl: string;
|
|
7700
|
+
headers: {
|
|
7701
|
+
"NVCF-POLL-SECONDS": string;
|
|
7702
|
+
};
|
|
6843
7703
|
compat: {
|
|
6844
7704
|
supportsStore: false;
|
|
6845
7705
|
supportsDeveloperRole: false;
|
|
6846
7706
|
supportsReasoningEffort: false;
|
|
6847
7707
|
maxTokensField: "max_tokens";
|
|
6848
7708
|
supportsStrictMode: false;
|
|
7709
|
+
supportsLongCacheRetention: false;
|
|
6849
7710
|
};
|
|
6850
7711
|
reasoning: true;
|
|
6851
|
-
input: "text"[];
|
|
7712
|
+
input: ("image" | "text")[];
|
|
6852
7713
|
cost: {
|
|
6853
7714
|
input: number;
|
|
6854
7715
|
output: number;
|
|
@@ -6858,20 +7719,24 @@ export declare const MODELS: {
|
|
|
6858
7719
|
contextWindow: number;
|
|
6859
7720
|
maxTokens: number;
|
|
6860
7721
|
};
|
|
6861
|
-
readonly "
|
|
7722
|
+
readonly "stepfun-ai/step-3.5-flash": {
|
|
6862
7723
|
id: string;
|
|
6863
7724
|
name: string;
|
|
6864
7725
|
api: "openai-completions";
|
|
6865
7726
|
provider: string;
|
|
6866
7727
|
baseUrl: string;
|
|
7728
|
+
headers: {
|
|
7729
|
+
"NVCF-POLL-SECONDS": string;
|
|
7730
|
+
};
|
|
6867
7731
|
compat: {
|
|
6868
7732
|
supportsStore: false;
|
|
6869
7733
|
supportsDeveloperRole: false;
|
|
6870
7734
|
supportsReasoningEffort: false;
|
|
6871
7735
|
maxTokensField: "max_tokens";
|
|
6872
7736
|
supportsStrictMode: false;
|
|
7737
|
+
supportsLongCacheRetention: false;
|
|
6873
7738
|
};
|
|
6874
|
-
reasoning:
|
|
7739
|
+
reasoning: true;
|
|
6875
7740
|
input: "text"[];
|
|
6876
7741
|
cost: {
|
|
6877
7742
|
input: number;
|
|
@@ -6882,18 +7747,22 @@ export declare const MODELS: {
|
|
|
6882
7747
|
contextWindow: number;
|
|
6883
7748
|
maxTokens: number;
|
|
6884
7749
|
};
|
|
6885
|
-
readonly "
|
|
7750
|
+
readonly "stepfun-ai/step-3.7-flash": {
|
|
6886
7751
|
id: string;
|
|
6887
7752
|
name: string;
|
|
6888
7753
|
api: "openai-completions";
|
|
6889
7754
|
provider: string;
|
|
6890
7755
|
baseUrl: string;
|
|
7756
|
+
headers: {
|
|
7757
|
+
"NVCF-POLL-SECONDS": string;
|
|
7758
|
+
};
|
|
6891
7759
|
compat: {
|
|
6892
7760
|
supportsStore: false;
|
|
6893
7761
|
supportsDeveloperRole: false;
|
|
6894
7762
|
supportsReasoningEffort: false;
|
|
6895
7763
|
maxTokensField: "max_tokens";
|
|
6896
7764
|
supportsStrictMode: false;
|
|
7765
|
+
supportsLongCacheRetention: false;
|
|
6897
7766
|
};
|
|
6898
7767
|
reasoning: true;
|
|
6899
7768
|
input: ("image" | "text")[];
|
|
@@ -6906,21 +7775,25 @@ export declare const MODELS: {
|
|
|
6906
7775
|
contextWindow: number;
|
|
6907
7776
|
maxTokens: number;
|
|
6908
7777
|
};
|
|
6909
|
-
readonly "
|
|
7778
|
+
readonly "z-ai/glm-5.1": {
|
|
6910
7779
|
id: string;
|
|
6911
7780
|
name: string;
|
|
6912
7781
|
api: "openai-completions";
|
|
6913
7782
|
provider: string;
|
|
6914
7783
|
baseUrl: string;
|
|
7784
|
+
headers: {
|
|
7785
|
+
"NVCF-POLL-SECONDS": string;
|
|
7786
|
+
};
|
|
6915
7787
|
compat: {
|
|
6916
7788
|
supportsStore: false;
|
|
6917
7789
|
supportsDeveloperRole: false;
|
|
6918
7790
|
supportsReasoningEffort: false;
|
|
6919
7791
|
maxTokensField: "max_tokens";
|
|
6920
7792
|
supportsStrictMode: false;
|
|
7793
|
+
supportsLongCacheRetention: false;
|
|
6921
7794
|
};
|
|
6922
7795
|
reasoning: true;
|
|
6923
|
-
input:
|
|
7796
|
+
input: "text"[];
|
|
6924
7797
|
cost: {
|
|
6925
7798
|
input: number;
|
|
6926
7799
|
output: number;
|
|
@@ -7563,6 +8436,7 @@ export declare const MODELS: {
|
|
|
7563
8436
|
thinkingLevelMap: {
|
|
7564
8437
|
off: string;
|
|
7565
8438
|
xhigh: string;
|
|
8439
|
+
minimal: null;
|
|
7566
8440
|
};
|
|
7567
8441
|
input: ("image" | "text")[];
|
|
7568
8442
|
cost: {
|
|
@@ -7735,48 +8609,6 @@ export declare const MODELS: {
|
|
|
7735
8609
|
};
|
|
7736
8610
|
};
|
|
7737
8611
|
readonly "openai-codex": {
|
|
7738
|
-
readonly "gpt-5.2": {
|
|
7739
|
-
id: string;
|
|
7740
|
-
name: string;
|
|
7741
|
-
api: "openai-codex-responses";
|
|
7742
|
-
provider: string;
|
|
7743
|
-
baseUrl: string;
|
|
7744
|
-
reasoning: true;
|
|
7745
|
-
thinkingLevelMap: {
|
|
7746
|
-
xhigh: string;
|
|
7747
|
-
minimal: string;
|
|
7748
|
-
};
|
|
7749
|
-
input: ("image" | "text")[];
|
|
7750
|
-
cost: {
|
|
7751
|
-
input: number;
|
|
7752
|
-
output: number;
|
|
7753
|
-
cacheRead: number;
|
|
7754
|
-
cacheWrite: number;
|
|
7755
|
-
};
|
|
7756
|
-
contextWindow: number;
|
|
7757
|
-
maxTokens: number;
|
|
7758
|
-
};
|
|
7759
|
-
readonly "gpt-5.3-codex": {
|
|
7760
|
-
id: string;
|
|
7761
|
-
name: string;
|
|
7762
|
-
api: "openai-codex-responses";
|
|
7763
|
-
provider: string;
|
|
7764
|
-
baseUrl: string;
|
|
7765
|
-
reasoning: true;
|
|
7766
|
-
thinkingLevelMap: {
|
|
7767
|
-
xhigh: string;
|
|
7768
|
-
minimal: string;
|
|
7769
|
-
};
|
|
7770
|
-
input: ("image" | "text")[];
|
|
7771
|
-
cost: {
|
|
7772
|
-
input: number;
|
|
7773
|
-
output: number;
|
|
7774
|
-
cacheRead: number;
|
|
7775
|
-
cacheWrite: number;
|
|
7776
|
-
};
|
|
7777
|
-
contextWindow: number;
|
|
7778
|
-
maxTokens: number;
|
|
7779
|
-
};
|
|
7780
8612
|
readonly "gpt-5.3-codex-spark": {
|
|
7781
8613
|
id: string;
|
|
7782
8614
|
name: string;
|
|
@@ -7962,6 +8794,7 @@ export declare const MODELS: {
|
|
|
7962
8794
|
baseUrl: string;
|
|
7963
8795
|
compat: {
|
|
7964
8796
|
forceAdaptiveThinking: true;
|
|
8797
|
+
supportsTemperature: false;
|
|
7965
8798
|
};
|
|
7966
8799
|
reasoning: true;
|
|
7967
8800
|
thinkingLevelMap: {
|
|
@@ -7985,6 +8818,7 @@ export declare const MODELS: {
|
|
|
7985
8818
|
baseUrl: string;
|
|
7986
8819
|
compat: {
|
|
7987
8820
|
forceAdaptiveThinking: true;
|
|
8821
|
+
supportsTemperature: false;
|
|
7988
8822
|
};
|
|
7989
8823
|
reasoning: true;
|
|
7990
8824
|
thinkingLevelMap: {
|
|
@@ -8054,6 +8888,34 @@ export declare const MODELS: {
|
|
|
8054
8888
|
contextWindow: number;
|
|
8055
8889
|
maxTokens: number;
|
|
8056
8890
|
};
|
|
8891
|
+
readonly "deepseek-v4-flash": {
|
|
8892
|
+
id: string;
|
|
8893
|
+
name: string;
|
|
8894
|
+
api: "openai-completions";
|
|
8895
|
+
provider: string;
|
|
8896
|
+
baseUrl: string;
|
|
8897
|
+
compat: {
|
|
8898
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
8899
|
+
thinkingFormat: "deepseek";
|
|
8900
|
+
};
|
|
8901
|
+
reasoning: true;
|
|
8902
|
+
thinkingLevelMap: {
|
|
8903
|
+
minimal: null;
|
|
8904
|
+
low: null;
|
|
8905
|
+
medium: null;
|
|
8906
|
+
high: string;
|
|
8907
|
+
xhigh: string;
|
|
8908
|
+
};
|
|
8909
|
+
input: "text"[];
|
|
8910
|
+
cost: {
|
|
8911
|
+
input: number;
|
|
8912
|
+
output: number;
|
|
8913
|
+
cacheRead: number;
|
|
8914
|
+
cacheWrite: number;
|
|
8915
|
+
};
|
|
8916
|
+
contextWindow: number;
|
|
8917
|
+
maxTokens: number;
|
|
8918
|
+
};
|
|
8057
8919
|
readonly "deepseek-v4-flash-free": {
|
|
8058
8920
|
id: string;
|
|
8059
8921
|
name: string;
|
|
@@ -8626,7 +9488,7 @@ export declare const MODELS: {
|
|
|
8626
9488
|
contextWindow: number;
|
|
8627
9489
|
maxTokens: number;
|
|
8628
9490
|
};
|
|
8629
|
-
readonly "nemotron-3-
|
|
9491
|
+
readonly "nemotron-3-ultra-free": {
|
|
8630
9492
|
id: string;
|
|
8631
9493
|
name: string;
|
|
8632
9494
|
api: "openai-completions";
|
|
@@ -8880,6 +9742,23 @@ export declare const MODELS: {
|
|
|
8880
9742
|
contextWindow: number;
|
|
8881
9743
|
maxTokens: number;
|
|
8882
9744
|
};
|
|
9745
|
+
readonly "minimax-m3": {
|
|
9746
|
+
id: string;
|
|
9747
|
+
name: string;
|
|
9748
|
+
api: "anthropic-messages";
|
|
9749
|
+
provider: string;
|
|
9750
|
+
baseUrl: string;
|
|
9751
|
+
reasoning: true;
|
|
9752
|
+
input: ("image" | "text")[];
|
|
9753
|
+
cost: {
|
|
9754
|
+
input: number;
|
|
9755
|
+
output: number;
|
|
9756
|
+
cacheRead: number;
|
|
9757
|
+
cacheWrite: number;
|
|
9758
|
+
};
|
|
9759
|
+
contextWindow: number;
|
|
9760
|
+
maxTokens: number;
|
|
9761
|
+
};
|
|
8883
9762
|
readonly "qwen3.6-plus": {
|
|
8884
9763
|
id: string;
|
|
8885
9764
|
name: string;
|
|
@@ -8917,6 +9796,23 @@ export declare const MODELS: {
|
|
|
8917
9796
|
contextWindow: number;
|
|
8918
9797
|
maxTokens: number;
|
|
8919
9798
|
};
|
|
9799
|
+
readonly "qwen3.7-plus": {
|
|
9800
|
+
id: string;
|
|
9801
|
+
name: string;
|
|
9802
|
+
api: "anthropic-messages";
|
|
9803
|
+
provider: string;
|
|
9804
|
+
baseUrl: string;
|
|
9805
|
+
reasoning: true;
|
|
9806
|
+
input: ("image" | "text")[];
|
|
9807
|
+
cost: {
|
|
9808
|
+
input: number;
|
|
9809
|
+
output: number;
|
|
9810
|
+
cacheRead: number;
|
|
9811
|
+
cacheWrite: number;
|
|
9812
|
+
};
|
|
9813
|
+
contextWindow: number;
|
|
9814
|
+
maxTokens: number;
|
|
9815
|
+
};
|
|
8920
9816
|
};
|
|
8921
9817
|
readonly openrouter: {
|
|
8922
9818
|
readonly "ai21/jamba-large-1.7": {
|
|
@@ -9362,40 +10258,6 @@ export declare const MODELS: {
|
|
|
9362
10258
|
contextWindow: number;
|
|
9363
10259
|
maxTokens: number;
|
|
9364
10260
|
};
|
|
9365
|
-
readonly "baidu/ernie-4.5-21b-a3b": {
|
|
9366
|
-
id: string;
|
|
9367
|
-
name: string;
|
|
9368
|
-
api: "openai-completions";
|
|
9369
|
-
provider: string;
|
|
9370
|
-
baseUrl: string;
|
|
9371
|
-
reasoning: false;
|
|
9372
|
-
input: "text"[];
|
|
9373
|
-
cost: {
|
|
9374
|
-
input: number;
|
|
9375
|
-
output: number;
|
|
9376
|
-
cacheRead: number;
|
|
9377
|
-
cacheWrite: number;
|
|
9378
|
-
};
|
|
9379
|
-
contextWindow: number;
|
|
9380
|
-
maxTokens: number;
|
|
9381
|
-
};
|
|
9382
|
-
readonly "baidu/ernie-4.5-vl-28b-a3b": {
|
|
9383
|
-
id: string;
|
|
9384
|
-
name: string;
|
|
9385
|
-
api: "openai-completions";
|
|
9386
|
-
provider: string;
|
|
9387
|
-
baseUrl: string;
|
|
9388
|
-
reasoning: true;
|
|
9389
|
-
input: ("image" | "text")[];
|
|
9390
|
-
cost: {
|
|
9391
|
-
input: number;
|
|
9392
|
-
output: number;
|
|
9393
|
-
cacheRead: number;
|
|
9394
|
-
cacheWrite: number;
|
|
9395
|
-
};
|
|
9396
|
-
contextWindow: number;
|
|
9397
|
-
maxTokens: number;
|
|
9398
|
-
};
|
|
9399
10261
|
readonly "bytedance-seed/seed-1.6": {
|
|
9400
10262
|
id: string;
|
|
9401
10263
|
name: string;
|
|
@@ -9661,33 +10523,6 @@ export declare const MODELS: {
|
|
|
9661
10523
|
contextWindow: number;
|
|
9662
10524
|
maxTokens: number;
|
|
9663
10525
|
};
|
|
9664
|
-
readonly "deepseek/deepseek-v4-flash:free": {
|
|
9665
|
-
id: string;
|
|
9666
|
-
name: string;
|
|
9667
|
-
api: "openai-completions";
|
|
9668
|
-
provider: string;
|
|
9669
|
-
baseUrl: string;
|
|
9670
|
-
compat: {
|
|
9671
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
9672
|
-
};
|
|
9673
|
-
reasoning: true;
|
|
9674
|
-
thinkingLevelMap: {
|
|
9675
|
-
minimal: null;
|
|
9676
|
-
low: null;
|
|
9677
|
-
medium: null;
|
|
9678
|
-
high: string;
|
|
9679
|
-
xhigh: string;
|
|
9680
|
-
};
|
|
9681
|
-
input: "text"[];
|
|
9682
|
-
cost: {
|
|
9683
|
-
input: number;
|
|
9684
|
-
output: number;
|
|
9685
|
-
cacheRead: number;
|
|
9686
|
-
cacheWrite: number;
|
|
9687
|
-
};
|
|
9688
|
-
contextWindow: number;
|
|
9689
|
-
maxTokens: number;
|
|
9690
|
-
};
|
|
9691
10526
|
readonly "deepseek/deepseek-v4-pro": {
|
|
9692
10527
|
id: string;
|
|
9693
10528
|
name: string;
|
|
@@ -9732,40 +10567,6 @@ export declare const MODELS: {
|
|
|
9732
10567
|
contextWindow: number;
|
|
9733
10568
|
maxTokens: number;
|
|
9734
10569
|
};
|
|
9735
|
-
readonly "google/gemini-2.0-flash-001": {
|
|
9736
|
-
id: string;
|
|
9737
|
-
name: string;
|
|
9738
|
-
api: "openai-completions";
|
|
9739
|
-
provider: string;
|
|
9740
|
-
baseUrl: string;
|
|
9741
|
-
reasoning: false;
|
|
9742
|
-
input: ("image" | "text")[];
|
|
9743
|
-
cost: {
|
|
9744
|
-
input: number;
|
|
9745
|
-
output: number;
|
|
9746
|
-
cacheRead: number;
|
|
9747
|
-
cacheWrite: number;
|
|
9748
|
-
};
|
|
9749
|
-
contextWindow: number;
|
|
9750
|
-
maxTokens: number;
|
|
9751
|
-
};
|
|
9752
|
-
readonly "google/gemini-2.0-flash-lite-001": {
|
|
9753
|
-
id: string;
|
|
9754
|
-
name: string;
|
|
9755
|
-
api: "openai-completions";
|
|
9756
|
-
provider: string;
|
|
9757
|
-
baseUrl: string;
|
|
9758
|
-
reasoning: false;
|
|
9759
|
-
input: ("image" | "text")[];
|
|
9760
|
-
cost: {
|
|
9761
|
-
input: number;
|
|
9762
|
-
output: number;
|
|
9763
|
-
cacheRead: number;
|
|
9764
|
-
cacheWrite: number;
|
|
9765
|
-
};
|
|
9766
|
-
contextWindow: number;
|
|
9767
|
-
maxTokens: number;
|
|
9768
|
-
};
|
|
9769
10570
|
readonly "google/gemini-2.5-flash": {
|
|
9770
10571
|
id: string;
|
|
9771
10572
|
name: string;
|
|
@@ -10245,7 +11046,7 @@ export declare const MODELS: {
|
|
|
10245
11046
|
contextWindow: number;
|
|
10246
11047
|
maxTokens: number;
|
|
10247
11048
|
};
|
|
10248
|
-
readonly "meta-llama/llama-4-
|
|
11049
|
+
readonly "meta-llama/llama-4-maverick": {
|
|
10249
11050
|
id: string;
|
|
10250
11051
|
name: string;
|
|
10251
11052
|
api: "openai-completions";
|
|
@@ -10262,14 +11063,14 @@ export declare const MODELS: {
|
|
|
10262
11063
|
contextWindow: number;
|
|
10263
11064
|
maxTokens: number;
|
|
10264
11065
|
};
|
|
10265
|
-
readonly "
|
|
11066
|
+
readonly "meta-llama/llama-4-scout": {
|
|
10266
11067
|
id: string;
|
|
10267
11068
|
name: string;
|
|
10268
11069
|
api: "openai-completions";
|
|
10269
11070
|
provider: string;
|
|
10270
11071
|
baseUrl: string;
|
|
10271
|
-
reasoning:
|
|
10272
|
-
input: "text"[];
|
|
11072
|
+
reasoning: false;
|
|
11073
|
+
input: ("image" | "text")[];
|
|
10273
11074
|
cost: {
|
|
10274
11075
|
input: number;
|
|
10275
11076
|
output: number;
|
|
@@ -10279,7 +11080,7 @@ export declare const MODELS: {
|
|
|
10279
11080
|
contextWindow: number;
|
|
10280
11081
|
maxTokens: number;
|
|
10281
11082
|
};
|
|
10282
|
-
readonly "minimax/minimax-
|
|
11083
|
+
readonly "minimax/minimax-m1": {
|
|
10283
11084
|
id: string;
|
|
10284
11085
|
name: string;
|
|
10285
11086
|
api: "openai-completions";
|
|
@@ -10296,7 +11097,7 @@ export declare const MODELS: {
|
|
|
10296
11097
|
contextWindow: number;
|
|
10297
11098
|
maxTokens: number;
|
|
10298
11099
|
};
|
|
10299
|
-
readonly "minimax/minimax-m2
|
|
11100
|
+
readonly "minimax/minimax-m2": {
|
|
10300
11101
|
id: string;
|
|
10301
11102
|
name: string;
|
|
10302
11103
|
api: "openai-completions";
|
|
@@ -10313,7 +11114,7 @@ export declare const MODELS: {
|
|
|
10313
11114
|
contextWindow: number;
|
|
10314
11115
|
maxTokens: number;
|
|
10315
11116
|
};
|
|
10316
|
-
readonly "minimax/minimax-m2.
|
|
11117
|
+
readonly "minimax/minimax-m2.1": {
|
|
10317
11118
|
id: string;
|
|
10318
11119
|
name: string;
|
|
10319
11120
|
api: "openai-completions";
|
|
@@ -10330,7 +11131,7 @@ export declare const MODELS: {
|
|
|
10330
11131
|
contextWindow: number;
|
|
10331
11132
|
maxTokens: number;
|
|
10332
11133
|
};
|
|
10333
|
-
readonly "minimax/minimax-m2.5
|
|
11134
|
+
readonly "minimax/minimax-m2.5": {
|
|
10334
11135
|
id: string;
|
|
10335
11136
|
name: string;
|
|
10336
11137
|
api: "openai-completions";
|
|
@@ -10364,31 +11165,14 @@ export declare const MODELS: {
|
|
|
10364
11165
|
contextWindow: number;
|
|
10365
11166
|
maxTokens: number;
|
|
10366
11167
|
};
|
|
10367
|
-
readonly "
|
|
10368
|
-
id: string;
|
|
10369
|
-
name: string;
|
|
10370
|
-
api: "openai-completions";
|
|
10371
|
-
provider: string;
|
|
10372
|
-
baseUrl: string;
|
|
10373
|
-
reasoning: false;
|
|
10374
|
-
input: "text"[];
|
|
10375
|
-
cost: {
|
|
10376
|
-
input: number;
|
|
10377
|
-
output: number;
|
|
10378
|
-
cacheRead: number;
|
|
10379
|
-
cacheWrite: number;
|
|
10380
|
-
};
|
|
10381
|
-
contextWindow: number;
|
|
10382
|
-
maxTokens: number;
|
|
10383
|
-
};
|
|
10384
|
-
readonly "mistralai/devstral-2512": {
|
|
11168
|
+
readonly "minimax/minimax-m3": {
|
|
10385
11169
|
id: string;
|
|
10386
11170
|
name: string;
|
|
10387
11171
|
api: "openai-completions";
|
|
10388
11172
|
provider: string;
|
|
10389
11173
|
baseUrl: string;
|
|
10390
|
-
reasoning:
|
|
10391
|
-
input: "text"[];
|
|
11174
|
+
reasoning: true;
|
|
11175
|
+
input: ("image" | "text")[];
|
|
10392
11176
|
cost: {
|
|
10393
11177
|
input: number;
|
|
10394
11178
|
output: number;
|
|
@@ -10398,7 +11182,7 @@ export declare const MODELS: {
|
|
|
10398
11182
|
contextWindow: number;
|
|
10399
11183
|
maxTokens: number;
|
|
10400
11184
|
};
|
|
10401
|
-
readonly "mistralai/
|
|
11185
|
+
readonly "mistralai/codestral-2508": {
|
|
10402
11186
|
id: string;
|
|
10403
11187
|
name: string;
|
|
10404
11188
|
api: "openai-completions";
|
|
@@ -10415,7 +11199,7 @@ export declare const MODELS: {
|
|
|
10415
11199
|
contextWindow: number;
|
|
10416
11200
|
maxTokens: number;
|
|
10417
11201
|
};
|
|
10418
|
-
readonly "mistralai/devstral-
|
|
11202
|
+
readonly "mistralai/devstral-2512": {
|
|
10419
11203
|
id: string;
|
|
10420
11204
|
name: string;
|
|
10421
11205
|
api: "openai-completions";
|
|
@@ -10517,23 +11301,6 @@ export declare const MODELS: {
|
|
|
10517
11301
|
contextWindow: number;
|
|
10518
11302
|
maxTokens: number;
|
|
10519
11303
|
};
|
|
10520
|
-
readonly "mistralai/mistral-large-2411": {
|
|
10521
|
-
id: string;
|
|
10522
|
-
name: string;
|
|
10523
|
-
api: "openai-completions";
|
|
10524
|
-
provider: string;
|
|
10525
|
-
baseUrl: string;
|
|
10526
|
-
reasoning: false;
|
|
10527
|
-
input: "text"[];
|
|
10528
|
-
cost: {
|
|
10529
|
-
input: number;
|
|
10530
|
-
output: number;
|
|
10531
|
-
cacheRead: number;
|
|
10532
|
-
cacheWrite: number;
|
|
10533
|
-
};
|
|
10534
|
-
contextWindow: number;
|
|
10535
|
-
maxTokens: number;
|
|
10536
|
-
};
|
|
10537
11304
|
readonly "mistralai/mistral-large-2512": {
|
|
10538
11305
|
id: string;
|
|
10539
11306
|
name: string;
|
|
@@ -10687,23 +11454,6 @@ export declare const MODELS: {
|
|
|
10687
11454
|
contextWindow: number;
|
|
10688
11455
|
maxTokens: number;
|
|
10689
11456
|
};
|
|
10690
|
-
readonly "mistralai/pixtral-large-2411": {
|
|
10691
|
-
id: string;
|
|
10692
|
-
name: string;
|
|
10693
|
-
api: "openai-completions";
|
|
10694
|
-
provider: string;
|
|
10695
|
-
baseUrl: string;
|
|
10696
|
-
reasoning: false;
|
|
10697
|
-
input: ("image" | "text")[];
|
|
10698
|
-
cost: {
|
|
10699
|
-
input: number;
|
|
10700
|
-
output: number;
|
|
10701
|
-
cacheRead: number;
|
|
10702
|
-
cacheWrite: number;
|
|
10703
|
-
};
|
|
10704
|
-
contextWindow: number;
|
|
10705
|
-
maxTokens: number;
|
|
10706
|
-
};
|
|
10707
11457
|
readonly "mistralai/voxtral-small-24b-2507": {
|
|
10708
11458
|
id: string;
|
|
10709
11459
|
name: string;
|
|
@@ -10797,6 +11547,7 @@ export declare const MODELS: {
|
|
|
10797
11547
|
baseUrl: string;
|
|
10798
11548
|
compat: {
|
|
10799
11549
|
supportsDeveloperRole: false;
|
|
11550
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
10800
11551
|
};
|
|
10801
11552
|
reasoning: true;
|
|
10802
11553
|
input: ("image" | "text")[];
|
|
@@ -10817,6 +11568,7 @@ export declare const MODELS: {
|
|
|
10817
11568
|
baseUrl: string;
|
|
10818
11569
|
compat: {
|
|
10819
11570
|
supportsDeveloperRole: false;
|
|
11571
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
10820
11572
|
};
|
|
10821
11573
|
reasoning: true;
|
|
10822
11574
|
input: ("image" | "text")[];
|
|
@@ -10829,23 +11581,6 @@ export declare const MODELS: {
|
|
|
10829
11581
|
contextWindow: number;
|
|
10830
11582
|
maxTokens: number;
|
|
10831
11583
|
};
|
|
10832
|
-
readonly "nex-agi/deepseek-v3.1-nex-n1": {
|
|
10833
|
-
id: string;
|
|
10834
|
-
name: string;
|
|
10835
|
-
api: "openai-completions";
|
|
10836
|
-
provider: string;
|
|
10837
|
-
baseUrl: string;
|
|
10838
|
-
reasoning: false;
|
|
10839
|
-
input: "text"[];
|
|
10840
|
-
cost: {
|
|
10841
|
-
input: number;
|
|
10842
|
-
output: number;
|
|
10843
|
-
cacheRead: number;
|
|
10844
|
-
cacheWrite: number;
|
|
10845
|
-
};
|
|
10846
|
-
contextWindow: number;
|
|
10847
|
-
maxTokens: number;
|
|
10848
|
-
};
|
|
10849
11584
|
readonly "nvidia/llama-3.3-nemotron-super-49b-v1.5": {
|
|
10850
11585
|
id: string;
|
|
10851
11586
|
name: string;
|
|
@@ -10948,14 +11683,14 @@ export declare const MODELS: {
|
|
|
10948
11683
|
contextWindow: number;
|
|
10949
11684
|
maxTokens: number;
|
|
10950
11685
|
};
|
|
10951
|
-
readonly "nvidia/nemotron-
|
|
11686
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
10952
11687
|
id: string;
|
|
10953
11688
|
name: string;
|
|
10954
11689
|
api: "openai-completions";
|
|
10955
11690
|
provider: string;
|
|
10956
11691
|
baseUrl: string;
|
|
10957
11692
|
reasoning: true;
|
|
10958
|
-
input:
|
|
11693
|
+
input: "text"[];
|
|
10959
11694
|
cost: {
|
|
10960
11695
|
input: number;
|
|
10961
11696
|
output: number;
|
|
@@ -10965,7 +11700,7 @@ export declare const MODELS: {
|
|
|
10965
11700
|
contextWindow: number;
|
|
10966
11701
|
maxTokens: number;
|
|
10967
11702
|
};
|
|
10968
|
-
readonly "nvidia/nemotron-
|
|
11703
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b:free": {
|
|
10969
11704
|
id: string;
|
|
10970
11705
|
name: string;
|
|
10971
11706
|
api: "openai-completions";
|
|
@@ -10982,14 +11717,14 @@ export declare const MODELS: {
|
|
|
10982
11717
|
contextWindow: number;
|
|
10983
11718
|
maxTokens: number;
|
|
10984
11719
|
};
|
|
10985
|
-
readonly "nvidia/nemotron-nano-
|
|
11720
|
+
readonly "nvidia/nemotron-nano-12b-v2-vl:free": {
|
|
10986
11721
|
id: string;
|
|
10987
11722
|
name: string;
|
|
10988
11723
|
api: "openai-completions";
|
|
10989
11724
|
provider: string;
|
|
10990
11725
|
baseUrl: string;
|
|
10991
11726
|
reasoning: true;
|
|
10992
|
-
input: "text"[];
|
|
11727
|
+
input: ("image" | "text")[];
|
|
10993
11728
|
cost: {
|
|
10994
11729
|
input: number;
|
|
10995
11730
|
output: number;
|
|
@@ -10999,13 +11734,13 @@ export declare const MODELS: {
|
|
|
10999
11734
|
contextWindow: number;
|
|
11000
11735
|
maxTokens: number;
|
|
11001
11736
|
};
|
|
11002
|
-
readonly "
|
|
11737
|
+
readonly "nvidia/nemotron-nano-9b-v2": {
|
|
11003
11738
|
id: string;
|
|
11004
11739
|
name: string;
|
|
11005
11740
|
api: "openai-completions";
|
|
11006
11741
|
provider: string;
|
|
11007
11742
|
baseUrl: string;
|
|
11008
|
-
reasoning:
|
|
11743
|
+
reasoning: true;
|
|
11009
11744
|
input: "text"[];
|
|
11010
11745
|
cost: {
|
|
11011
11746
|
input: number;
|
|
@@ -11016,13 +11751,13 @@ export declare const MODELS: {
|
|
|
11016
11751
|
contextWindow: number;
|
|
11017
11752
|
maxTokens: number;
|
|
11018
11753
|
};
|
|
11019
|
-
readonly "
|
|
11754
|
+
readonly "nvidia/nemotron-nano-9b-v2:free": {
|
|
11020
11755
|
id: string;
|
|
11021
11756
|
name: string;
|
|
11022
11757
|
api: "openai-completions";
|
|
11023
11758
|
provider: string;
|
|
11024
11759
|
baseUrl: string;
|
|
11025
|
-
reasoning:
|
|
11760
|
+
reasoning: true;
|
|
11026
11761
|
input: "text"[];
|
|
11027
11762
|
cost: {
|
|
11028
11763
|
input: number;
|
|
@@ -11033,7 +11768,7 @@ export declare const MODELS: {
|
|
|
11033
11768
|
contextWindow: number;
|
|
11034
11769
|
maxTokens: number;
|
|
11035
11770
|
};
|
|
11036
|
-
readonly "openai/gpt-3.5-turbo
|
|
11771
|
+
readonly "openai/gpt-3.5-turbo": {
|
|
11037
11772
|
id: string;
|
|
11038
11773
|
name: string;
|
|
11039
11774
|
api: "openai-completions";
|
|
@@ -11050,7 +11785,7 @@ export declare const MODELS: {
|
|
|
11050
11785
|
contextWindow: number;
|
|
11051
11786
|
maxTokens: number;
|
|
11052
11787
|
};
|
|
11053
|
-
readonly "openai/gpt-
|
|
11788
|
+
readonly "openai/gpt-3.5-turbo-0613": {
|
|
11054
11789
|
id: string;
|
|
11055
11790
|
name: string;
|
|
11056
11791
|
api: "openai-completions";
|
|
@@ -11067,7 +11802,7 @@ export declare const MODELS: {
|
|
|
11067
11802
|
contextWindow: number;
|
|
11068
11803
|
maxTokens: number;
|
|
11069
11804
|
};
|
|
11070
|
-
readonly "openai/gpt-
|
|
11805
|
+
readonly "openai/gpt-3.5-turbo-16k": {
|
|
11071
11806
|
id: string;
|
|
11072
11807
|
name: string;
|
|
11073
11808
|
api: "openai-completions";
|
|
@@ -11084,7 +11819,7 @@ export declare const MODELS: {
|
|
|
11084
11819
|
contextWindow: number;
|
|
11085
11820
|
maxTokens: number;
|
|
11086
11821
|
};
|
|
11087
|
-
readonly "openai/gpt-4
|
|
11822
|
+
readonly "openai/gpt-4": {
|
|
11088
11823
|
id: string;
|
|
11089
11824
|
name: string;
|
|
11090
11825
|
api: "openai-completions";
|
|
@@ -12109,23 +12844,6 @@ export declare const MODELS: {
|
|
|
12109
12844
|
contextWindow: number;
|
|
12110
12845
|
maxTokens: number;
|
|
12111
12846
|
};
|
|
12112
|
-
readonly "qwen/qwen-2.5-7b-instruct": {
|
|
12113
|
-
id: string;
|
|
12114
|
-
name: string;
|
|
12115
|
-
api: "openai-completions";
|
|
12116
|
-
provider: string;
|
|
12117
|
-
baseUrl: string;
|
|
12118
|
-
reasoning: false;
|
|
12119
|
-
input: "text"[];
|
|
12120
|
-
cost: {
|
|
12121
|
-
input: number;
|
|
12122
|
-
output: number;
|
|
12123
|
-
cacheRead: number;
|
|
12124
|
-
cacheWrite: number;
|
|
12125
|
-
};
|
|
12126
|
-
contextWindow: number;
|
|
12127
|
-
maxTokens: number;
|
|
12128
|
-
};
|
|
12129
12847
|
readonly "qwen/qwen-plus": {
|
|
12130
12848
|
id: string;
|
|
12131
12849
|
name: string;
|
|
@@ -12874,13 +13592,13 @@ export declare const MODELS: {
|
|
|
12874
13592
|
contextWindow: number;
|
|
12875
13593
|
maxTokens: number;
|
|
12876
13594
|
};
|
|
12877
|
-
readonly "
|
|
13595
|
+
readonly "qwen/qwen3.7-plus": {
|
|
12878
13596
|
id: string;
|
|
12879
13597
|
name: string;
|
|
12880
13598
|
api: "openai-completions";
|
|
12881
13599
|
provider: string;
|
|
12882
13600
|
baseUrl: string;
|
|
12883
|
-
reasoning:
|
|
13601
|
+
reasoning: true;
|
|
12884
13602
|
input: ("image" | "text")[];
|
|
12885
13603
|
cost: {
|
|
12886
13604
|
input: number;
|
|
@@ -12891,14 +13609,14 @@ export declare const MODELS: {
|
|
|
12891
13609
|
contextWindow: number;
|
|
12892
13610
|
maxTokens: number;
|
|
12893
13611
|
};
|
|
12894
|
-
readonly "
|
|
13612
|
+
readonly "rekaai/reka-edge": {
|
|
12895
13613
|
id: string;
|
|
12896
13614
|
name: string;
|
|
12897
13615
|
api: "openai-completions";
|
|
12898
13616
|
provider: string;
|
|
12899
13617
|
baseUrl: string;
|
|
12900
13618
|
reasoning: false;
|
|
12901
|
-
input: "text"[];
|
|
13619
|
+
input: ("image" | "text")[];
|
|
12902
13620
|
cost: {
|
|
12903
13621
|
input: number;
|
|
12904
13622
|
output: number;
|
|
@@ -12908,7 +13626,7 @@ export declare const MODELS: {
|
|
|
12908
13626
|
contextWindow: number;
|
|
12909
13627
|
maxTokens: number;
|
|
12910
13628
|
};
|
|
12911
|
-
readonly "
|
|
13629
|
+
readonly "relace/relace-search": {
|
|
12912
13630
|
id: string;
|
|
12913
13631
|
name: string;
|
|
12914
13632
|
api: "openai-completions";
|
|
@@ -13112,40 +13830,6 @@ export declare const MODELS: {
|
|
|
13112
13830
|
contextWindow: number;
|
|
13113
13831
|
maxTokens: number;
|
|
13114
13832
|
};
|
|
13115
|
-
readonly "xiaomi/mimo-v2-omni": {
|
|
13116
|
-
id: string;
|
|
13117
|
-
name: string;
|
|
13118
|
-
api: "openai-completions";
|
|
13119
|
-
provider: string;
|
|
13120
|
-
baseUrl: string;
|
|
13121
|
-
reasoning: true;
|
|
13122
|
-
input: ("image" | "text")[];
|
|
13123
|
-
cost: {
|
|
13124
|
-
input: number;
|
|
13125
|
-
output: number;
|
|
13126
|
-
cacheRead: number;
|
|
13127
|
-
cacheWrite: number;
|
|
13128
|
-
};
|
|
13129
|
-
contextWindow: number;
|
|
13130
|
-
maxTokens: number;
|
|
13131
|
-
};
|
|
13132
|
-
readonly "xiaomi/mimo-v2-pro": {
|
|
13133
|
-
id: string;
|
|
13134
|
-
name: string;
|
|
13135
|
-
api: "openai-completions";
|
|
13136
|
-
provider: string;
|
|
13137
|
-
baseUrl: string;
|
|
13138
|
-
reasoning: true;
|
|
13139
|
-
input: "text"[];
|
|
13140
|
-
cost: {
|
|
13141
|
-
input: number;
|
|
13142
|
-
output: number;
|
|
13143
|
-
cacheRead: number;
|
|
13144
|
-
cacheWrite: number;
|
|
13145
|
-
};
|
|
13146
|
-
contextWindow: number;
|
|
13147
|
-
maxTokens: number;
|
|
13148
|
-
};
|
|
13149
13833
|
readonly "xiaomi/mimo-v2.5": {
|
|
13150
13834
|
id: string;
|
|
13151
13835
|
name: string;
|
|
@@ -14019,6 +14703,37 @@ export declare const MODELS: {
|
|
|
14019
14703
|
contextWindow: number;
|
|
14020
14704
|
maxTokens: number;
|
|
14021
14705
|
};
|
|
14706
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
14707
|
+
id: string;
|
|
14708
|
+
name: string;
|
|
14709
|
+
api: "openai-completions";
|
|
14710
|
+
provider: string;
|
|
14711
|
+
baseUrl: string;
|
|
14712
|
+
compat: {
|
|
14713
|
+
supportsStore: false;
|
|
14714
|
+
supportsDeveloperRole: false;
|
|
14715
|
+
supportsReasoningEffort: false;
|
|
14716
|
+
maxTokensField: "max_tokens";
|
|
14717
|
+
supportsStrictMode: false;
|
|
14718
|
+
supportsLongCacheRetention: false;
|
|
14719
|
+
thinkingFormat: "together";
|
|
14720
|
+
};
|
|
14721
|
+
reasoning: true;
|
|
14722
|
+
thinkingLevelMap: {
|
|
14723
|
+
minimal: null;
|
|
14724
|
+
low: null;
|
|
14725
|
+
medium: null;
|
|
14726
|
+
};
|
|
14727
|
+
input: "text"[];
|
|
14728
|
+
cost: {
|
|
14729
|
+
input: number;
|
|
14730
|
+
output: number;
|
|
14731
|
+
cacheRead: number;
|
|
14732
|
+
cacheWrite: number;
|
|
14733
|
+
};
|
|
14734
|
+
contextWindow: number;
|
|
14735
|
+
maxTokens: number;
|
|
14736
|
+
};
|
|
14022
14737
|
readonly "openai/gpt-oss-120b": {
|
|
14023
14738
|
id: string;
|
|
14024
14739
|
name: string;
|
|
@@ -14105,7 +14820,7 @@ export declare const MODELS: {
|
|
|
14105
14820
|
api: "anthropic-messages";
|
|
14106
14821
|
provider: string;
|
|
14107
14822
|
baseUrl: string;
|
|
14108
|
-
reasoning:
|
|
14823
|
+
reasoning: true;
|
|
14109
14824
|
input: "text"[];
|
|
14110
14825
|
cost: {
|
|
14111
14826
|
input: number;
|
|
@@ -14157,7 +14872,7 @@ export declare const MODELS: {
|
|
|
14157
14872
|
provider: string;
|
|
14158
14873
|
baseUrl: string;
|
|
14159
14874
|
reasoning: true;
|
|
14160
|
-
input:
|
|
14875
|
+
input: "text"[];
|
|
14161
14876
|
cost: {
|
|
14162
14877
|
input: number;
|
|
14163
14878
|
output: number;
|
|
@@ -14190,7 +14905,7 @@ export declare const MODELS: {
|
|
|
14190
14905
|
api: "anthropic-messages";
|
|
14191
14906
|
provider: string;
|
|
14192
14907
|
baseUrl: string;
|
|
14193
|
-
reasoning:
|
|
14908
|
+
reasoning: true;
|
|
14194
14909
|
input: "text"[];
|
|
14195
14910
|
cost: {
|
|
14196
14911
|
input: number;
|
|
@@ -14224,7 +14939,7 @@ export declare const MODELS: {
|
|
|
14224
14939
|
api: "anthropic-messages";
|
|
14225
14940
|
provider: string;
|
|
14226
14941
|
baseUrl: string;
|
|
14227
|
-
reasoning:
|
|
14942
|
+
reasoning: true;
|
|
14228
14943
|
input: "text"[];
|
|
14229
14944
|
cost: {
|
|
14230
14945
|
input: number;
|
|
@@ -14303,6 +15018,40 @@ export declare const MODELS: {
|
|
|
14303
15018
|
contextWindow: number;
|
|
14304
15019
|
maxTokens: number;
|
|
14305
15020
|
};
|
|
15021
|
+
readonly "alibaba/qwen3-next-80b-a3b-instruct": {
|
|
15022
|
+
id: string;
|
|
15023
|
+
name: string;
|
|
15024
|
+
api: "anthropic-messages";
|
|
15025
|
+
provider: string;
|
|
15026
|
+
baseUrl: string;
|
|
15027
|
+
reasoning: false;
|
|
15028
|
+
input: "text"[];
|
|
15029
|
+
cost: {
|
|
15030
|
+
input: number;
|
|
15031
|
+
output: number;
|
|
15032
|
+
cacheRead: number;
|
|
15033
|
+
cacheWrite: number;
|
|
15034
|
+
};
|
|
15035
|
+
contextWindow: number;
|
|
15036
|
+
maxTokens: number;
|
|
15037
|
+
};
|
|
15038
|
+
readonly "alibaba/qwen3-next-80b-a3b-thinking": {
|
|
15039
|
+
id: string;
|
|
15040
|
+
name: string;
|
|
15041
|
+
api: "anthropic-messages";
|
|
15042
|
+
provider: string;
|
|
15043
|
+
baseUrl: string;
|
|
15044
|
+
reasoning: true;
|
|
15045
|
+
input: "text"[];
|
|
15046
|
+
cost: {
|
|
15047
|
+
input: number;
|
|
15048
|
+
output: number;
|
|
15049
|
+
cacheRead: number;
|
|
15050
|
+
cacheWrite: number;
|
|
15051
|
+
};
|
|
15052
|
+
contextWindow: number;
|
|
15053
|
+
maxTokens: number;
|
|
15054
|
+
};
|
|
14306
15055
|
readonly "alibaba/qwen3-vl-thinking": {
|
|
14307
15056
|
id: string;
|
|
14308
15057
|
name: string;
|
|
@@ -14389,6 +15138,23 @@ export declare const MODELS: {
|
|
|
14389
15138
|
maxTokens: number;
|
|
14390
15139
|
};
|
|
14391
15140
|
readonly "alibaba/qwen3.7-max": {
|
|
15141
|
+
id: string;
|
|
15142
|
+
name: string;
|
|
15143
|
+
api: "anthropic-messages";
|
|
15144
|
+
provider: string;
|
|
15145
|
+
baseUrl: string;
|
|
15146
|
+
reasoning: true;
|
|
15147
|
+
input: "text"[];
|
|
15148
|
+
cost: {
|
|
15149
|
+
input: number;
|
|
15150
|
+
output: number;
|
|
15151
|
+
cacheRead: number;
|
|
15152
|
+
cacheWrite: number;
|
|
15153
|
+
};
|
|
15154
|
+
contextWindow: number;
|
|
15155
|
+
maxTokens: number;
|
|
15156
|
+
};
|
|
15157
|
+
readonly "alibaba/qwen3.7-plus": {
|
|
14392
15158
|
id: string;
|
|
14393
15159
|
name: string;
|
|
14394
15160
|
api: "anthropic-messages";
|
|
@@ -14538,6 +15304,7 @@ export declare const MODELS: {
|
|
|
14538
15304
|
baseUrl: string;
|
|
14539
15305
|
compat: {
|
|
14540
15306
|
forceAdaptiveThinking: true;
|
|
15307
|
+
supportsTemperature: false;
|
|
14541
15308
|
};
|
|
14542
15309
|
reasoning: true;
|
|
14543
15310
|
thinkingLevelMap: {
|
|
@@ -14561,6 +15328,7 @@ export declare const MODELS: {
|
|
|
14561
15328
|
baseUrl: string;
|
|
14562
15329
|
compat: {
|
|
14563
15330
|
forceAdaptiveThinking: true;
|
|
15331
|
+
supportsTemperature: false;
|
|
14564
15332
|
};
|
|
14565
15333
|
reasoning: true;
|
|
14566
15334
|
thinkingLevelMap: {
|
|
@@ -14749,47 +15517,13 @@ export declare const MODELS: {
|
|
|
14749
15517
|
contextWindow: number;
|
|
14750
15518
|
maxTokens: number;
|
|
14751
15519
|
};
|
|
14752
|
-
readonly "deepseek/deepseek-v3.1-terminus": {
|
|
14753
|
-
id: string;
|
|
14754
|
-
name: string;
|
|
14755
|
-
api: "anthropic-messages";
|
|
14756
|
-
provider: string;
|
|
14757
|
-
baseUrl: string;
|
|
14758
|
-
reasoning: true;
|
|
14759
|
-
input: "text"[];
|
|
14760
|
-
cost: {
|
|
14761
|
-
input: number;
|
|
14762
|
-
output: number;
|
|
14763
|
-
cacheRead: number;
|
|
14764
|
-
cacheWrite: number;
|
|
14765
|
-
};
|
|
14766
|
-
contextWindow: number;
|
|
14767
|
-
maxTokens: number;
|
|
14768
|
-
};
|
|
14769
|
-
readonly "deepseek/deepseek-v3.2": {
|
|
14770
|
-
id: string;
|
|
14771
|
-
name: string;
|
|
14772
|
-
api: "anthropic-messages";
|
|
14773
|
-
provider: string;
|
|
14774
|
-
baseUrl: string;
|
|
14775
|
-
reasoning: false;
|
|
14776
|
-
input: "text"[];
|
|
14777
|
-
cost: {
|
|
14778
|
-
input: number;
|
|
14779
|
-
output: number;
|
|
14780
|
-
cacheRead: number;
|
|
14781
|
-
cacheWrite: number;
|
|
14782
|
-
};
|
|
14783
|
-
contextWindow: number;
|
|
14784
|
-
maxTokens: number;
|
|
14785
|
-
};
|
|
14786
|
-
readonly "deepseek/deepseek-v3.2-thinking": {
|
|
15520
|
+
readonly "deepseek/deepseek-v3.1-terminus": {
|
|
14787
15521
|
id: string;
|
|
14788
15522
|
name: string;
|
|
14789
15523
|
api: "anthropic-messages";
|
|
14790
15524
|
provider: string;
|
|
14791
15525
|
baseUrl: string;
|
|
14792
|
-
reasoning:
|
|
15526
|
+
reasoning: true;
|
|
14793
15527
|
input: "text"[];
|
|
14794
15528
|
cost: {
|
|
14795
15529
|
input: number;
|
|
@@ -14800,14 +15534,14 @@ export declare const MODELS: {
|
|
|
14800
15534
|
contextWindow: number;
|
|
14801
15535
|
maxTokens: number;
|
|
14802
15536
|
};
|
|
14803
|
-
readonly "deepseek/deepseek-
|
|
15537
|
+
readonly "deepseek/deepseek-v3.2": {
|
|
14804
15538
|
id: string;
|
|
14805
15539
|
name: string;
|
|
14806
15540
|
api: "anthropic-messages";
|
|
14807
15541
|
provider: string;
|
|
14808
15542
|
baseUrl: string;
|
|
14809
15543
|
reasoning: true;
|
|
14810
|
-
input: "text"[];
|
|
15544
|
+
input: ("image" | "text")[];
|
|
14811
15545
|
cost: {
|
|
14812
15546
|
input: number;
|
|
14813
15547
|
output: number;
|
|
@@ -14817,14 +15551,14 @@ export declare const MODELS: {
|
|
|
14817
15551
|
contextWindow: number;
|
|
14818
15552
|
maxTokens: number;
|
|
14819
15553
|
};
|
|
14820
|
-
readonly "deepseek/deepseek-
|
|
15554
|
+
readonly "deepseek/deepseek-v3.2-thinking": {
|
|
14821
15555
|
id: string;
|
|
14822
15556
|
name: string;
|
|
14823
15557
|
api: "anthropic-messages";
|
|
14824
15558
|
provider: string;
|
|
14825
15559
|
baseUrl: string;
|
|
14826
15560
|
reasoning: true;
|
|
14827
|
-
input: "text"[];
|
|
15561
|
+
input: ("image" | "text")[];
|
|
14828
15562
|
cost: {
|
|
14829
15563
|
input: number;
|
|
14830
15564
|
output: number;
|
|
@@ -14834,13 +15568,13 @@ export declare const MODELS: {
|
|
|
14834
15568
|
contextWindow: number;
|
|
14835
15569
|
maxTokens: number;
|
|
14836
15570
|
};
|
|
14837
|
-
readonly "
|
|
15571
|
+
readonly "deepseek/deepseek-v4-flash": {
|
|
14838
15572
|
id: string;
|
|
14839
15573
|
name: string;
|
|
14840
15574
|
api: "anthropic-messages";
|
|
14841
15575
|
provider: string;
|
|
14842
15576
|
baseUrl: string;
|
|
14843
|
-
reasoning:
|
|
15577
|
+
reasoning: true;
|
|
14844
15578
|
input: ("image" | "text")[];
|
|
14845
15579
|
cost: {
|
|
14846
15580
|
input: number;
|
|
@@ -14851,14 +15585,14 @@ export declare const MODELS: {
|
|
|
14851
15585
|
contextWindow: number;
|
|
14852
15586
|
maxTokens: number;
|
|
14853
15587
|
};
|
|
14854
|
-
readonly "
|
|
15588
|
+
readonly "deepseek/deepseek-v4-pro": {
|
|
14855
15589
|
id: string;
|
|
14856
15590
|
name: string;
|
|
14857
15591
|
api: "anthropic-messages";
|
|
14858
15592
|
provider: string;
|
|
14859
15593
|
baseUrl: string;
|
|
14860
|
-
reasoning:
|
|
14861
|
-
input:
|
|
15594
|
+
reasoning: true;
|
|
15595
|
+
input: "text"[];
|
|
14862
15596
|
cost: {
|
|
14863
15597
|
input: number;
|
|
14864
15598
|
output: number;
|
|
@@ -15027,7 +15761,7 @@ export declare const MODELS: {
|
|
|
15027
15761
|
api: "anthropic-messages";
|
|
15028
15762
|
provider: string;
|
|
15029
15763
|
baseUrl: string;
|
|
15030
|
-
reasoning:
|
|
15764
|
+
reasoning: true;
|
|
15031
15765
|
input: ("image" | "text")[];
|
|
15032
15766
|
cost: {
|
|
15033
15767
|
input: number;
|
|
@@ -15334,7 +16068,7 @@ export declare const MODELS: {
|
|
|
15334
16068
|
provider: string;
|
|
15335
16069
|
baseUrl: string;
|
|
15336
16070
|
reasoning: true;
|
|
15337
|
-
input:
|
|
16071
|
+
input: "text"[];
|
|
15338
16072
|
cost: {
|
|
15339
16073
|
input: number;
|
|
15340
16074
|
output: number;
|
|
@@ -15345,6 +16079,23 @@ export declare const MODELS: {
|
|
|
15345
16079
|
maxTokens: number;
|
|
15346
16080
|
};
|
|
15347
16081
|
readonly "minimax/minimax-m2.7-highspeed": {
|
|
16082
|
+
id: string;
|
|
16083
|
+
name: string;
|
|
16084
|
+
api: "anthropic-messages";
|
|
16085
|
+
provider: string;
|
|
16086
|
+
baseUrl: string;
|
|
16087
|
+
reasoning: true;
|
|
16088
|
+
input: "text"[];
|
|
16089
|
+
cost: {
|
|
16090
|
+
input: number;
|
|
16091
|
+
output: number;
|
|
16092
|
+
cacheRead: number;
|
|
16093
|
+
cacheWrite: number;
|
|
16094
|
+
};
|
|
16095
|
+
contextWindow: number;
|
|
16096
|
+
maxTokens: number;
|
|
16097
|
+
};
|
|
16098
|
+
readonly "minimax/minimax-m3": {
|
|
15348
16099
|
id: string;
|
|
15349
16100
|
name: string;
|
|
15350
16101
|
api: "anthropic-messages";
|
|
@@ -15497,6 +16248,23 @@ export declare const MODELS: {
|
|
|
15497
16248
|
contextWindow: number;
|
|
15498
16249
|
maxTokens: number;
|
|
15499
16250
|
};
|
|
16251
|
+
readonly "mistral/mistral-nemo": {
|
|
16252
|
+
id: string;
|
|
16253
|
+
name: string;
|
|
16254
|
+
api: "anthropic-messages";
|
|
16255
|
+
provider: string;
|
|
16256
|
+
baseUrl: string;
|
|
16257
|
+
reasoning: false;
|
|
16258
|
+
input: "text"[];
|
|
16259
|
+
cost: {
|
|
16260
|
+
input: number;
|
|
16261
|
+
output: number;
|
|
16262
|
+
cacheRead: number;
|
|
16263
|
+
cacheWrite: number;
|
|
16264
|
+
};
|
|
16265
|
+
contextWindow: number;
|
|
16266
|
+
maxTokens: number;
|
|
16267
|
+
};
|
|
15500
16268
|
readonly "mistral/mistral-small": {
|
|
15501
16269
|
id: string;
|
|
15502
16270
|
name: string;
|
|
@@ -15650,6 +16418,40 @@ export declare const MODELS: {
|
|
|
15650
16418
|
contextWindow: number;
|
|
15651
16419
|
maxTokens: number;
|
|
15652
16420
|
};
|
|
16421
|
+
readonly "nvidia/nemotron-3-super-120b-a12b": {
|
|
16422
|
+
id: string;
|
|
16423
|
+
name: string;
|
|
16424
|
+
api: "anthropic-messages";
|
|
16425
|
+
provider: string;
|
|
16426
|
+
baseUrl: string;
|
|
16427
|
+
reasoning: true;
|
|
16428
|
+
input: "text"[];
|
|
16429
|
+
cost: {
|
|
16430
|
+
input: number;
|
|
16431
|
+
output: number;
|
|
16432
|
+
cacheRead: number;
|
|
16433
|
+
cacheWrite: number;
|
|
16434
|
+
};
|
|
16435
|
+
contextWindow: number;
|
|
16436
|
+
maxTokens: number;
|
|
16437
|
+
};
|
|
16438
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
16439
|
+
id: string;
|
|
16440
|
+
name: string;
|
|
16441
|
+
api: "anthropic-messages";
|
|
16442
|
+
provider: string;
|
|
16443
|
+
baseUrl: string;
|
|
16444
|
+
reasoning: true;
|
|
16445
|
+
input: "text"[];
|
|
16446
|
+
cost: {
|
|
16447
|
+
input: number;
|
|
16448
|
+
output: number;
|
|
16449
|
+
cacheRead: number;
|
|
16450
|
+
cacheWrite: number;
|
|
16451
|
+
};
|
|
16452
|
+
contextWindow: number;
|
|
16453
|
+
maxTokens: number;
|
|
16454
|
+
};
|
|
15653
16455
|
readonly "nvidia/nemotron-nano-12b-v2-vl": {
|
|
15654
16456
|
id: string;
|
|
15655
16457
|
name: string;
|
|
@@ -15827,7 +16629,7 @@ export declare const MODELS: {
|
|
|
15827
16629
|
provider: string;
|
|
15828
16630
|
baseUrl: string;
|
|
15829
16631
|
reasoning: true;
|
|
15830
|
-
input: "text"[];
|
|
16632
|
+
input: ("image" | "text")[];
|
|
15831
16633
|
cost: {
|
|
15832
16634
|
input: number;
|
|
15833
16635
|
output: number;
|
|
@@ -16216,6 +17018,23 @@ export declare const MODELS: {
|
|
|
16216
17018
|
contextWindow: number;
|
|
16217
17019
|
maxTokens: number;
|
|
16218
17020
|
};
|
|
17021
|
+
readonly "openai/gpt-oss-120b": {
|
|
17022
|
+
id: string;
|
|
17023
|
+
name: string;
|
|
17024
|
+
api: "anthropic-messages";
|
|
17025
|
+
provider: string;
|
|
17026
|
+
baseUrl: string;
|
|
17027
|
+
reasoning: true;
|
|
17028
|
+
input: "text"[];
|
|
17029
|
+
cost: {
|
|
17030
|
+
input: number;
|
|
17031
|
+
output: number;
|
|
17032
|
+
cacheRead: number;
|
|
17033
|
+
cacheWrite: number;
|
|
17034
|
+
};
|
|
17035
|
+
contextWindow: number;
|
|
17036
|
+
maxTokens: number;
|
|
17037
|
+
};
|
|
16219
17038
|
readonly "openai/gpt-oss-20b": {
|
|
16220
17039
|
id: string;
|
|
16221
17040
|
name: string;
|
|
@@ -16386,6 +17205,40 @@ export declare const MODELS: {
|
|
|
16386
17205
|
contextWindow: number;
|
|
16387
17206
|
maxTokens: number;
|
|
16388
17207
|
};
|
|
17208
|
+
readonly "stepfun/step-3.5-flash": {
|
|
17209
|
+
id: string;
|
|
17210
|
+
name: string;
|
|
17211
|
+
api: "anthropic-messages";
|
|
17212
|
+
provider: string;
|
|
17213
|
+
baseUrl: string;
|
|
17214
|
+
reasoning: true;
|
|
17215
|
+
input: "text"[];
|
|
17216
|
+
cost: {
|
|
17217
|
+
input: number;
|
|
17218
|
+
output: number;
|
|
17219
|
+
cacheRead: number;
|
|
17220
|
+
cacheWrite: number;
|
|
17221
|
+
};
|
|
17222
|
+
contextWindow: number;
|
|
17223
|
+
maxTokens: number;
|
|
17224
|
+
};
|
|
17225
|
+
readonly "stepfun/step-3.7-flash": {
|
|
17226
|
+
id: string;
|
|
17227
|
+
name: string;
|
|
17228
|
+
api: "anthropic-messages";
|
|
17229
|
+
provider: string;
|
|
17230
|
+
baseUrl: string;
|
|
17231
|
+
reasoning: true;
|
|
17232
|
+
input: ("image" | "text")[];
|
|
17233
|
+
cost: {
|
|
17234
|
+
input: number;
|
|
17235
|
+
output: number;
|
|
17236
|
+
cacheRead: number;
|
|
17237
|
+
cacheWrite: number;
|
|
17238
|
+
};
|
|
17239
|
+
contextWindow: number;
|
|
17240
|
+
maxTokens: number;
|
|
17241
|
+
};
|
|
16389
17242
|
readonly "xai/grok-4.1-fast-non-reasoning": {
|
|
16390
17243
|
id: string;
|
|
16391
17244
|
name: string;
|
|
@@ -16664,7 +17517,7 @@ export declare const MODELS: {
|
|
|
16664
17517
|
api: "anthropic-messages";
|
|
16665
17518
|
provider: string;
|
|
16666
17519
|
baseUrl: string;
|
|
16667
|
-
reasoning:
|
|
17520
|
+
reasoning: true;
|
|
16668
17521
|
input: ("image" | "text")[];
|
|
16669
17522
|
cost: {
|
|
16670
17523
|
input: number;
|
|
@@ -16818,7 +17671,7 @@ export declare const MODELS: {
|
|
|
16818
17671
|
provider: string;
|
|
16819
17672
|
baseUrl: string;
|
|
16820
17673
|
reasoning: true;
|
|
16821
|
-
input: "text"[];
|
|
17674
|
+
input: ("image" | "text")[];
|
|
16822
17675
|
cost: {
|
|
16823
17676
|
input: number;
|
|
16824
17677
|
output: number;
|
|
@@ -17443,5 +18296,116 @@ export declare const MODELS: {
|
|
|
17443
18296
|
maxTokens: number;
|
|
17444
18297
|
};
|
|
17445
18298
|
};
|
|
18299
|
+
readonly "zai-coding-cn": {
|
|
18300
|
+
readonly "glm-4.5-air": {
|
|
18301
|
+
id: string;
|
|
18302
|
+
name: string;
|
|
18303
|
+
api: "openai-completions";
|
|
18304
|
+
provider: string;
|
|
18305
|
+
baseUrl: string;
|
|
18306
|
+
compat: {
|
|
18307
|
+
supportsDeveloperRole: false;
|
|
18308
|
+
thinkingFormat: "zai";
|
|
18309
|
+
};
|
|
18310
|
+
reasoning: true;
|
|
18311
|
+
input: "text"[];
|
|
18312
|
+
cost: {
|
|
18313
|
+
input: number;
|
|
18314
|
+
output: number;
|
|
18315
|
+
cacheRead: number;
|
|
18316
|
+
cacheWrite: number;
|
|
18317
|
+
};
|
|
18318
|
+
contextWindow: number;
|
|
18319
|
+
maxTokens: number;
|
|
18320
|
+
};
|
|
18321
|
+
readonly "glm-4.7": {
|
|
18322
|
+
id: string;
|
|
18323
|
+
name: string;
|
|
18324
|
+
api: "openai-completions";
|
|
18325
|
+
provider: string;
|
|
18326
|
+
baseUrl: string;
|
|
18327
|
+
compat: {
|
|
18328
|
+
supportsDeveloperRole: false;
|
|
18329
|
+
thinkingFormat: "zai";
|
|
18330
|
+
zaiToolStream: true;
|
|
18331
|
+
};
|
|
18332
|
+
reasoning: true;
|
|
18333
|
+
input: "text"[];
|
|
18334
|
+
cost: {
|
|
18335
|
+
input: number;
|
|
18336
|
+
output: number;
|
|
18337
|
+
cacheRead: number;
|
|
18338
|
+
cacheWrite: number;
|
|
18339
|
+
};
|
|
18340
|
+
contextWindow: number;
|
|
18341
|
+
maxTokens: number;
|
|
18342
|
+
};
|
|
18343
|
+
readonly "glm-5-turbo": {
|
|
18344
|
+
id: string;
|
|
18345
|
+
name: string;
|
|
18346
|
+
api: "openai-completions";
|
|
18347
|
+
provider: string;
|
|
18348
|
+
baseUrl: string;
|
|
18349
|
+
compat: {
|
|
18350
|
+
supportsDeveloperRole: false;
|
|
18351
|
+
thinkingFormat: "zai";
|
|
18352
|
+
zaiToolStream: true;
|
|
18353
|
+
};
|
|
18354
|
+
reasoning: true;
|
|
18355
|
+
input: "text"[];
|
|
18356
|
+
cost: {
|
|
18357
|
+
input: number;
|
|
18358
|
+
output: number;
|
|
18359
|
+
cacheRead: number;
|
|
18360
|
+
cacheWrite: number;
|
|
18361
|
+
};
|
|
18362
|
+
contextWindow: number;
|
|
18363
|
+
maxTokens: number;
|
|
18364
|
+
};
|
|
18365
|
+
readonly "glm-5.1": {
|
|
18366
|
+
id: string;
|
|
18367
|
+
name: string;
|
|
18368
|
+
api: "openai-completions";
|
|
18369
|
+
provider: string;
|
|
18370
|
+
baseUrl: string;
|
|
18371
|
+
compat: {
|
|
18372
|
+
supportsDeveloperRole: false;
|
|
18373
|
+
thinkingFormat: "zai";
|
|
18374
|
+
zaiToolStream: true;
|
|
18375
|
+
};
|
|
18376
|
+
reasoning: true;
|
|
18377
|
+
input: "text"[];
|
|
18378
|
+
cost: {
|
|
18379
|
+
input: number;
|
|
18380
|
+
output: number;
|
|
18381
|
+
cacheRead: number;
|
|
18382
|
+
cacheWrite: number;
|
|
18383
|
+
};
|
|
18384
|
+
contextWindow: number;
|
|
18385
|
+
maxTokens: number;
|
|
18386
|
+
};
|
|
18387
|
+
readonly "glm-5v-turbo": {
|
|
18388
|
+
id: string;
|
|
18389
|
+
name: string;
|
|
18390
|
+
api: "openai-completions";
|
|
18391
|
+
provider: string;
|
|
18392
|
+
baseUrl: string;
|
|
18393
|
+
compat: {
|
|
18394
|
+
supportsDeveloperRole: false;
|
|
18395
|
+
thinkingFormat: "zai";
|
|
18396
|
+
zaiToolStream: true;
|
|
18397
|
+
};
|
|
18398
|
+
reasoning: true;
|
|
18399
|
+
input: ("image" | "text")[];
|
|
18400
|
+
cost: {
|
|
18401
|
+
input: number;
|
|
18402
|
+
output: number;
|
|
18403
|
+
cacheRead: number;
|
|
18404
|
+
cacheWrite: number;
|
|
18405
|
+
};
|
|
18406
|
+
contextWindow: number;
|
|
18407
|
+
maxTokens: number;
|
|
18408
|
+
};
|
|
18409
|
+
};
|
|
17446
18410
|
};
|
|
17447
18411
|
//# sourceMappingURL=models.generated.d.ts.map
|