@earendil-works/pi-ai 0.77.0 → 0.78.1
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 +9 -3
- 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 +15 -0
- package/dist/image-models.generated.d.ts.map +1 -1
- package/dist/image-models.generated.js +15 -0
- package/dist/image-models.generated.js.map +1 -1
- package/dist/models.generated.d.ts +1299 -341
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +1237 -545
- package/dist/models.generated.js.map +1 -1
- package/dist/providers/amazon-bedrock.d.ts.map +1 -1
- package/dist/providers/amazon-bedrock.js +82 -19
- package/dist/providers/amazon-bedrock.js.map +1 -1
- package/dist/providers/anthropic.d.ts.map +1 -1
- package/dist/providers/anthropic.js +10 -7
- package/dist/providers/anthropic.js.map +1 -1
- package/dist/providers/azure-openai-responses.d.ts.map +1 -1
- package/dist/providers/azure-openai-responses.js +5 -9
- package/dist/providers/azure-openai-responses.js.map +1 -1
- package/dist/providers/google-vertex.d.ts.map +1 -1
- package/dist/providers/google-vertex.js +1 -1
- package/dist/providers/google-vertex.js.map +1 -1
- package/dist/providers/google.d.ts.map +1 -1
- package/dist/providers/google.js +5 -3
- package/dist/providers/google.js.map +1 -1
- package/dist/providers/images/openrouter.d.ts.map +1 -1
- package/dist/providers/images/openrouter.js +2 -3
- package/dist/providers/images/openrouter.js.map +1 -1
- package/dist/providers/mistral.d.ts.map +1 -1
- package/dist/providers/mistral.js +2 -3
- package/dist/providers/mistral.js.map +1 -1
- package/dist/providers/openai-codex-responses.d.ts.map +1 -1
- package/dist/providers/openai-codex-responses.js +15 -5
- package/dist/providers/openai-codex-responses.js.map +1 -1
- package/dist/providers/openai-completions.d.ts.map +1 -1
- package/dist/providers/openai-completions.js +38 -21
- package/dist/providers/openai-completions.js.map +1 -1
- package/dist/providers/openai-responses.d.ts.map +1 -1
- package/dist/providers/openai-responses.js +5 -9
- package/dist/providers/openai-responses.js.map +1 -1
- package/dist/stream.d.ts.map +1 -1
- package/dist/stream.js +14 -2
- package/dist/stream.js.map +1 -1
- package/dist/types.d.ts +13 -5
- 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
|
@@ -1579,6 +1579,89 @@ export declare const MODELS: {
|
|
|
1579
1579
|
maxTokens: number;
|
|
1580
1580
|
};
|
|
1581
1581
|
};
|
|
1582
|
+
readonly "ant-ling": {
|
|
1583
|
+
readonly "Ling-2.6-1T": {
|
|
1584
|
+
id: string;
|
|
1585
|
+
name: string;
|
|
1586
|
+
api: "openai-completions";
|
|
1587
|
+
provider: string;
|
|
1588
|
+
baseUrl: string;
|
|
1589
|
+
compat: {
|
|
1590
|
+
supportsStore: false;
|
|
1591
|
+
supportsDeveloperRole: false;
|
|
1592
|
+
supportsReasoningEffort: false;
|
|
1593
|
+
maxTokensField: "max_tokens";
|
|
1594
|
+
supportsLongCacheRetention: false;
|
|
1595
|
+
};
|
|
1596
|
+
reasoning: false;
|
|
1597
|
+
input: "text"[];
|
|
1598
|
+
cost: {
|
|
1599
|
+
input: number;
|
|
1600
|
+
output: number;
|
|
1601
|
+
cacheRead: number;
|
|
1602
|
+
cacheWrite: number;
|
|
1603
|
+
};
|
|
1604
|
+
contextWindow: number;
|
|
1605
|
+
maxTokens: number;
|
|
1606
|
+
};
|
|
1607
|
+
readonly "Ling-2.6-flash": {
|
|
1608
|
+
id: string;
|
|
1609
|
+
name: string;
|
|
1610
|
+
api: "openai-completions";
|
|
1611
|
+
provider: string;
|
|
1612
|
+
baseUrl: string;
|
|
1613
|
+
compat: {
|
|
1614
|
+
supportsStore: false;
|
|
1615
|
+
supportsDeveloperRole: false;
|
|
1616
|
+
supportsReasoningEffort: false;
|
|
1617
|
+
maxTokensField: "max_tokens";
|
|
1618
|
+
supportsLongCacheRetention: false;
|
|
1619
|
+
};
|
|
1620
|
+
reasoning: false;
|
|
1621
|
+
input: "text"[];
|
|
1622
|
+
cost: {
|
|
1623
|
+
input: number;
|
|
1624
|
+
output: number;
|
|
1625
|
+
cacheRead: number;
|
|
1626
|
+
cacheWrite: number;
|
|
1627
|
+
};
|
|
1628
|
+
contextWindow: number;
|
|
1629
|
+
maxTokens: number;
|
|
1630
|
+
};
|
|
1631
|
+
readonly "Ring-2.6-1T": {
|
|
1632
|
+
id: string;
|
|
1633
|
+
name: string;
|
|
1634
|
+
api: "openai-completions";
|
|
1635
|
+
provider: string;
|
|
1636
|
+
baseUrl: string;
|
|
1637
|
+
compat: {
|
|
1638
|
+
supportsStore: false;
|
|
1639
|
+
supportsDeveloperRole: false;
|
|
1640
|
+
supportsReasoningEffort: false;
|
|
1641
|
+
maxTokensField: "max_tokens";
|
|
1642
|
+
supportsLongCacheRetention: false;
|
|
1643
|
+
thinkingFormat: "ant-ling";
|
|
1644
|
+
};
|
|
1645
|
+
reasoning: true;
|
|
1646
|
+
thinkingLevelMap: {
|
|
1647
|
+
off: null;
|
|
1648
|
+
minimal: null;
|
|
1649
|
+
low: null;
|
|
1650
|
+
medium: null;
|
|
1651
|
+
high: string;
|
|
1652
|
+
xhigh: string;
|
|
1653
|
+
};
|
|
1654
|
+
input: "text"[];
|
|
1655
|
+
cost: {
|
|
1656
|
+
input: number;
|
|
1657
|
+
output: number;
|
|
1658
|
+
cacheRead: number;
|
|
1659
|
+
cacheWrite: number;
|
|
1660
|
+
};
|
|
1661
|
+
contextWindow: number;
|
|
1662
|
+
maxTokens: number;
|
|
1663
|
+
};
|
|
1664
|
+
};
|
|
1582
1665
|
readonly anthropic: {
|
|
1583
1666
|
readonly "claude-3-5-haiku-20241022": {
|
|
1584
1667
|
id: string;
|
|
@@ -1883,6 +1966,7 @@ export declare const MODELS: {
|
|
|
1883
1966
|
baseUrl: string;
|
|
1884
1967
|
compat: {
|
|
1885
1968
|
forceAdaptiveThinking: true;
|
|
1969
|
+
supportsTemperature: false;
|
|
1886
1970
|
};
|
|
1887
1971
|
reasoning: true;
|
|
1888
1972
|
thinkingLevelMap: {
|
|
@@ -1906,6 +1990,7 @@ export declare const MODELS: {
|
|
|
1906
1990
|
baseUrl: string;
|
|
1907
1991
|
compat: {
|
|
1908
1992
|
forceAdaptiveThinking: true;
|
|
1993
|
+
supportsTemperature: false;
|
|
1909
1994
|
};
|
|
1910
1995
|
reasoning: true;
|
|
1911
1996
|
thinkingLevelMap: {
|
|
@@ -3068,6 +3153,31 @@ export declare const MODELS: {
|
|
|
3068
3153
|
baseUrl: string;
|
|
3069
3154
|
compat: {
|
|
3070
3155
|
forceAdaptiveThinking: true;
|
|
3156
|
+
supportsTemperature: false;
|
|
3157
|
+
};
|
|
3158
|
+
reasoning: true;
|
|
3159
|
+
thinkingLevelMap: {
|
|
3160
|
+
xhigh: string;
|
|
3161
|
+
};
|
|
3162
|
+
input: ("image" | "text")[];
|
|
3163
|
+
cost: {
|
|
3164
|
+
input: number;
|
|
3165
|
+
output: number;
|
|
3166
|
+
cacheRead: number;
|
|
3167
|
+
cacheWrite: number;
|
|
3168
|
+
};
|
|
3169
|
+
contextWindow: number;
|
|
3170
|
+
maxTokens: number;
|
|
3171
|
+
};
|
|
3172
|
+
readonly "claude-opus-4-8": {
|
|
3173
|
+
id: string;
|
|
3174
|
+
name: string;
|
|
3175
|
+
api: "anthropic-messages";
|
|
3176
|
+
provider: string;
|
|
3177
|
+
baseUrl: string;
|
|
3178
|
+
compat: {
|
|
3179
|
+
forceAdaptiveThinking: true;
|
|
3180
|
+
supportsTemperature: false;
|
|
3071
3181
|
};
|
|
3072
3182
|
reasoning: true;
|
|
3073
3183
|
thinkingLevelMap: {
|
|
@@ -3617,26 +3727,6 @@ export declare const MODELS: {
|
|
|
3617
3727
|
contextWindow: number;
|
|
3618
3728
|
maxTokens: number;
|
|
3619
3729
|
};
|
|
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
3730
|
readonly "@cf/moonshotai/kimi-k2.6": {
|
|
3641
3731
|
id: string;
|
|
3642
3732
|
name: string;
|
|
@@ -4187,6 +4277,37 @@ export declare const MODELS: {
|
|
|
4187
4277
|
};
|
|
4188
4278
|
compat: {
|
|
4189
4279
|
forceAdaptiveThinking: true;
|
|
4280
|
+
supportsTemperature: false;
|
|
4281
|
+
};
|
|
4282
|
+
reasoning: true;
|
|
4283
|
+
thinkingLevelMap: {
|
|
4284
|
+
xhigh: string;
|
|
4285
|
+
};
|
|
4286
|
+
input: ("image" | "text")[];
|
|
4287
|
+
cost: {
|
|
4288
|
+
input: number;
|
|
4289
|
+
output: number;
|
|
4290
|
+
cacheRead: number;
|
|
4291
|
+
cacheWrite: number;
|
|
4292
|
+
};
|
|
4293
|
+
contextWindow: number;
|
|
4294
|
+
maxTokens: number;
|
|
4295
|
+
};
|
|
4296
|
+
readonly "claude-opus-4.8": {
|
|
4297
|
+
id: string;
|
|
4298
|
+
name: string;
|
|
4299
|
+
api: "anthropic-messages";
|
|
4300
|
+
provider: string;
|
|
4301
|
+
baseUrl: string;
|
|
4302
|
+
headers: {
|
|
4303
|
+
"User-Agent": string;
|
|
4304
|
+
"Editor-Version": string;
|
|
4305
|
+
"Editor-Plugin-Version": string;
|
|
4306
|
+
"Copilot-Integration-Id": string;
|
|
4307
|
+
};
|
|
4308
|
+
compat: {
|
|
4309
|
+
forceAdaptiveThinking: true;
|
|
4310
|
+
supportsTemperature: false;
|
|
4190
4311
|
};
|
|
4191
4312
|
reasoning: true;
|
|
4192
4313
|
thinkingLevelMap: {
|
|
@@ -4202,6 +4323,32 @@ export declare const MODELS: {
|
|
|
4202
4323
|
contextWindow: number;
|
|
4203
4324
|
maxTokens: number;
|
|
4204
4325
|
};
|
|
4326
|
+
readonly "claude-sonnet-4": {
|
|
4327
|
+
id: string;
|
|
4328
|
+
name: string;
|
|
4329
|
+
api: "anthropic-messages";
|
|
4330
|
+
provider: string;
|
|
4331
|
+
baseUrl: string;
|
|
4332
|
+
headers: {
|
|
4333
|
+
"User-Agent": string;
|
|
4334
|
+
"Editor-Version": string;
|
|
4335
|
+
"Editor-Plugin-Version": string;
|
|
4336
|
+
"Copilot-Integration-Id": string;
|
|
4337
|
+
};
|
|
4338
|
+
compat: {
|
|
4339
|
+
supportsEagerToolInputStreaming: false;
|
|
4340
|
+
};
|
|
4341
|
+
reasoning: true;
|
|
4342
|
+
input: ("image" | "text")[];
|
|
4343
|
+
cost: {
|
|
4344
|
+
input: number;
|
|
4345
|
+
output: number;
|
|
4346
|
+
cacheRead: number;
|
|
4347
|
+
cacheWrite: number;
|
|
4348
|
+
};
|
|
4349
|
+
contextWindow: number;
|
|
4350
|
+
maxTokens: number;
|
|
4351
|
+
};
|
|
4205
4352
|
readonly "claude-sonnet-4.5": {
|
|
4206
4353
|
id: string;
|
|
4207
4354
|
name: string;
|
|
@@ -4271,7 +4418,7 @@ export declare const MODELS: {
|
|
|
4271
4418
|
supportsDeveloperRole: false;
|
|
4272
4419
|
supportsReasoningEffort: false;
|
|
4273
4420
|
};
|
|
4274
|
-
reasoning:
|
|
4421
|
+
reasoning: true;
|
|
4275
4422
|
input: ("image" | "text")[];
|
|
4276
4423
|
cost: {
|
|
4277
4424
|
input: number;
|
|
@@ -4394,10 +4541,10 @@ export declare const MODELS: {
|
|
|
4394
4541
|
contextWindow: number;
|
|
4395
4542
|
maxTokens: number;
|
|
4396
4543
|
};
|
|
4397
|
-
readonly "gpt-
|
|
4544
|
+
readonly "gpt-5-mini": {
|
|
4398
4545
|
id: string;
|
|
4399
4546
|
name: string;
|
|
4400
|
-
api: "openai-
|
|
4547
|
+
api: "openai-responses";
|
|
4401
4548
|
provider: string;
|
|
4402
4549
|
baseUrl: string;
|
|
4403
4550
|
headers: {
|
|
@@ -4406,12 +4553,11 @@ export declare const MODELS: {
|
|
|
4406
4553
|
"Editor-Plugin-Version": string;
|
|
4407
4554
|
"Copilot-Integration-Id": string;
|
|
4408
4555
|
};
|
|
4409
|
-
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4556
|
+
reasoning: true;
|
|
4557
|
+
thinkingLevelMap: {
|
|
4558
|
+
off: null;
|
|
4559
|
+
minimal: string;
|
|
4413
4560
|
};
|
|
4414
|
-
reasoning: false;
|
|
4415
4561
|
input: ("image" | "text")[];
|
|
4416
4562
|
cost: {
|
|
4417
4563
|
input: number;
|
|
@@ -4422,7 +4568,7 @@ export declare const MODELS: {
|
|
|
4422
4568
|
contextWindow: number;
|
|
4423
4569
|
maxTokens: number;
|
|
4424
4570
|
};
|
|
4425
|
-
readonly "gpt-5
|
|
4571
|
+
readonly "gpt-5.2": {
|
|
4426
4572
|
id: string;
|
|
4427
4573
|
name: string;
|
|
4428
4574
|
api: "openai-responses";
|
|
@@ -4438,6 +4584,7 @@ export declare const MODELS: {
|
|
|
4438
4584
|
thinkingLevelMap: {
|
|
4439
4585
|
off: null;
|
|
4440
4586
|
minimal: string;
|
|
4587
|
+
xhigh: string;
|
|
4441
4588
|
};
|
|
4442
4589
|
input: ("image" | "text")[];
|
|
4443
4590
|
cost: {
|
|
@@ -4449,7 +4596,7 @@ export declare const MODELS: {
|
|
|
4449
4596
|
contextWindow: number;
|
|
4450
4597
|
maxTokens: number;
|
|
4451
4598
|
};
|
|
4452
|
-
readonly "gpt-5.2": {
|
|
4599
|
+
readonly "gpt-5.2-codex": {
|
|
4453
4600
|
id: string;
|
|
4454
4601
|
name: string;
|
|
4455
4602
|
api: "openai-responses";
|
|
@@ -4477,7 +4624,7 @@ export declare const MODELS: {
|
|
|
4477
4624
|
contextWindow: number;
|
|
4478
4625
|
maxTokens: number;
|
|
4479
4626
|
};
|
|
4480
|
-
readonly "gpt-5.
|
|
4627
|
+
readonly "gpt-5.3-codex": {
|
|
4481
4628
|
id: string;
|
|
4482
4629
|
name: string;
|
|
4483
4630
|
api: "openai-responses";
|
|
@@ -4505,7 +4652,7 @@ export declare const MODELS: {
|
|
|
4505
4652
|
contextWindow: number;
|
|
4506
4653
|
maxTokens: number;
|
|
4507
4654
|
};
|
|
4508
|
-
readonly "gpt-5.
|
|
4655
|
+
readonly "gpt-5.4": {
|
|
4509
4656
|
id: string;
|
|
4510
4657
|
name: string;
|
|
4511
4658
|
api: "openai-responses";
|
|
@@ -4533,7 +4680,7 @@ export declare const MODELS: {
|
|
|
4533
4680
|
contextWindow: number;
|
|
4534
4681
|
maxTokens: number;
|
|
4535
4682
|
};
|
|
4536
|
-
readonly "gpt-5.4": {
|
|
4683
|
+
readonly "gpt-5.4-mini": {
|
|
4537
4684
|
id: string;
|
|
4538
4685
|
name: string;
|
|
4539
4686
|
api: "openai-responses";
|
|
@@ -4561,7 +4708,7 @@ export declare const MODELS: {
|
|
|
4561
4708
|
contextWindow: number;
|
|
4562
4709
|
maxTokens: number;
|
|
4563
4710
|
};
|
|
4564
|
-
readonly "gpt-5.4-
|
|
4711
|
+
readonly "gpt-5.4-nano": {
|
|
4565
4712
|
id: string;
|
|
4566
4713
|
name: string;
|
|
4567
4714
|
api: "openai-responses";
|
|
@@ -4617,7 +4764,7 @@ export declare const MODELS: {
|
|
|
4617
4764
|
contextWindow: number;
|
|
4618
4765
|
maxTokens: number;
|
|
4619
4766
|
};
|
|
4620
|
-
readonly "
|
|
4767
|
+
readonly "raptor-mini": {
|
|
4621
4768
|
id: string;
|
|
4622
4769
|
name: string;
|
|
4623
4770
|
api: "openai-completions";
|
|
@@ -4635,7 +4782,7 @@ export declare const MODELS: {
|
|
|
4635
4782
|
supportsReasoningEffort: false;
|
|
4636
4783
|
};
|
|
4637
4784
|
reasoning: true;
|
|
4638
|
-
input: "text"[];
|
|
4785
|
+
input: ("image" | "text")[];
|
|
4639
4786
|
cost: {
|
|
4640
4787
|
input: number;
|
|
4641
4788
|
output: number;
|
|
@@ -6047,6 +6194,23 @@ export declare const MODELS: {
|
|
|
6047
6194
|
contextWindow: number;
|
|
6048
6195
|
maxTokens: number;
|
|
6049
6196
|
};
|
|
6197
|
+
readonly "MiniMax-M3": {
|
|
6198
|
+
id: string;
|
|
6199
|
+
name: string;
|
|
6200
|
+
api: "anthropic-messages";
|
|
6201
|
+
provider: string;
|
|
6202
|
+
baseUrl: string;
|
|
6203
|
+
reasoning: true;
|
|
6204
|
+
input: ("image" | "text")[];
|
|
6205
|
+
cost: {
|
|
6206
|
+
input: number;
|
|
6207
|
+
output: number;
|
|
6208
|
+
cacheRead: number;
|
|
6209
|
+
cacheWrite: number;
|
|
6210
|
+
};
|
|
6211
|
+
contextWindow: number;
|
|
6212
|
+
maxTokens: number;
|
|
6213
|
+
};
|
|
6050
6214
|
};
|
|
6051
6215
|
readonly "minimax-cn": {
|
|
6052
6216
|
readonly "MiniMax-M2.7": {
|
|
@@ -6083,6 +6247,23 @@ export declare const MODELS: {
|
|
|
6083
6247
|
contextWindow: number;
|
|
6084
6248
|
maxTokens: number;
|
|
6085
6249
|
};
|
|
6250
|
+
readonly "MiniMax-M3": {
|
|
6251
|
+
id: string;
|
|
6252
|
+
name: string;
|
|
6253
|
+
api: "anthropic-messages";
|
|
6254
|
+
provider: string;
|
|
6255
|
+
baseUrl: string;
|
|
6256
|
+
reasoning: true;
|
|
6257
|
+
input: ("image" | "text")[];
|
|
6258
|
+
cost: {
|
|
6259
|
+
input: number;
|
|
6260
|
+
output: number;
|
|
6261
|
+
cacheRead: number;
|
|
6262
|
+
cacheWrite: number;
|
|
6263
|
+
};
|
|
6264
|
+
contextWindow: number;
|
|
6265
|
+
maxTokens: number;
|
|
6266
|
+
};
|
|
6086
6267
|
};
|
|
6087
6268
|
readonly mistral: {
|
|
6088
6269
|
readonly "codestral-latest": {
|
|
@@ -6119,6 +6300,23 @@ export declare const MODELS: {
|
|
|
6119
6300
|
contextWindow: number;
|
|
6120
6301
|
maxTokens: number;
|
|
6121
6302
|
};
|
|
6303
|
+
readonly "devstral-latest": {
|
|
6304
|
+
id: string;
|
|
6305
|
+
name: string;
|
|
6306
|
+
api: "mistral-conversations";
|
|
6307
|
+
provider: string;
|
|
6308
|
+
baseUrl: string;
|
|
6309
|
+
reasoning: false;
|
|
6310
|
+
input: "text"[];
|
|
6311
|
+
cost: {
|
|
6312
|
+
input: number;
|
|
6313
|
+
output: number;
|
|
6314
|
+
cacheRead: number;
|
|
6315
|
+
cacheWrite: number;
|
|
6316
|
+
};
|
|
6317
|
+
contextWindow: number;
|
|
6318
|
+
maxTokens: number;
|
|
6319
|
+
};
|
|
6122
6320
|
readonly "devstral-medium-2507": {
|
|
6123
6321
|
id: string;
|
|
6124
6322
|
name: string;
|
|
@@ -6493,7 +6691,7 @@ export declare const MODELS: {
|
|
|
6493
6691
|
contextWindow: number;
|
|
6494
6692
|
maxTokens: number;
|
|
6495
6693
|
};
|
|
6496
|
-
readonly "open-
|
|
6694
|
+
readonly "open-mistral-nemo": {
|
|
6497
6695
|
id: string;
|
|
6498
6696
|
name: string;
|
|
6499
6697
|
api: "mistral-conversations";
|
|
@@ -6510,7 +6708,24 @@ export declare const MODELS: {
|
|
|
6510
6708
|
contextWindow: number;
|
|
6511
6709
|
maxTokens: number;
|
|
6512
6710
|
};
|
|
6513
|
-
readonly "open-mixtral-
|
|
6711
|
+
readonly "open-mixtral-8x22b": {
|
|
6712
|
+
id: string;
|
|
6713
|
+
name: string;
|
|
6714
|
+
api: "mistral-conversations";
|
|
6715
|
+
provider: string;
|
|
6716
|
+
baseUrl: string;
|
|
6717
|
+
reasoning: false;
|
|
6718
|
+
input: "text"[];
|
|
6719
|
+
cost: {
|
|
6720
|
+
input: number;
|
|
6721
|
+
output: number;
|
|
6722
|
+
cacheRead: number;
|
|
6723
|
+
cacheWrite: number;
|
|
6724
|
+
};
|
|
6725
|
+
contextWindow: number;
|
|
6726
|
+
maxTokens: number;
|
|
6727
|
+
};
|
|
6728
|
+
readonly "open-mixtral-8x7b": {
|
|
6514
6729
|
id: string;
|
|
6515
6730
|
name: string;
|
|
6516
6731
|
api: "mistral-conversations";
|
|
@@ -6721,7 +6936,543 @@ export declare const MODELS: {
|
|
|
6721
6936
|
supportsStrictMode: false;
|
|
6722
6937
|
};
|
|
6723
6938
|
reasoning: true;
|
|
6724
|
-
input: ("image" | "text")[];
|
|
6939
|
+
input: ("image" | "text")[];
|
|
6940
|
+
cost: {
|
|
6941
|
+
input: number;
|
|
6942
|
+
output: number;
|
|
6943
|
+
cacheRead: number;
|
|
6944
|
+
cacheWrite: number;
|
|
6945
|
+
};
|
|
6946
|
+
contextWindow: number;
|
|
6947
|
+
maxTokens: number;
|
|
6948
|
+
};
|
|
6949
|
+
};
|
|
6950
|
+
readonly "moonshotai-cn": {
|
|
6951
|
+
readonly "kimi-k2-0711-preview": {
|
|
6952
|
+
id: string;
|
|
6953
|
+
name: string;
|
|
6954
|
+
api: "openai-completions";
|
|
6955
|
+
provider: string;
|
|
6956
|
+
baseUrl: string;
|
|
6957
|
+
compat: {
|
|
6958
|
+
supportsStore: false;
|
|
6959
|
+
supportsDeveloperRole: false;
|
|
6960
|
+
supportsReasoningEffort: false;
|
|
6961
|
+
maxTokensField: "max_tokens";
|
|
6962
|
+
supportsStrictMode: false;
|
|
6963
|
+
};
|
|
6964
|
+
reasoning: false;
|
|
6965
|
+
input: "text"[];
|
|
6966
|
+
cost: {
|
|
6967
|
+
input: number;
|
|
6968
|
+
output: number;
|
|
6969
|
+
cacheRead: number;
|
|
6970
|
+
cacheWrite: number;
|
|
6971
|
+
};
|
|
6972
|
+
contextWindow: number;
|
|
6973
|
+
maxTokens: number;
|
|
6974
|
+
};
|
|
6975
|
+
readonly "kimi-k2-0905-preview": {
|
|
6976
|
+
id: string;
|
|
6977
|
+
name: string;
|
|
6978
|
+
api: "openai-completions";
|
|
6979
|
+
provider: string;
|
|
6980
|
+
baseUrl: string;
|
|
6981
|
+
compat: {
|
|
6982
|
+
supportsStore: false;
|
|
6983
|
+
supportsDeveloperRole: false;
|
|
6984
|
+
supportsReasoningEffort: false;
|
|
6985
|
+
maxTokensField: "max_tokens";
|
|
6986
|
+
supportsStrictMode: false;
|
|
6987
|
+
};
|
|
6988
|
+
reasoning: false;
|
|
6989
|
+
input: "text"[];
|
|
6990
|
+
cost: {
|
|
6991
|
+
input: number;
|
|
6992
|
+
output: number;
|
|
6993
|
+
cacheRead: number;
|
|
6994
|
+
cacheWrite: number;
|
|
6995
|
+
};
|
|
6996
|
+
contextWindow: number;
|
|
6997
|
+
maxTokens: number;
|
|
6998
|
+
};
|
|
6999
|
+
readonly "kimi-k2-thinking": {
|
|
7000
|
+
id: string;
|
|
7001
|
+
name: string;
|
|
7002
|
+
api: "openai-completions";
|
|
7003
|
+
provider: string;
|
|
7004
|
+
baseUrl: string;
|
|
7005
|
+
compat: {
|
|
7006
|
+
supportsStore: false;
|
|
7007
|
+
supportsDeveloperRole: false;
|
|
7008
|
+
supportsReasoningEffort: false;
|
|
7009
|
+
maxTokensField: "max_tokens";
|
|
7010
|
+
supportsStrictMode: false;
|
|
7011
|
+
};
|
|
7012
|
+
reasoning: true;
|
|
7013
|
+
input: "text"[];
|
|
7014
|
+
cost: {
|
|
7015
|
+
input: number;
|
|
7016
|
+
output: number;
|
|
7017
|
+
cacheRead: number;
|
|
7018
|
+
cacheWrite: number;
|
|
7019
|
+
};
|
|
7020
|
+
contextWindow: number;
|
|
7021
|
+
maxTokens: number;
|
|
7022
|
+
};
|
|
7023
|
+
readonly "kimi-k2-thinking-turbo": {
|
|
7024
|
+
id: string;
|
|
7025
|
+
name: string;
|
|
7026
|
+
api: "openai-completions";
|
|
7027
|
+
provider: string;
|
|
7028
|
+
baseUrl: string;
|
|
7029
|
+
compat: {
|
|
7030
|
+
supportsStore: false;
|
|
7031
|
+
supportsDeveloperRole: false;
|
|
7032
|
+
supportsReasoningEffort: false;
|
|
7033
|
+
maxTokensField: "max_tokens";
|
|
7034
|
+
supportsStrictMode: false;
|
|
7035
|
+
};
|
|
7036
|
+
reasoning: true;
|
|
7037
|
+
input: "text"[];
|
|
7038
|
+
cost: {
|
|
7039
|
+
input: number;
|
|
7040
|
+
output: number;
|
|
7041
|
+
cacheRead: number;
|
|
7042
|
+
cacheWrite: number;
|
|
7043
|
+
};
|
|
7044
|
+
contextWindow: number;
|
|
7045
|
+
maxTokens: number;
|
|
7046
|
+
};
|
|
7047
|
+
readonly "kimi-k2-turbo-preview": {
|
|
7048
|
+
id: string;
|
|
7049
|
+
name: string;
|
|
7050
|
+
api: "openai-completions";
|
|
7051
|
+
provider: string;
|
|
7052
|
+
baseUrl: string;
|
|
7053
|
+
compat: {
|
|
7054
|
+
supportsStore: false;
|
|
7055
|
+
supportsDeveloperRole: false;
|
|
7056
|
+
supportsReasoningEffort: false;
|
|
7057
|
+
maxTokensField: "max_tokens";
|
|
7058
|
+
supportsStrictMode: false;
|
|
7059
|
+
};
|
|
7060
|
+
reasoning: false;
|
|
7061
|
+
input: "text"[];
|
|
7062
|
+
cost: {
|
|
7063
|
+
input: number;
|
|
7064
|
+
output: number;
|
|
7065
|
+
cacheRead: number;
|
|
7066
|
+
cacheWrite: number;
|
|
7067
|
+
};
|
|
7068
|
+
contextWindow: number;
|
|
7069
|
+
maxTokens: number;
|
|
7070
|
+
};
|
|
7071
|
+
readonly "kimi-k2.5": {
|
|
7072
|
+
id: string;
|
|
7073
|
+
name: string;
|
|
7074
|
+
api: "openai-completions";
|
|
7075
|
+
provider: string;
|
|
7076
|
+
baseUrl: string;
|
|
7077
|
+
compat: {
|
|
7078
|
+
supportsStore: false;
|
|
7079
|
+
supportsDeveloperRole: false;
|
|
7080
|
+
supportsReasoningEffort: false;
|
|
7081
|
+
maxTokensField: "max_tokens";
|
|
7082
|
+
supportsStrictMode: false;
|
|
7083
|
+
};
|
|
7084
|
+
reasoning: true;
|
|
7085
|
+
input: ("image" | "text")[];
|
|
7086
|
+
cost: {
|
|
7087
|
+
input: number;
|
|
7088
|
+
output: number;
|
|
7089
|
+
cacheRead: number;
|
|
7090
|
+
cacheWrite: number;
|
|
7091
|
+
};
|
|
7092
|
+
contextWindow: number;
|
|
7093
|
+
maxTokens: number;
|
|
7094
|
+
};
|
|
7095
|
+
readonly "kimi-k2.6": {
|
|
7096
|
+
id: string;
|
|
7097
|
+
name: string;
|
|
7098
|
+
api: "openai-completions";
|
|
7099
|
+
provider: string;
|
|
7100
|
+
baseUrl: string;
|
|
7101
|
+
compat: {
|
|
7102
|
+
supportsStore: false;
|
|
7103
|
+
supportsDeveloperRole: false;
|
|
7104
|
+
supportsReasoningEffort: false;
|
|
7105
|
+
maxTokensField: "max_tokens";
|
|
7106
|
+
supportsStrictMode: false;
|
|
7107
|
+
};
|
|
7108
|
+
reasoning: true;
|
|
7109
|
+
input: ("image" | "text")[];
|
|
7110
|
+
cost: {
|
|
7111
|
+
input: number;
|
|
7112
|
+
output: number;
|
|
7113
|
+
cacheRead: number;
|
|
7114
|
+
cacheWrite: number;
|
|
7115
|
+
};
|
|
7116
|
+
contextWindow: number;
|
|
7117
|
+
maxTokens: number;
|
|
7118
|
+
};
|
|
7119
|
+
};
|
|
7120
|
+
readonly nvidia: {
|
|
7121
|
+
readonly "meta/llama-3.1-70b-instruct": {
|
|
7122
|
+
id: string;
|
|
7123
|
+
name: string;
|
|
7124
|
+
api: "openai-completions";
|
|
7125
|
+
provider: string;
|
|
7126
|
+
baseUrl: string;
|
|
7127
|
+
headers: {
|
|
7128
|
+
"NVCF-POLL-SECONDS": string;
|
|
7129
|
+
};
|
|
7130
|
+
compat: {
|
|
7131
|
+
supportsStore: false;
|
|
7132
|
+
supportsDeveloperRole: false;
|
|
7133
|
+
supportsReasoningEffort: false;
|
|
7134
|
+
maxTokensField: "max_tokens";
|
|
7135
|
+
supportsStrictMode: false;
|
|
7136
|
+
supportsLongCacheRetention: false;
|
|
7137
|
+
};
|
|
7138
|
+
reasoning: false;
|
|
7139
|
+
input: "text"[];
|
|
7140
|
+
cost: {
|
|
7141
|
+
input: number;
|
|
7142
|
+
output: number;
|
|
7143
|
+
cacheRead: number;
|
|
7144
|
+
cacheWrite: number;
|
|
7145
|
+
};
|
|
7146
|
+
contextWindow: number;
|
|
7147
|
+
maxTokens: number;
|
|
7148
|
+
};
|
|
7149
|
+
readonly "meta/llama-3.1-8b-instruct": {
|
|
7150
|
+
id: string;
|
|
7151
|
+
name: string;
|
|
7152
|
+
api: "openai-completions";
|
|
7153
|
+
provider: string;
|
|
7154
|
+
baseUrl: string;
|
|
7155
|
+
headers: {
|
|
7156
|
+
"NVCF-POLL-SECONDS": string;
|
|
7157
|
+
};
|
|
7158
|
+
compat: {
|
|
7159
|
+
supportsStore: false;
|
|
7160
|
+
supportsDeveloperRole: false;
|
|
7161
|
+
supportsReasoningEffort: false;
|
|
7162
|
+
maxTokensField: "max_tokens";
|
|
7163
|
+
supportsStrictMode: false;
|
|
7164
|
+
supportsLongCacheRetention: false;
|
|
7165
|
+
};
|
|
7166
|
+
reasoning: false;
|
|
7167
|
+
input: "text"[];
|
|
7168
|
+
cost: {
|
|
7169
|
+
input: number;
|
|
7170
|
+
output: number;
|
|
7171
|
+
cacheRead: number;
|
|
7172
|
+
cacheWrite: number;
|
|
7173
|
+
};
|
|
7174
|
+
contextWindow: number;
|
|
7175
|
+
maxTokens: number;
|
|
7176
|
+
};
|
|
7177
|
+
readonly "meta/llama-3.2-11b-vision-instruct": {
|
|
7178
|
+
id: string;
|
|
7179
|
+
name: string;
|
|
7180
|
+
api: "openai-completions";
|
|
7181
|
+
provider: string;
|
|
7182
|
+
baseUrl: string;
|
|
7183
|
+
headers: {
|
|
7184
|
+
"NVCF-POLL-SECONDS": string;
|
|
7185
|
+
};
|
|
7186
|
+
compat: {
|
|
7187
|
+
supportsStore: false;
|
|
7188
|
+
supportsDeveloperRole: false;
|
|
7189
|
+
supportsReasoningEffort: false;
|
|
7190
|
+
maxTokensField: "max_tokens";
|
|
7191
|
+
supportsStrictMode: false;
|
|
7192
|
+
supportsLongCacheRetention: false;
|
|
7193
|
+
};
|
|
7194
|
+
reasoning: false;
|
|
7195
|
+
input: ("image" | "text")[];
|
|
7196
|
+
cost: {
|
|
7197
|
+
input: number;
|
|
7198
|
+
output: number;
|
|
7199
|
+
cacheRead: number;
|
|
7200
|
+
cacheWrite: number;
|
|
7201
|
+
};
|
|
7202
|
+
contextWindow: number;
|
|
7203
|
+
maxTokens: number;
|
|
7204
|
+
};
|
|
7205
|
+
readonly "meta/llama-3.2-90b-vision-instruct": {
|
|
7206
|
+
id: string;
|
|
7207
|
+
name: string;
|
|
7208
|
+
api: "openai-completions";
|
|
7209
|
+
provider: string;
|
|
7210
|
+
baseUrl: string;
|
|
7211
|
+
headers: {
|
|
7212
|
+
"NVCF-POLL-SECONDS": string;
|
|
7213
|
+
};
|
|
7214
|
+
compat: {
|
|
7215
|
+
supportsStore: false;
|
|
7216
|
+
supportsDeveloperRole: false;
|
|
7217
|
+
supportsReasoningEffort: false;
|
|
7218
|
+
maxTokensField: "max_tokens";
|
|
7219
|
+
supportsStrictMode: false;
|
|
7220
|
+
supportsLongCacheRetention: false;
|
|
7221
|
+
};
|
|
7222
|
+
reasoning: false;
|
|
7223
|
+
input: ("image" | "text")[];
|
|
7224
|
+
cost: {
|
|
7225
|
+
input: number;
|
|
7226
|
+
output: number;
|
|
7227
|
+
cacheRead: number;
|
|
7228
|
+
cacheWrite: number;
|
|
7229
|
+
};
|
|
7230
|
+
contextWindow: number;
|
|
7231
|
+
maxTokens: number;
|
|
7232
|
+
};
|
|
7233
|
+
readonly "meta/llama-3.3-70b-instruct": {
|
|
7234
|
+
id: string;
|
|
7235
|
+
name: string;
|
|
7236
|
+
api: "openai-completions";
|
|
7237
|
+
provider: string;
|
|
7238
|
+
baseUrl: string;
|
|
7239
|
+
headers: {
|
|
7240
|
+
"NVCF-POLL-SECONDS": string;
|
|
7241
|
+
};
|
|
7242
|
+
compat: {
|
|
7243
|
+
supportsStore: false;
|
|
7244
|
+
supportsDeveloperRole: false;
|
|
7245
|
+
supportsReasoningEffort: false;
|
|
7246
|
+
maxTokensField: "max_tokens";
|
|
7247
|
+
supportsStrictMode: false;
|
|
7248
|
+
supportsLongCacheRetention: false;
|
|
7249
|
+
};
|
|
7250
|
+
reasoning: false;
|
|
7251
|
+
input: "text"[];
|
|
7252
|
+
cost: {
|
|
7253
|
+
input: number;
|
|
7254
|
+
output: number;
|
|
7255
|
+
cacheRead: number;
|
|
7256
|
+
cacheWrite: number;
|
|
7257
|
+
};
|
|
7258
|
+
contextWindow: number;
|
|
7259
|
+
maxTokens: number;
|
|
7260
|
+
};
|
|
7261
|
+
readonly "mistralai/mistral-large-3-675b-instruct-2512": {
|
|
7262
|
+
id: string;
|
|
7263
|
+
name: string;
|
|
7264
|
+
api: "openai-completions";
|
|
7265
|
+
provider: string;
|
|
7266
|
+
baseUrl: string;
|
|
7267
|
+
headers: {
|
|
7268
|
+
"NVCF-POLL-SECONDS": string;
|
|
7269
|
+
};
|
|
7270
|
+
compat: {
|
|
7271
|
+
supportsStore: false;
|
|
7272
|
+
supportsDeveloperRole: false;
|
|
7273
|
+
supportsReasoningEffort: false;
|
|
7274
|
+
maxTokensField: "max_tokens";
|
|
7275
|
+
supportsStrictMode: false;
|
|
7276
|
+
supportsLongCacheRetention: false;
|
|
7277
|
+
};
|
|
7278
|
+
reasoning: false;
|
|
7279
|
+
input: ("image" | "text")[];
|
|
7280
|
+
cost: {
|
|
7281
|
+
input: number;
|
|
7282
|
+
output: number;
|
|
7283
|
+
cacheRead: number;
|
|
7284
|
+
cacheWrite: number;
|
|
7285
|
+
};
|
|
7286
|
+
contextWindow: number;
|
|
7287
|
+
maxTokens: number;
|
|
7288
|
+
};
|
|
7289
|
+
readonly "mistralai/mistral-small-4-119b-2603": {
|
|
7290
|
+
id: string;
|
|
7291
|
+
name: string;
|
|
7292
|
+
api: "openai-completions";
|
|
7293
|
+
provider: string;
|
|
7294
|
+
baseUrl: string;
|
|
7295
|
+
headers: {
|
|
7296
|
+
"NVCF-POLL-SECONDS": string;
|
|
7297
|
+
};
|
|
7298
|
+
compat: {
|
|
7299
|
+
supportsStore: false;
|
|
7300
|
+
supportsDeveloperRole: false;
|
|
7301
|
+
supportsReasoningEffort: false;
|
|
7302
|
+
maxTokensField: "max_tokens";
|
|
7303
|
+
supportsStrictMode: false;
|
|
7304
|
+
supportsLongCacheRetention: false;
|
|
7305
|
+
};
|
|
7306
|
+
reasoning: false;
|
|
7307
|
+
input: "text"[];
|
|
7308
|
+
cost: {
|
|
7309
|
+
input: number;
|
|
7310
|
+
output: number;
|
|
7311
|
+
cacheRead: number;
|
|
7312
|
+
cacheWrite: number;
|
|
7313
|
+
};
|
|
7314
|
+
contextWindow: number;
|
|
7315
|
+
maxTokens: number;
|
|
7316
|
+
};
|
|
7317
|
+
readonly "moonshotai/kimi-k2.6": {
|
|
7318
|
+
id: string;
|
|
7319
|
+
name: string;
|
|
7320
|
+
api: "openai-completions";
|
|
7321
|
+
provider: string;
|
|
7322
|
+
baseUrl: string;
|
|
7323
|
+
headers: {
|
|
7324
|
+
"NVCF-POLL-SECONDS": string;
|
|
7325
|
+
};
|
|
7326
|
+
compat: {
|
|
7327
|
+
supportsStore: false;
|
|
7328
|
+
supportsDeveloperRole: false;
|
|
7329
|
+
supportsReasoningEffort: false;
|
|
7330
|
+
maxTokensField: "max_tokens";
|
|
7331
|
+
supportsStrictMode: false;
|
|
7332
|
+
supportsLongCacheRetention: false;
|
|
7333
|
+
};
|
|
7334
|
+
reasoning: true;
|
|
7335
|
+
input: ("image" | "text")[];
|
|
7336
|
+
cost: {
|
|
7337
|
+
input: number;
|
|
7338
|
+
output: number;
|
|
7339
|
+
cacheRead: number;
|
|
7340
|
+
cacheWrite: number;
|
|
7341
|
+
};
|
|
7342
|
+
contextWindow: number;
|
|
7343
|
+
maxTokens: number;
|
|
7344
|
+
};
|
|
7345
|
+
readonly "nvidia/llama-3.3-nemotron-super-49b-v1": {
|
|
7346
|
+
id: string;
|
|
7347
|
+
name: string;
|
|
7348
|
+
api: "openai-completions";
|
|
7349
|
+
provider: string;
|
|
7350
|
+
baseUrl: string;
|
|
7351
|
+
headers: {
|
|
7352
|
+
"NVCF-POLL-SECONDS": string;
|
|
7353
|
+
};
|
|
7354
|
+
compat: {
|
|
7355
|
+
supportsStore: false;
|
|
7356
|
+
supportsDeveloperRole: false;
|
|
7357
|
+
supportsReasoningEffort: false;
|
|
7358
|
+
maxTokensField: "max_tokens";
|
|
7359
|
+
supportsStrictMode: false;
|
|
7360
|
+
supportsLongCacheRetention: false;
|
|
7361
|
+
};
|
|
7362
|
+
reasoning: true;
|
|
7363
|
+
input: "text"[];
|
|
7364
|
+
cost: {
|
|
7365
|
+
input: number;
|
|
7366
|
+
output: number;
|
|
7367
|
+
cacheRead: number;
|
|
7368
|
+
cacheWrite: number;
|
|
7369
|
+
};
|
|
7370
|
+
contextWindow: number;
|
|
7371
|
+
maxTokens: number;
|
|
7372
|
+
};
|
|
7373
|
+
readonly "nvidia/llama-3.3-nemotron-super-49b-v1.5": {
|
|
7374
|
+
id: string;
|
|
7375
|
+
name: string;
|
|
7376
|
+
api: "openai-completions";
|
|
7377
|
+
provider: string;
|
|
7378
|
+
baseUrl: string;
|
|
7379
|
+
headers: {
|
|
7380
|
+
"NVCF-POLL-SECONDS": string;
|
|
7381
|
+
};
|
|
7382
|
+
compat: {
|
|
7383
|
+
supportsStore: false;
|
|
7384
|
+
supportsDeveloperRole: false;
|
|
7385
|
+
supportsReasoningEffort: false;
|
|
7386
|
+
maxTokensField: "max_tokens";
|
|
7387
|
+
supportsStrictMode: false;
|
|
7388
|
+
supportsLongCacheRetention: false;
|
|
7389
|
+
};
|
|
7390
|
+
reasoning: true;
|
|
7391
|
+
input: "text"[];
|
|
7392
|
+
cost: {
|
|
7393
|
+
input: number;
|
|
7394
|
+
output: number;
|
|
7395
|
+
cacheRead: number;
|
|
7396
|
+
cacheWrite: number;
|
|
7397
|
+
};
|
|
7398
|
+
contextWindow: number;
|
|
7399
|
+
maxTokens: number;
|
|
7400
|
+
};
|
|
7401
|
+
readonly "nvidia/nemotron-3-nano-30b-a3b": {
|
|
7402
|
+
id: string;
|
|
7403
|
+
name: string;
|
|
7404
|
+
api: "openai-completions";
|
|
7405
|
+
provider: string;
|
|
7406
|
+
baseUrl: string;
|
|
7407
|
+
headers: {
|
|
7408
|
+
"NVCF-POLL-SECONDS": string;
|
|
7409
|
+
};
|
|
7410
|
+
compat: {
|
|
7411
|
+
supportsStore: false;
|
|
7412
|
+
supportsDeveloperRole: false;
|
|
7413
|
+
supportsReasoningEffort: false;
|
|
7414
|
+
maxTokensField: "max_tokens";
|
|
7415
|
+
supportsStrictMode: false;
|
|
7416
|
+
supportsLongCacheRetention: false;
|
|
7417
|
+
};
|
|
7418
|
+
reasoning: true;
|
|
7419
|
+
input: "text"[];
|
|
7420
|
+
cost: {
|
|
7421
|
+
input: number;
|
|
7422
|
+
output: number;
|
|
7423
|
+
cacheRead: number;
|
|
7424
|
+
cacheWrite: number;
|
|
7425
|
+
};
|
|
7426
|
+
contextWindow: number;
|
|
7427
|
+
maxTokens: number;
|
|
7428
|
+
};
|
|
7429
|
+
readonly "nvidia/nemotron-3-nano-omni-30b-a3b-reasoning": {
|
|
7430
|
+
id: string;
|
|
7431
|
+
name: string;
|
|
7432
|
+
api: "openai-completions";
|
|
7433
|
+
provider: string;
|
|
7434
|
+
baseUrl: string;
|
|
7435
|
+
headers: {
|
|
7436
|
+
"NVCF-POLL-SECONDS": string;
|
|
7437
|
+
};
|
|
7438
|
+
compat: {
|
|
7439
|
+
supportsStore: false;
|
|
7440
|
+
supportsDeveloperRole: false;
|
|
7441
|
+
supportsReasoningEffort: false;
|
|
7442
|
+
maxTokensField: "max_tokens";
|
|
7443
|
+
supportsStrictMode: false;
|
|
7444
|
+
supportsLongCacheRetention: false;
|
|
7445
|
+
};
|
|
7446
|
+
reasoning: true;
|
|
7447
|
+
input: ("image" | "text")[];
|
|
7448
|
+
cost: {
|
|
7449
|
+
input: number;
|
|
7450
|
+
output: number;
|
|
7451
|
+
cacheRead: number;
|
|
7452
|
+
cacheWrite: number;
|
|
7453
|
+
};
|
|
7454
|
+
contextWindow: number;
|
|
7455
|
+
maxTokens: number;
|
|
7456
|
+
};
|
|
7457
|
+
readonly "nvidia/nemotron-3-super-120b-a12b": {
|
|
7458
|
+
id: string;
|
|
7459
|
+
name: string;
|
|
7460
|
+
api: "openai-completions";
|
|
7461
|
+
provider: string;
|
|
7462
|
+
baseUrl: string;
|
|
7463
|
+
headers: {
|
|
7464
|
+
"NVCF-POLL-SECONDS": string;
|
|
7465
|
+
};
|
|
7466
|
+
compat: {
|
|
7467
|
+
supportsStore: false;
|
|
7468
|
+
supportsDeveloperRole: false;
|
|
7469
|
+
supportsReasoningEffort: false;
|
|
7470
|
+
maxTokensField: "max_tokens";
|
|
7471
|
+
supportsStrictMode: false;
|
|
7472
|
+
supportsLongCacheRetention: false;
|
|
7473
|
+
};
|
|
7474
|
+
reasoning: true;
|
|
7475
|
+
input: "text"[];
|
|
6725
7476
|
cost: {
|
|
6726
7477
|
input: number;
|
|
6727
7478
|
output: number;
|
|
@@ -6731,22 +7482,24 @@ export declare const MODELS: {
|
|
|
6731
7482
|
contextWindow: number;
|
|
6732
7483
|
maxTokens: number;
|
|
6733
7484
|
};
|
|
6734
|
-
|
|
6735
|
-
readonly "moonshotai-cn": {
|
|
6736
|
-
readonly "kimi-k2-0711-preview": {
|
|
7485
|
+
readonly "nvidia/nvidia-nemotron-nano-9b-v2": {
|
|
6737
7486
|
id: string;
|
|
6738
7487
|
name: string;
|
|
6739
7488
|
api: "openai-completions";
|
|
6740
7489
|
provider: string;
|
|
6741
7490
|
baseUrl: string;
|
|
7491
|
+
headers: {
|
|
7492
|
+
"NVCF-POLL-SECONDS": string;
|
|
7493
|
+
};
|
|
6742
7494
|
compat: {
|
|
6743
7495
|
supportsStore: false;
|
|
6744
7496
|
supportsDeveloperRole: false;
|
|
6745
7497
|
supportsReasoningEffort: false;
|
|
6746
7498
|
maxTokensField: "max_tokens";
|
|
6747
7499
|
supportsStrictMode: false;
|
|
7500
|
+
supportsLongCacheRetention: false;
|
|
6748
7501
|
};
|
|
6749
|
-
reasoning:
|
|
7502
|
+
reasoning: true;
|
|
6750
7503
|
input: "text"[];
|
|
6751
7504
|
cost: {
|
|
6752
7505
|
input: number;
|
|
@@ -6757,20 +7510,24 @@ export declare const MODELS: {
|
|
|
6757
7510
|
contextWindow: number;
|
|
6758
7511
|
maxTokens: number;
|
|
6759
7512
|
};
|
|
6760
|
-
readonly "
|
|
7513
|
+
readonly "openai/gpt-oss-20b": {
|
|
6761
7514
|
id: string;
|
|
6762
7515
|
name: string;
|
|
6763
7516
|
api: "openai-completions";
|
|
6764
7517
|
provider: string;
|
|
6765
7518
|
baseUrl: string;
|
|
7519
|
+
headers: {
|
|
7520
|
+
"NVCF-POLL-SECONDS": string;
|
|
7521
|
+
};
|
|
6766
7522
|
compat: {
|
|
6767
7523
|
supportsStore: false;
|
|
6768
7524
|
supportsDeveloperRole: false;
|
|
6769
7525
|
supportsReasoningEffort: false;
|
|
6770
7526
|
maxTokensField: "max_tokens";
|
|
6771
7527
|
supportsStrictMode: false;
|
|
7528
|
+
supportsLongCacheRetention: false;
|
|
6772
7529
|
};
|
|
6773
|
-
reasoning:
|
|
7530
|
+
reasoning: true;
|
|
6774
7531
|
input: "text"[];
|
|
6775
7532
|
cost: {
|
|
6776
7533
|
input: number;
|
|
@@ -6781,20 +7538,24 @@ export declare const MODELS: {
|
|
|
6781
7538
|
contextWindow: number;
|
|
6782
7539
|
maxTokens: number;
|
|
6783
7540
|
};
|
|
6784
|
-
readonly "
|
|
7541
|
+
readonly "qwen/qwen3-coder-480b-a35b-instruct": {
|
|
6785
7542
|
id: string;
|
|
6786
7543
|
name: string;
|
|
6787
7544
|
api: "openai-completions";
|
|
6788
7545
|
provider: string;
|
|
6789
7546
|
baseUrl: string;
|
|
7547
|
+
headers: {
|
|
7548
|
+
"NVCF-POLL-SECONDS": string;
|
|
7549
|
+
};
|
|
6790
7550
|
compat: {
|
|
6791
7551
|
supportsStore: false;
|
|
6792
7552
|
supportsDeveloperRole: false;
|
|
6793
7553
|
supportsReasoningEffort: false;
|
|
6794
7554
|
maxTokensField: "max_tokens";
|
|
6795
7555
|
supportsStrictMode: false;
|
|
7556
|
+
supportsLongCacheRetention: false;
|
|
6796
7557
|
};
|
|
6797
|
-
reasoning:
|
|
7558
|
+
reasoning: false;
|
|
6798
7559
|
input: "text"[];
|
|
6799
7560
|
cost: {
|
|
6800
7561
|
input: number;
|
|
@@ -6805,21 +7566,25 @@ export declare const MODELS: {
|
|
|
6805
7566
|
contextWindow: number;
|
|
6806
7567
|
maxTokens: number;
|
|
6807
7568
|
};
|
|
6808
|
-
readonly "
|
|
7569
|
+
readonly "qwen/qwen3.5-122b-a10b": {
|
|
6809
7570
|
id: string;
|
|
6810
7571
|
name: string;
|
|
6811
7572
|
api: "openai-completions";
|
|
6812
7573
|
provider: string;
|
|
6813
7574
|
baseUrl: string;
|
|
7575
|
+
headers: {
|
|
7576
|
+
"NVCF-POLL-SECONDS": string;
|
|
7577
|
+
};
|
|
6814
7578
|
compat: {
|
|
6815
7579
|
supportsStore: false;
|
|
6816
7580
|
supportsDeveloperRole: false;
|
|
6817
7581
|
supportsReasoningEffort: false;
|
|
6818
7582
|
maxTokensField: "max_tokens";
|
|
6819
7583
|
supportsStrictMode: false;
|
|
7584
|
+
supportsLongCacheRetention: false;
|
|
6820
7585
|
};
|
|
6821
7586
|
reasoning: true;
|
|
6822
|
-
input: "text"[];
|
|
7587
|
+
input: ("image" | "text")[];
|
|
6823
7588
|
cost: {
|
|
6824
7589
|
input: number;
|
|
6825
7590
|
output: number;
|
|
@@ -6829,20 +7594,24 @@ export declare const MODELS: {
|
|
|
6829
7594
|
contextWindow: number;
|
|
6830
7595
|
maxTokens: number;
|
|
6831
7596
|
};
|
|
6832
|
-
readonly "
|
|
7597
|
+
readonly "stepfun-ai/step-3.5-flash": {
|
|
6833
7598
|
id: string;
|
|
6834
7599
|
name: string;
|
|
6835
7600
|
api: "openai-completions";
|
|
6836
7601
|
provider: string;
|
|
6837
7602
|
baseUrl: string;
|
|
7603
|
+
headers: {
|
|
7604
|
+
"NVCF-POLL-SECONDS": string;
|
|
7605
|
+
};
|
|
6838
7606
|
compat: {
|
|
6839
7607
|
supportsStore: false;
|
|
6840
7608
|
supportsDeveloperRole: false;
|
|
6841
7609
|
supportsReasoningEffort: false;
|
|
6842
7610
|
maxTokensField: "max_tokens";
|
|
6843
7611
|
supportsStrictMode: false;
|
|
7612
|
+
supportsLongCacheRetention: false;
|
|
6844
7613
|
};
|
|
6845
|
-
reasoning:
|
|
7614
|
+
reasoning: true;
|
|
6846
7615
|
input: "text"[];
|
|
6847
7616
|
cost: {
|
|
6848
7617
|
input: number;
|
|
@@ -6853,18 +7622,22 @@ export declare const MODELS: {
|
|
|
6853
7622
|
contextWindow: number;
|
|
6854
7623
|
maxTokens: number;
|
|
6855
7624
|
};
|
|
6856
|
-
readonly "
|
|
7625
|
+
readonly "stepfun-ai/step-3.7-flash": {
|
|
6857
7626
|
id: string;
|
|
6858
7627
|
name: string;
|
|
6859
7628
|
api: "openai-completions";
|
|
6860
7629
|
provider: string;
|
|
6861
7630
|
baseUrl: string;
|
|
7631
|
+
headers: {
|
|
7632
|
+
"NVCF-POLL-SECONDS": string;
|
|
7633
|
+
};
|
|
6862
7634
|
compat: {
|
|
6863
7635
|
supportsStore: false;
|
|
6864
7636
|
supportsDeveloperRole: false;
|
|
6865
7637
|
supportsReasoningEffort: false;
|
|
6866
7638
|
maxTokensField: "max_tokens";
|
|
6867
7639
|
supportsStrictMode: false;
|
|
7640
|
+
supportsLongCacheRetention: false;
|
|
6868
7641
|
};
|
|
6869
7642
|
reasoning: true;
|
|
6870
7643
|
input: ("image" | "text")[];
|
|
@@ -6877,21 +7650,25 @@ export declare const MODELS: {
|
|
|
6877
7650
|
contextWindow: number;
|
|
6878
7651
|
maxTokens: number;
|
|
6879
7652
|
};
|
|
6880
|
-
readonly "
|
|
7653
|
+
readonly "z-ai/glm-5.1": {
|
|
6881
7654
|
id: string;
|
|
6882
7655
|
name: string;
|
|
6883
7656
|
api: "openai-completions";
|
|
6884
7657
|
provider: string;
|
|
6885
7658
|
baseUrl: string;
|
|
7659
|
+
headers: {
|
|
7660
|
+
"NVCF-POLL-SECONDS": string;
|
|
7661
|
+
};
|
|
6886
7662
|
compat: {
|
|
6887
7663
|
supportsStore: false;
|
|
6888
7664
|
supportsDeveloperRole: false;
|
|
6889
7665
|
supportsReasoningEffort: false;
|
|
6890
7666
|
maxTokensField: "max_tokens";
|
|
6891
7667
|
supportsStrictMode: false;
|
|
7668
|
+
supportsLongCacheRetention: false;
|
|
6892
7669
|
};
|
|
6893
7670
|
reasoning: true;
|
|
6894
|
-
input:
|
|
7671
|
+
input: "text"[];
|
|
6895
7672
|
cost: {
|
|
6896
7673
|
input: number;
|
|
6897
7674
|
output: number;
|
|
@@ -7534,6 +8311,7 @@ export declare const MODELS: {
|
|
|
7534
8311
|
thinkingLevelMap: {
|
|
7535
8312
|
off: string;
|
|
7536
8313
|
xhigh: string;
|
|
8314
|
+
minimal: null;
|
|
7537
8315
|
};
|
|
7538
8316
|
input: ("image" | "text")[];
|
|
7539
8317
|
cost: {
|
|
@@ -7706,48 +8484,6 @@ export declare const MODELS: {
|
|
|
7706
8484
|
};
|
|
7707
8485
|
};
|
|
7708
8486
|
readonly "openai-codex": {
|
|
7709
|
-
readonly "gpt-5.2": {
|
|
7710
|
-
id: string;
|
|
7711
|
-
name: string;
|
|
7712
|
-
api: "openai-codex-responses";
|
|
7713
|
-
provider: string;
|
|
7714
|
-
baseUrl: string;
|
|
7715
|
-
reasoning: true;
|
|
7716
|
-
thinkingLevelMap: {
|
|
7717
|
-
xhigh: string;
|
|
7718
|
-
minimal: string;
|
|
7719
|
-
};
|
|
7720
|
-
input: ("image" | "text")[];
|
|
7721
|
-
cost: {
|
|
7722
|
-
input: number;
|
|
7723
|
-
output: number;
|
|
7724
|
-
cacheRead: number;
|
|
7725
|
-
cacheWrite: number;
|
|
7726
|
-
};
|
|
7727
|
-
contextWindow: number;
|
|
7728
|
-
maxTokens: number;
|
|
7729
|
-
};
|
|
7730
|
-
readonly "gpt-5.3-codex": {
|
|
7731
|
-
id: string;
|
|
7732
|
-
name: string;
|
|
7733
|
-
api: "openai-codex-responses";
|
|
7734
|
-
provider: string;
|
|
7735
|
-
baseUrl: string;
|
|
7736
|
-
reasoning: true;
|
|
7737
|
-
thinkingLevelMap: {
|
|
7738
|
-
xhigh: string;
|
|
7739
|
-
minimal: string;
|
|
7740
|
-
};
|
|
7741
|
-
input: ("image" | "text")[];
|
|
7742
|
-
cost: {
|
|
7743
|
-
input: number;
|
|
7744
|
-
output: number;
|
|
7745
|
-
cacheRead: number;
|
|
7746
|
-
cacheWrite: number;
|
|
7747
|
-
};
|
|
7748
|
-
contextWindow: number;
|
|
7749
|
-
maxTokens: number;
|
|
7750
|
-
};
|
|
7751
8487
|
readonly "gpt-5.3-codex-spark": {
|
|
7752
8488
|
id: string;
|
|
7753
8489
|
name: string;
|
|
@@ -7933,6 +8669,7 @@ export declare const MODELS: {
|
|
|
7933
8669
|
baseUrl: string;
|
|
7934
8670
|
compat: {
|
|
7935
8671
|
forceAdaptiveThinking: true;
|
|
8672
|
+
supportsTemperature: false;
|
|
7936
8673
|
};
|
|
7937
8674
|
reasoning: true;
|
|
7938
8675
|
thinkingLevelMap: {
|
|
@@ -7956,6 +8693,7 @@ export declare const MODELS: {
|
|
|
7956
8693
|
baseUrl: string;
|
|
7957
8694
|
compat: {
|
|
7958
8695
|
forceAdaptiveThinking: true;
|
|
8696
|
+
supportsTemperature: false;
|
|
7959
8697
|
};
|
|
7960
8698
|
reasoning: true;
|
|
7961
8699
|
thinkingLevelMap: {
|
|
@@ -8025,6 +8763,34 @@ export declare const MODELS: {
|
|
|
8025
8763
|
contextWindow: number;
|
|
8026
8764
|
maxTokens: number;
|
|
8027
8765
|
};
|
|
8766
|
+
readonly "deepseek-v4-flash": {
|
|
8767
|
+
id: string;
|
|
8768
|
+
name: string;
|
|
8769
|
+
api: "openai-completions";
|
|
8770
|
+
provider: string;
|
|
8771
|
+
baseUrl: string;
|
|
8772
|
+
compat: {
|
|
8773
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
8774
|
+
thinkingFormat: "deepseek";
|
|
8775
|
+
};
|
|
8776
|
+
reasoning: true;
|
|
8777
|
+
thinkingLevelMap: {
|
|
8778
|
+
minimal: null;
|
|
8779
|
+
low: null;
|
|
8780
|
+
medium: null;
|
|
8781
|
+
high: string;
|
|
8782
|
+
xhigh: string;
|
|
8783
|
+
};
|
|
8784
|
+
input: "text"[];
|
|
8785
|
+
cost: {
|
|
8786
|
+
input: number;
|
|
8787
|
+
output: number;
|
|
8788
|
+
cacheRead: number;
|
|
8789
|
+
cacheWrite: number;
|
|
8790
|
+
};
|
|
8791
|
+
contextWindow: number;
|
|
8792
|
+
maxTokens: number;
|
|
8793
|
+
};
|
|
8028
8794
|
readonly "deepseek-v4-flash-free": {
|
|
8029
8795
|
id: string;
|
|
8030
8796
|
name: string;
|
|
@@ -8488,7 +9254,16 @@ export declare const MODELS: {
|
|
|
8488
9254
|
api: "openai-completions";
|
|
8489
9255
|
provider: string;
|
|
8490
9256
|
baseUrl: string;
|
|
9257
|
+
compat: {
|
|
9258
|
+
supportsReasoningEffort: false;
|
|
9259
|
+
};
|
|
8491
9260
|
reasoning: true;
|
|
9261
|
+
thinkingLevelMap: {
|
|
9262
|
+
off: null;
|
|
9263
|
+
minimal: null;
|
|
9264
|
+
low: null;
|
|
9265
|
+
medium: null;
|
|
9266
|
+
};
|
|
8492
9267
|
input: ("image" | "text")[];
|
|
8493
9268
|
cost: {
|
|
8494
9269
|
input: number;
|
|
@@ -8522,6 +9297,10 @@ export declare const MODELS: {
|
|
|
8522
9297
|
api: "openai-completions";
|
|
8523
9298
|
provider: string;
|
|
8524
9299
|
baseUrl: string;
|
|
9300
|
+
compat: {
|
|
9301
|
+
thinkingFormat: "deepseek";
|
|
9302
|
+
supportsReasoningEffort: false;
|
|
9303
|
+
};
|
|
8525
9304
|
reasoning: true;
|
|
8526
9305
|
input: ("image" | "text")[];
|
|
8527
9306
|
cost: {
|
|
@@ -8584,7 +9363,24 @@ export declare const MODELS: {
|
|
|
8584
9363
|
contextWindow: number;
|
|
8585
9364
|
maxTokens: number;
|
|
8586
9365
|
};
|
|
8587
|
-
readonly "
|
|
9366
|
+
readonly "minimax-m3-free": {
|
|
9367
|
+
id: string;
|
|
9368
|
+
name: string;
|
|
9369
|
+
api: "anthropic-messages";
|
|
9370
|
+
provider: string;
|
|
9371
|
+
baseUrl: string;
|
|
9372
|
+
reasoning: true;
|
|
9373
|
+
input: ("image" | "text")[];
|
|
9374
|
+
cost: {
|
|
9375
|
+
input: number;
|
|
9376
|
+
output: number;
|
|
9377
|
+
cacheRead: number;
|
|
9378
|
+
cacheWrite: number;
|
|
9379
|
+
};
|
|
9380
|
+
contextWindow: number;
|
|
9381
|
+
maxTokens: number;
|
|
9382
|
+
};
|
|
9383
|
+
readonly "nemotron-3-ultra-free": {
|
|
8588
9384
|
id: string;
|
|
8589
9385
|
name: string;
|
|
8590
9386
|
api: "openai-completions";
|
|
@@ -8751,11 +9547,14 @@ export declare const MODELS: {
|
|
|
8751
9547
|
provider: string;
|
|
8752
9548
|
baseUrl: string;
|
|
8753
9549
|
compat: {
|
|
8754
|
-
thinkingFormat: "
|
|
9550
|
+
thinkingFormat: "deepseek";
|
|
9551
|
+
supportsReasoningEffort: false;
|
|
8755
9552
|
};
|
|
8756
9553
|
reasoning: true;
|
|
8757
9554
|
thinkingLevelMap: {
|
|
8758
|
-
|
|
9555
|
+
minimal: null;
|
|
9556
|
+
low: null;
|
|
9557
|
+
medium: null;
|
|
8759
9558
|
};
|
|
8760
9559
|
input: ("image" | "text")[];
|
|
8761
9560
|
cost: {
|
|
@@ -8835,15 +9634,12 @@ export declare const MODELS: {
|
|
|
8835
9634
|
contextWindow: number;
|
|
8836
9635
|
maxTokens: number;
|
|
8837
9636
|
};
|
|
8838
|
-
readonly "
|
|
9637
|
+
readonly "minimax-m3": {
|
|
8839
9638
|
id: string;
|
|
8840
9639
|
name: string;
|
|
8841
|
-
api: "
|
|
9640
|
+
api: "anthropic-messages";
|
|
8842
9641
|
provider: string;
|
|
8843
9642
|
baseUrl: string;
|
|
8844
|
-
compat: {
|
|
8845
|
-
thinkingFormat: "qwen";
|
|
8846
|
-
};
|
|
8847
9643
|
reasoning: true;
|
|
8848
9644
|
input: ("image" | "text")[];
|
|
8849
9645
|
cost: {
|
|
@@ -8892,6 +9688,23 @@ export declare const MODELS: {
|
|
|
8892
9688
|
contextWindow: number;
|
|
8893
9689
|
maxTokens: number;
|
|
8894
9690
|
};
|
|
9691
|
+
readonly "qwen3.7-plus": {
|
|
9692
|
+
id: string;
|
|
9693
|
+
name: string;
|
|
9694
|
+
api: "anthropic-messages";
|
|
9695
|
+
provider: string;
|
|
9696
|
+
baseUrl: string;
|
|
9697
|
+
reasoning: true;
|
|
9698
|
+
input: ("image" | "text")[];
|
|
9699
|
+
cost: {
|
|
9700
|
+
input: number;
|
|
9701
|
+
output: number;
|
|
9702
|
+
cacheRead: number;
|
|
9703
|
+
cacheWrite: number;
|
|
9704
|
+
};
|
|
9705
|
+
contextWindow: number;
|
|
9706
|
+
maxTokens: number;
|
|
9707
|
+
};
|
|
8895
9708
|
};
|
|
8896
9709
|
readonly openrouter: {
|
|
8897
9710
|
readonly "ai21/jamba-large-1.7": {
|
|
@@ -9337,23 +10150,6 @@ export declare const MODELS: {
|
|
|
9337
10150
|
contextWindow: number;
|
|
9338
10151
|
maxTokens: number;
|
|
9339
10152
|
};
|
|
9340
|
-
readonly "baidu/ernie-4.5-21b-a3b": {
|
|
9341
|
-
id: string;
|
|
9342
|
-
name: string;
|
|
9343
|
-
api: "openai-completions";
|
|
9344
|
-
provider: string;
|
|
9345
|
-
baseUrl: string;
|
|
9346
|
-
reasoning: false;
|
|
9347
|
-
input: "text"[];
|
|
9348
|
-
cost: {
|
|
9349
|
-
input: number;
|
|
9350
|
-
output: number;
|
|
9351
|
-
cacheRead: number;
|
|
9352
|
-
cacheWrite: number;
|
|
9353
|
-
};
|
|
9354
|
-
contextWindow: number;
|
|
9355
|
-
maxTokens: number;
|
|
9356
|
-
};
|
|
9357
10153
|
readonly "baidu/ernie-4.5-vl-28b-a3b": {
|
|
9358
10154
|
id: string;
|
|
9359
10155
|
name: string;
|
|
@@ -9636,33 +10432,6 @@ export declare const MODELS: {
|
|
|
9636
10432
|
contextWindow: number;
|
|
9637
10433
|
maxTokens: number;
|
|
9638
10434
|
};
|
|
9639
|
-
readonly "deepseek/deepseek-v4-flash:free": {
|
|
9640
|
-
id: string;
|
|
9641
|
-
name: string;
|
|
9642
|
-
api: "openai-completions";
|
|
9643
|
-
provider: string;
|
|
9644
|
-
baseUrl: string;
|
|
9645
|
-
compat: {
|
|
9646
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
9647
|
-
};
|
|
9648
|
-
reasoning: true;
|
|
9649
|
-
thinkingLevelMap: {
|
|
9650
|
-
minimal: null;
|
|
9651
|
-
low: null;
|
|
9652
|
-
medium: null;
|
|
9653
|
-
high: string;
|
|
9654
|
-
xhigh: string;
|
|
9655
|
-
};
|
|
9656
|
-
input: "text"[];
|
|
9657
|
-
cost: {
|
|
9658
|
-
input: number;
|
|
9659
|
-
output: number;
|
|
9660
|
-
cacheRead: number;
|
|
9661
|
-
cacheWrite: number;
|
|
9662
|
-
};
|
|
9663
|
-
contextWindow: number;
|
|
9664
|
-
maxTokens: number;
|
|
9665
|
-
};
|
|
9666
10435
|
readonly "deepseek/deepseek-v4-pro": {
|
|
9667
10436
|
id: string;
|
|
9668
10437
|
name: string;
|
|
@@ -9678,43 +10447,9 @@ export declare const MODELS: {
|
|
|
9678
10447
|
low: null;
|
|
9679
10448
|
medium: null;
|
|
9680
10449
|
high: string;
|
|
9681
|
-
xhigh: string;
|
|
9682
|
-
};
|
|
9683
|
-
input: "text"[];
|
|
9684
|
-
cost: {
|
|
9685
|
-
input: number;
|
|
9686
|
-
output: number;
|
|
9687
|
-
cacheRead: number;
|
|
9688
|
-
cacheWrite: number;
|
|
9689
|
-
};
|
|
9690
|
-
contextWindow: number;
|
|
9691
|
-
maxTokens: number;
|
|
9692
|
-
};
|
|
9693
|
-
readonly "essentialai/rnj-1-instruct": {
|
|
9694
|
-
id: string;
|
|
9695
|
-
name: string;
|
|
9696
|
-
api: "openai-completions";
|
|
9697
|
-
provider: string;
|
|
9698
|
-
baseUrl: string;
|
|
9699
|
-
reasoning: false;
|
|
9700
|
-
input: "text"[];
|
|
9701
|
-
cost: {
|
|
9702
|
-
input: number;
|
|
9703
|
-
output: number;
|
|
9704
|
-
cacheRead: number;
|
|
9705
|
-
cacheWrite: number;
|
|
9706
|
-
};
|
|
9707
|
-
contextWindow: number;
|
|
9708
|
-
maxTokens: number;
|
|
9709
|
-
};
|
|
9710
|
-
readonly "google/gemini-2.0-flash-001": {
|
|
9711
|
-
id: string;
|
|
9712
|
-
name: string;
|
|
9713
|
-
api: "openai-completions";
|
|
9714
|
-
provider: string;
|
|
9715
|
-
baseUrl: string;
|
|
9716
|
-
reasoning: false;
|
|
9717
|
-
input: ("image" | "text")[];
|
|
10450
|
+
xhigh: string;
|
|
10451
|
+
};
|
|
10452
|
+
input: "text"[];
|
|
9718
10453
|
cost: {
|
|
9719
10454
|
input: number;
|
|
9720
10455
|
output: number;
|
|
@@ -9724,14 +10459,14 @@ export declare const MODELS: {
|
|
|
9724
10459
|
contextWindow: number;
|
|
9725
10460
|
maxTokens: number;
|
|
9726
10461
|
};
|
|
9727
|
-
readonly "
|
|
10462
|
+
readonly "essentialai/rnj-1-instruct": {
|
|
9728
10463
|
id: string;
|
|
9729
10464
|
name: string;
|
|
9730
10465
|
api: "openai-completions";
|
|
9731
10466
|
provider: string;
|
|
9732
10467
|
baseUrl: string;
|
|
9733
10468
|
reasoning: false;
|
|
9734
|
-
input:
|
|
10469
|
+
input: "text"[];
|
|
9735
10470
|
cost: {
|
|
9736
10471
|
input: number;
|
|
9737
10472
|
output: number;
|
|
@@ -10220,7 +10955,7 @@ export declare const MODELS: {
|
|
|
10220
10955
|
contextWindow: number;
|
|
10221
10956
|
maxTokens: number;
|
|
10222
10957
|
};
|
|
10223
|
-
readonly "meta-llama/llama-4-
|
|
10958
|
+
readonly "meta-llama/llama-4-maverick": {
|
|
10224
10959
|
id: string;
|
|
10225
10960
|
name: string;
|
|
10226
10961
|
api: "openai-completions";
|
|
@@ -10237,14 +10972,14 @@ export declare const MODELS: {
|
|
|
10237
10972
|
contextWindow: number;
|
|
10238
10973
|
maxTokens: number;
|
|
10239
10974
|
};
|
|
10240
|
-
readonly "
|
|
10975
|
+
readonly "meta-llama/llama-4-scout": {
|
|
10241
10976
|
id: string;
|
|
10242
10977
|
name: string;
|
|
10243
10978
|
api: "openai-completions";
|
|
10244
10979
|
provider: string;
|
|
10245
10980
|
baseUrl: string;
|
|
10246
|
-
reasoning:
|
|
10247
|
-
input: "text"[];
|
|
10981
|
+
reasoning: false;
|
|
10982
|
+
input: ("image" | "text")[];
|
|
10248
10983
|
cost: {
|
|
10249
10984
|
input: number;
|
|
10250
10985
|
output: number;
|
|
@@ -10254,7 +10989,7 @@ export declare const MODELS: {
|
|
|
10254
10989
|
contextWindow: number;
|
|
10255
10990
|
maxTokens: number;
|
|
10256
10991
|
};
|
|
10257
|
-
readonly "minimax/minimax-
|
|
10992
|
+
readonly "minimax/minimax-m1": {
|
|
10258
10993
|
id: string;
|
|
10259
10994
|
name: string;
|
|
10260
10995
|
api: "openai-completions";
|
|
@@ -10271,7 +11006,7 @@ export declare const MODELS: {
|
|
|
10271
11006
|
contextWindow: number;
|
|
10272
11007
|
maxTokens: number;
|
|
10273
11008
|
};
|
|
10274
|
-
readonly "minimax/minimax-m2
|
|
11009
|
+
readonly "minimax/minimax-m2": {
|
|
10275
11010
|
id: string;
|
|
10276
11011
|
name: string;
|
|
10277
11012
|
api: "openai-completions";
|
|
@@ -10288,7 +11023,7 @@ export declare const MODELS: {
|
|
|
10288
11023
|
contextWindow: number;
|
|
10289
11024
|
maxTokens: number;
|
|
10290
11025
|
};
|
|
10291
|
-
readonly "minimax/minimax-m2.
|
|
11026
|
+
readonly "minimax/minimax-m2.1": {
|
|
10292
11027
|
id: string;
|
|
10293
11028
|
name: string;
|
|
10294
11029
|
api: "openai-completions";
|
|
@@ -10305,7 +11040,7 @@ export declare const MODELS: {
|
|
|
10305
11040
|
contextWindow: number;
|
|
10306
11041
|
maxTokens: number;
|
|
10307
11042
|
};
|
|
10308
|
-
readonly "minimax/minimax-m2.5
|
|
11043
|
+
readonly "minimax/minimax-m2.5": {
|
|
10309
11044
|
id: string;
|
|
10310
11045
|
name: string;
|
|
10311
11046
|
api: "openai-completions";
|
|
@@ -10339,31 +11074,14 @@ export declare const MODELS: {
|
|
|
10339
11074
|
contextWindow: number;
|
|
10340
11075
|
maxTokens: number;
|
|
10341
11076
|
};
|
|
10342
|
-
readonly "
|
|
10343
|
-
id: string;
|
|
10344
|
-
name: string;
|
|
10345
|
-
api: "openai-completions";
|
|
10346
|
-
provider: string;
|
|
10347
|
-
baseUrl: string;
|
|
10348
|
-
reasoning: false;
|
|
10349
|
-
input: "text"[];
|
|
10350
|
-
cost: {
|
|
10351
|
-
input: number;
|
|
10352
|
-
output: number;
|
|
10353
|
-
cacheRead: number;
|
|
10354
|
-
cacheWrite: number;
|
|
10355
|
-
};
|
|
10356
|
-
contextWindow: number;
|
|
10357
|
-
maxTokens: number;
|
|
10358
|
-
};
|
|
10359
|
-
readonly "mistralai/devstral-2512": {
|
|
11077
|
+
readonly "minimax/minimax-m3": {
|
|
10360
11078
|
id: string;
|
|
10361
11079
|
name: string;
|
|
10362
11080
|
api: "openai-completions";
|
|
10363
11081
|
provider: string;
|
|
10364
11082
|
baseUrl: string;
|
|
10365
|
-
reasoning:
|
|
10366
|
-
input: "text"[];
|
|
11083
|
+
reasoning: true;
|
|
11084
|
+
input: ("image" | "text")[];
|
|
10367
11085
|
cost: {
|
|
10368
11086
|
input: number;
|
|
10369
11087
|
output: number;
|
|
@@ -10373,7 +11091,7 @@ export declare const MODELS: {
|
|
|
10373
11091
|
contextWindow: number;
|
|
10374
11092
|
maxTokens: number;
|
|
10375
11093
|
};
|
|
10376
|
-
readonly "mistralai/
|
|
11094
|
+
readonly "mistralai/codestral-2508": {
|
|
10377
11095
|
id: string;
|
|
10378
11096
|
name: string;
|
|
10379
11097
|
api: "openai-completions";
|
|
@@ -10390,7 +11108,7 @@ export declare const MODELS: {
|
|
|
10390
11108
|
contextWindow: number;
|
|
10391
11109
|
maxTokens: number;
|
|
10392
11110
|
};
|
|
10393
|
-
readonly "mistralai/devstral-
|
|
11111
|
+
readonly "mistralai/devstral-2512": {
|
|
10394
11112
|
id: string;
|
|
10395
11113
|
name: string;
|
|
10396
11114
|
api: "openai-completions";
|
|
@@ -10492,23 +11210,6 @@ export declare const MODELS: {
|
|
|
10492
11210
|
contextWindow: number;
|
|
10493
11211
|
maxTokens: number;
|
|
10494
11212
|
};
|
|
10495
|
-
readonly "mistralai/mistral-large-2411": {
|
|
10496
|
-
id: string;
|
|
10497
|
-
name: string;
|
|
10498
|
-
api: "openai-completions";
|
|
10499
|
-
provider: string;
|
|
10500
|
-
baseUrl: string;
|
|
10501
|
-
reasoning: false;
|
|
10502
|
-
input: "text"[];
|
|
10503
|
-
cost: {
|
|
10504
|
-
input: number;
|
|
10505
|
-
output: number;
|
|
10506
|
-
cacheRead: number;
|
|
10507
|
-
cacheWrite: number;
|
|
10508
|
-
};
|
|
10509
|
-
contextWindow: number;
|
|
10510
|
-
maxTokens: number;
|
|
10511
|
-
};
|
|
10512
11213
|
readonly "mistralai/mistral-large-2512": {
|
|
10513
11214
|
id: string;
|
|
10514
11215
|
name: string;
|
|
@@ -10662,23 +11363,6 @@ export declare const MODELS: {
|
|
|
10662
11363
|
contextWindow: number;
|
|
10663
11364
|
maxTokens: number;
|
|
10664
11365
|
};
|
|
10665
|
-
readonly "mistralai/pixtral-large-2411": {
|
|
10666
|
-
id: string;
|
|
10667
|
-
name: string;
|
|
10668
|
-
api: "openai-completions";
|
|
10669
|
-
provider: string;
|
|
10670
|
-
baseUrl: string;
|
|
10671
|
-
reasoning: false;
|
|
10672
|
-
input: ("image" | "text")[];
|
|
10673
|
-
cost: {
|
|
10674
|
-
input: number;
|
|
10675
|
-
output: number;
|
|
10676
|
-
cacheRead: number;
|
|
10677
|
-
cacheWrite: number;
|
|
10678
|
-
};
|
|
10679
|
-
contextWindow: number;
|
|
10680
|
-
maxTokens: number;
|
|
10681
|
-
};
|
|
10682
11366
|
readonly "mistralai/voxtral-small-24b-2507": {
|
|
10683
11367
|
id: string;
|
|
10684
11368
|
name: string;
|
|
@@ -10770,6 +11454,10 @@ export declare const MODELS: {
|
|
|
10770
11454
|
api: "openai-completions";
|
|
10771
11455
|
provider: string;
|
|
10772
11456
|
baseUrl: string;
|
|
11457
|
+
compat: {
|
|
11458
|
+
supportsDeveloperRole: false;
|
|
11459
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
11460
|
+
};
|
|
10773
11461
|
reasoning: true;
|
|
10774
11462
|
input: ("image" | "text")[];
|
|
10775
11463
|
cost: {
|
|
@@ -10787,6 +11475,10 @@ export declare const MODELS: {
|
|
|
10787
11475
|
api: "openai-completions";
|
|
10788
11476
|
provider: string;
|
|
10789
11477
|
baseUrl: string;
|
|
11478
|
+
compat: {
|
|
11479
|
+
supportsDeveloperRole: false;
|
|
11480
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
11481
|
+
};
|
|
10790
11482
|
reasoning: true;
|
|
10791
11483
|
input: ("image" | "text")[];
|
|
10792
11484
|
cost: {
|
|
@@ -10917,14 +11609,14 @@ export declare const MODELS: {
|
|
|
10917
11609
|
contextWindow: number;
|
|
10918
11610
|
maxTokens: number;
|
|
10919
11611
|
};
|
|
10920
|
-
readonly "nvidia/nemotron-
|
|
11612
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
10921
11613
|
id: string;
|
|
10922
11614
|
name: string;
|
|
10923
11615
|
api: "openai-completions";
|
|
10924
11616
|
provider: string;
|
|
10925
11617
|
baseUrl: string;
|
|
10926
11618
|
reasoning: true;
|
|
10927
|
-
input:
|
|
11619
|
+
input: "text"[];
|
|
10928
11620
|
cost: {
|
|
10929
11621
|
input: number;
|
|
10930
11622
|
output: number;
|
|
@@ -10934,7 +11626,7 @@ export declare const MODELS: {
|
|
|
10934
11626
|
contextWindow: number;
|
|
10935
11627
|
maxTokens: number;
|
|
10936
11628
|
};
|
|
10937
|
-
readonly "nvidia/nemotron-
|
|
11629
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b:free": {
|
|
10938
11630
|
id: string;
|
|
10939
11631
|
name: string;
|
|
10940
11632
|
api: "openai-completions";
|
|
@@ -10951,14 +11643,14 @@ export declare const MODELS: {
|
|
|
10951
11643
|
contextWindow: number;
|
|
10952
11644
|
maxTokens: number;
|
|
10953
11645
|
};
|
|
10954
|
-
readonly "nvidia/nemotron-nano-
|
|
11646
|
+
readonly "nvidia/nemotron-nano-12b-v2-vl:free": {
|
|
10955
11647
|
id: string;
|
|
10956
11648
|
name: string;
|
|
10957
11649
|
api: "openai-completions";
|
|
10958
11650
|
provider: string;
|
|
10959
11651
|
baseUrl: string;
|
|
10960
11652
|
reasoning: true;
|
|
10961
|
-
input: "text"[];
|
|
11653
|
+
input: ("image" | "text")[];
|
|
10962
11654
|
cost: {
|
|
10963
11655
|
input: number;
|
|
10964
11656
|
output: number;
|
|
@@ -10968,13 +11660,13 @@ export declare const MODELS: {
|
|
|
10968
11660
|
contextWindow: number;
|
|
10969
11661
|
maxTokens: number;
|
|
10970
11662
|
};
|
|
10971
|
-
readonly "
|
|
11663
|
+
readonly "nvidia/nemotron-nano-9b-v2": {
|
|
10972
11664
|
id: string;
|
|
10973
11665
|
name: string;
|
|
10974
11666
|
api: "openai-completions";
|
|
10975
11667
|
provider: string;
|
|
10976
11668
|
baseUrl: string;
|
|
10977
|
-
reasoning:
|
|
11669
|
+
reasoning: true;
|
|
10978
11670
|
input: "text"[];
|
|
10979
11671
|
cost: {
|
|
10980
11672
|
input: number;
|
|
@@ -10985,13 +11677,13 @@ export declare const MODELS: {
|
|
|
10985
11677
|
contextWindow: number;
|
|
10986
11678
|
maxTokens: number;
|
|
10987
11679
|
};
|
|
10988
|
-
readonly "
|
|
11680
|
+
readonly "nvidia/nemotron-nano-9b-v2:free": {
|
|
10989
11681
|
id: string;
|
|
10990
11682
|
name: string;
|
|
10991
11683
|
api: "openai-completions";
|
|
10992
11684
|
provider: string;
|
|
10993
11685
|
baseUrl: string;
|
|
10994
|
-
reasoning:
|
|
11686
|
+
reasoning: true;
|
|
10995
11687
|
input: "text"[];
|
|
10996
11688
|
cost: {
|
|
10997
11689
|
input: number;
|
|
@@ -11002,7 +11694,7 @@ export declare const MODELS: {
|
|
|
11002
11694
|
contextWindow: number;
|
|
11003
11695
|
maxTokens: number;
|
|
11004
11696
|
};
|
|
11005
|
-
readonly "openai/gpt-3.5-turbo
|
|
11697
|
+
readonly "openai/gpt-3.5-turbo": {
|
|
11006
11698
|
id: string;
|
|
11007
11699
|
name: string;
|
|
11008
11700
|
api: "openai-completions";
|
|
@@ -11019,7 +11711,7 @@ export declare const MODELS: {
|
|
|
11019
11711
|
contextWindow: number;
|
|
11020
11712
|
maxTokens: number;
|
|
11021
11713
|
};
|
|
11022
|
-
readonly "openai/gpt-
|
|
11714
|
+
readonly "openai/gpt-3.5-turbo-0613": {
|
|
11023
11715
|
id: string;
|
|
11024
11716
|
name: string;
|
|
11025
11717
|
api: "openai-completions";
|
|
@@ -11036,7 +11728,7 @@ export declare const MODELS: {
|
|
|
11036
11728
|
contextWindow: number;
|
|
11037
11729
|
maxTokens: number;
|
|
11038
11730
|
};
|
|
11039
|
-
readonly "openai/gpt-
|
|
11731
|
+
readonly "openai/gpt-3.5-turbo-16k": {
|
|
11040
11732
|
id: string;
|
|
11041
11733
|
name: string;
|
|
11042
11734
|
api: "openai-completions";
|
|
@@ -11053,7 +11745,7 @@ export declare const MODELS: {
|
|
|
11053
11745
|
contextWindow: number;
|
|
11054
11746
|
maxTokens: number;
|
|
11055
11747
|
};
|
|
11056
|
-
readonly "openai/gpt-4
|
|
11748
|
+
readonly "openai/gpt-4": {
|
|
11057
11749
|
id: string;
|
|
11058
11750
|
name: string;
|
|
11059
11751
|
api: "openai-completions";
|
|
@@ -11070,14 +11762,14 @@ export declare const MODELS: {
|
|
|
11070
11762
|
contextWindow: number;
|
|
11071
11763
|
maxTokens: number;
|
|
11072
11764
|
};
|
|
11073
|
-
readonly "openai/gpt-4-
|
|
11765
|
+
readonly "openai/gpt-4-1106-preview": {
|
|
11074
11766
|
id: string;
|
|
11075
11767
|
name: string;
|
|
11076
11768
|
api: "openai-completions";
|
|
11077
11769
|
provider: string;
|
|
11078
11770
|
baseUrl: string;
|
|
11079
11771
|
reasoning: false;
|
|
11080
|
-
input:
|
|
11772
|
+
input: "text"[];
|
|
11081
11773
|
cost: {
|
|
11082
11774
|
input: number;
|
|
11083
11775
|
output: number;
|
|
@@ -11087,14 +11779,14 @@ export declare const MODELS: {
|
|
|
11087
11779
|
contextWindow: number;
|
|
11088
11780
|
maxTokens: number;
|
|
11089
11781
|
};
|
|
11090
|
-
readonly "openai/gpt-4-turbo
|
|
11782
|
+
readonly "openai/gpt-4-turbo": {
|
|
11091
11783
|
id: string;
|
|
11092
11784
|
name: string;
|
|
11093
11785
|
api: "openai-completions";
|
|
11094
11786
|
provider: string;
|
|
11095
11787
|
baseUrl: string;
|
|
11096
11788
|
reasoning: false;
|
|
11097
|
-
input: "text"[];
|
|
11789
|
+
input: ("image" | "text")[];
|
|
11098
11790
|
cost: {
|
|
11099
11791
|
input: number;
|
|
11100
11792
|
output: number;
|
|
@@ -11104,14 +11796,14 @@ export declare const MODELS: {
|
|
|
11104
11796
|
contextWindow: number;
|
|
11105
11797
|
maxTokens: number;
|
|
11106
11798
|
};
|
|
11107
|
-
readonly "openai/gpt-4
|
|
11799
|
+
readonly "openai/gpt-4-turbo-preview": {
|
|
11108
11800
|
id: string;
|
|
11109
11801
|
name: string;
|
|
11110
11802
|
api: "openai-completions";
|
|
11111
11803
|
provider: string;
|
|
11112
11804
|
baseUrl: string;
|
|
11113
11805
|
reasoning: false;
|
|
11114
|
-
input:
|
|
11806
|
+
input: "text"[];
|
|
11115
11807
|
cost: {
|
|
11116
11808
|
input: number;
|
|
11117
11809
|
output: number;
|
|
@@ -11121,7 +11813,7 @@ export declare const MODELS: {
|
|
|
11121
11813
|
contextWindow: number;
|
|
11122
11814
|
maxTokens: number;
|
|
11123
11815
|
};
|
|
11124
|
-
readonly "openai/gpt-4.1
|
|
11816
|
+
readonly "openai/gpt-4.1": {
|
|
11125
11817
|
id: string;
|
|
11126
11818
|
name: string;
|
|
11127
11819
|
api: "openai-completions";
|
|
@@ -11138,7 +11830,7 @@ export declare const MODELS: {
|
|
|
11138
11830
|
contextWindow: number;
|
|
11139
11831
|
maxTokens: number;
|
|
11140
11832
|
};
|
|
11141
|
-
readonly "openai/gpt-4.1-
|
|
11833
|
+
readonly "openai/gpt-4.1-mini": {
|
|
11142
11834
|
id: string;
|
|
11143
11835
|
name: string;
|
|
11144
11836
|
api: "openai-completions";
|
|
@@ -11155,7 +11847,7 @@ export declare const MODELS: {
|
|
|
11155
11847
|
contextWindow: number;
|
|
11156
11848
|
maxTokens: number;
|
|
11157
11849
|
};
|
|
11158
|
-
readonly "openai/gpt-
|
|
11850
|
+
readonly "openai/gpt-4.1-nano": {
|
|
11159
11851
|
id: string;
|
|
11160
11852
|
name: string;
|
|
11161
11853
|
api: "openai-completions";
|
|
@@ -11172,7 +11864,7 @@ export declare const MODELS: {
|
|
|
11172
11864
|
contextWindow: number;
|
|
11173
11865
|
maxTokens: number;
|
|
11174
11866
|
};
|
|
11175
|
-
readonly "openai/gpt-4o
|
|
11867
|
+
readonly "openai/gpt-4o": {
|
|
11176
11868
|
id: string;
|
|
11177
11869
|
name: string;
|
|
11178
11870
|
api: "openai-completions";
|
|
@@ -11189,7 +11881,7 @@ export declare const MODELS: {
|
|
|
11189
11881
|
contextWindow: number;
|
|
11190
11882
|
maxTokens: number;
|
|
11191
11883
|
};
|
|
11192
|
-
readonly "openai/gpt-4o-2024-
|
|
11884
|
+
readonly "openai/gpt-4o-2024-05-13": {
|
|
11193
11885
|
id: string;
|
|
11194
11886
|
name: string;
|
|
11195
11887
|
api: "openai-completions";
|
|
@@ -11206,7 +11898,7 @@ export declare const MODELS: {
|
|
|
11206
11898
|
contextWindow: number;
|
|
11207
11899
|
maxTokens: number;
|
|
11208
11900
|
};
|
|
11209
|
-
readonly "openai/gpt-4o-2024-
|
|
11901
|
+
readonly "openai/gpt-4o-2024-08-06": {
|
|
11210
11902
|
id: string;
|
|
11211
11903
|
name: string;
|
|
11212
11904
|
api: "openai-completions";
|
|
@@ -11223,14 +11915,14 @@ export declare const MODELS: {
|
|
|
11223
11915
|
contextWindow: number;
|
|
11224
11916
|
maxTokens: number;
|
|
11225
11917
|
};
|
|
11226
|
-
readonly "openai/gpt-4o-
|
|
11918
|
+
readonly "openai/gpt-4o-2024-11-20": {
|
|
11227
11919
|
id: string;
|
|
11228
11920
|
name: string;
|
|
11229
11921
|
api: "openai-completions";
|
|
11230
11922
|
provider: string;
|
|
11231
11923
|
baseUrl: string;
|
|
11232
11924
|
reasoning: false;
|
|
11233
|
-
input: "text"[];
|
|
11925
|
+
input: ("image" | "text")[];
|
|
11234
11926
|
cost: {
|
|
11235
11927
|
input: number;
|
|
11236
11928
|
output: number;
|
|
@@ -12095,23 +12787,6 @@ export declare const MODELS: {
|
|
|
12095
12787
|
contextWindow: number;
|
|
12096
12788
|
maxTokens: number;
|
|
12097
12789
|
};
|
|
12098
|
-
readonly "qwen/qwen-2.5-7b-instruct": {
|
|
12099
|
-
id: string;
|
|
12100
|
-
name: string;
|
|
12101
|
-
api: "openai-completions";
|
|
12102
|
-
provider: string;
|
|
12103
|
-
baseUrl: string;
|
|
12104
|
-
reasoning: false;
|
|
12105
|
-
input: "text"[];
|
|
12106
|
-
cost: {
|
|
12107
|
-
input: number;
|
|
12108
|
-
output: number;
|
|
12109
|
-
cacheRead: number;
|
|
12110
|
-
cacheWrite: number;
|
|
12111
|
-
};
|
|
12112
|
-
contextWindow: number;
|
|
12113
|
-
maxTokens: number;
|
|
12114
|
-
};
|
|
12115
12790
|
readonly "qwen/qwen-plus": {
|
|
12116
12791
|
id: string;
|
|
12117
12792
|
name: string;
|
|
@@ -12860,13 +13535,13 @@ export declare const MODELS: {
|
|
|
12860
13535
|
contextWindow: number;
|
|
12861
13536
|
maxTokens: number;
|
|
12862
13537
|
};
|
|
12863
|
-
readonly "
|
|
13538
|
+
readonly "qwen/qwen3.7-plus": {
|
|
12864
13539
|
id: string;
|
|
12865
13540
|
name: string;
|
|
12866
13541
|
api: "openai-completions";
|
|
12867
13542
|
provider: string;
|
|
12868
13543
|
baseUrl: string;
|
|
12869
|
-
reasoning:
|
|
13544
|
+
reasoning: true;
|
|
12870
13545
|
input: ("image" | "text")[];
|
|
12871
13546
|
cost: {
|
|
12872
13547
|
input: number;
|
|
@@ -12877,14 +13552,14 @@ export declare const MODELS: {
|
|
|
12877
13552
|
contextWindow: number;
|
|
12878
13553
|
maxTokens: number;
|
|
12879
13554
|
};
|
|
12880
|
-
readonly "
|
|
13555
|
+
readonly "rekaai/reka-edge": {
|
|
12881
13556
|
id: string;
|
|
12882
13557
|
name: string;
|
|
12883
13558
|
api: "openai-completions";
|
|
12884
13559
|
provider: string;
|
|
12885
13560
|
baseUrl: string;
|
|
12886
13561
|
reasoning: false;
|
|
12887
|
-
input: "text"[];
|
|
13562
|
+
input: ("image" | "text")[];
|
|
12888
13563
|
cost: {
|
|
12889
13564
|
input: number;
|
|
12890
13565
|
output: number;
|
|
@@ -12894,7 +13569,7 @@ export declare const MODELS: {
|
|
|
12894
13569
|
contextWindow: number;
|
|
12895
13570
|
maxTokens: number;
|
|
12896
13571
|
};
|
|
12897
|
-
readonly "
|
|
13572
|
+
readonly "relace/relace-search": {
|
|
12898
13573
|
id: string;
|
|
12899
13574
|
name: string;
|
|
12900
13575
|
api: "openai-completions";
|
|
@@ -12911,7 +13586,7 @@ export declare const MODELS: {
|
|
|
12911
13586
|
contextWindow: number;
|
|
12912
13587
|
maxTokens: number;
|
|
12913
13588
|
};
|
|
12914
|
-
readonly "sao10k/l3
|
|
13589
|
+
readonly "sao10k/l3-euryale-70b": {
|
|
12915
13590
|
id: string;
|
|
12916
13591
|
name: string;
|
|
12917
13592
|
api: "openai-completions";
|
|
@@ -12928,13 +13603,13 @@ export declare const MODELS: {
|
|
|
12928
13603
|
contextWindow: number;
|
|
12929
13604
|
maxTokens: number;
|
|
12930
13605
|
};
|
|
12931
|
-
readonly "
|
|
13606
|
+
readonly "sao10k/l3.1-euryale-70b": {
|
|
12932
13607
|
id: string;
|
|
12933
13608
|
name: string;
|
|
12934
13609
|
api: "openai-completions";
|
|
12935
13610
|
provider: string;
|
|
12936
13611
|
baseUrl: string;
|
|
12937
|
-
reasoning:
|
|
13612
|
+
reasoning: false;
|
|
12938
13613
|
input: "text"[];
|
|
12939
13614
|
cost: {
|
|
12940
13615
|
input: number;
|
|
@@ -12945,7 +13620,7 @@ export declare const MODELS: {
|
|
|
12945
13620
|
contextWindow: number;
|
|
12946
13621
|
maxTokens: number;
|
|
12947
13622
|
};
|
|
12948
|
-
readonly "
|
|
13623
|
+
readonly "stepfun/step-3.5-flash": {
|
|
12949
13624
|
id: string;
|
|
12950
13625
|
name: string;
|
|
12951
13626
|
api: "openai-completions";
|
|
@@ -12962,14 +13637,14 @@ export declare const MODELS: {
|
|
|
12962
13637
|
contextWindow: number;
|
|
12963
13638
|
maxTokens: number;
|
|
12964
13639
|
};
|
|
12965
|
-
readonly "
|
|
13640
|
+
readonly "stepfun/step-3.7-flash": {
|
|
12966
13641
|
id: string;
|
|
12967
13642
|
name: string;
|
|
12968
13643
|
api: "openai-completions";
|
|
12969
13644
|
provider: string;
|
|
12970
13645
|
baseUrl: string;
|
|
12971
|
-
reasoning:
|
|
12972
|
-
input: "text"[];
|
|
13646
|
+
reasoning: true;
|
|
13647
|
+
input: ("image" | "text")[];
|
|
12973
13648
|
cost: {
|
|
12974
13649
|
input: number;
|
|
12975
13650
|
output: number;
|
|
@@ -12979,13 +13654,13 @@ export declare const MODELS: {
|
|
|
12979
13654
|
contextWindow: number;
|
|
12980
13655
|
maxTokens: number;
|
|
12981
13656
|
};
|
|
12982
|
-
readonly "
|
|
13657
|
+
readonly "tencent/hy3-preview": {
|
|
12983
13658
|
id: string;
|
|
12984
13659
|
name: string;
|
|
12985
13660
|
api: "openai-completions";
|
|
12986
13661
|
provider: string;
|
|
12987
13662
|
baseUrl: string;
|
|
12988
|
-
reasoning:
|
|
13663
|
+
reasoning: true;
|
|
12989
13664
|
input: "text"[];
|
|
12990
13665
|
cost: {
|
|
12991
13666
|
input: number;
|
|
@@ -12996,13 +13671,13 @@ export declare const MODELS: {
|
|
|
12996
13671
|
contextWindow: number;
|
|
12997
13672
|
maxTokens: number;
|
|
12998
13673
|
};
|
|
12999
|
-
readonly "
|
|
13674
|
+
readonly "thedrummer/rocinante-12b": {
|
|
13000
13675
|
id: string;
|
|
13001
13676
|
name: string;
|
|
13002
13677
|
api: "openai-completions";
|
|
13003
13678
|
provider: string;
|
|
13004
13679
|
baseUrl: string;
|
|
13005
|
-
reasoning:
|
|
13680
|
+
reasoning: false;
|
|
13006
13681
|
input: "text"[];
|
|
13007
13682
|
cost: {
|
|
13008
13683
|
input: number;
|
|
@@ -13013,14 +13688,14 @@ export declare const MODELS: {
|
|
|
13013
13688
|
contextWindow: number;
|
|
13014
13689
|
maxTokens: number;
|
|
13015
13690
|
};
|
|
13016
|
-
readonly "
|
|
13691
|
+
readonly "thedrummer/unslopnemo-12b": {
|
|
13017
13692
|
id: string;
|
|
13018
13693
|
name: string;
|
|
13019
13694
|
api: "openai-completions";
|
|
13020
13695
|
provider: string;
|
|
13021
13696
|
baseUrl: string;
|
|
13022
|
-
reasoning:
|
|
13023
|
-
input:
|
|
13697
|
+
reasoning: false;
|
|
13698
|
+
input: "text"[];
|
|
13024
13699
|
cost: {
|
|
13025
13700
|
input: number;
|
|
13026
13701
|
output: number;
|
|
@@ -13030,14 +13705,14 @@ export declare const MODELS: {
|
|
|
13030
13705
|
contextWindow: number;
|
|
13031
13706
|
maxTokens: number;
|
|
13032
13707
|
};
|
|
13033
|
-
readonly "
|
|
13708
|
+
readonly "upstage/solar-pro-3": {
|
|
13034
13709
|
id: string;
|
|
13035
13710
|
name: string;
|
|
13036
13711
|
api: "openai-completions";
|
|
13037
13712
|
provider: string;
|
|
13038
13713
|
baseUrl: string;
|
|
13039
13714
|
reasoning: true;
|
|
13040
|
-
input:
|
|
13715
|
+
input: "text"[];
|
|
13041
13716
|
cost: {
|
|
13042
13717
|
input: number;
|
|
13043
13718
|
output: number;
|
|
@@ -13047,7 +13722,7 @@ export declare const MODELS: {
|
|
|
13047
13722
|
contextWindow: number;
|
|
13048
13723
|
maxTokens: number;
|
|
13049
13724
|
};
|
|
13050
|
-
readonly "x-ai/grok-
|
|
13725
|
+
readonly "x-ai/grok-4.20": {
|
|
13051
13726
|
id: string;
|
|
13052
13727
|
name: string;
|
|
13053
13728
|
api: "openai-completions";
|
|
@@ -13064,14 +13739,14 @@ export declare const MODELS: {
|
|
|
13064
13739
|
contextWindow: number;
|
|
13065
13740
|
maxTokens: number;
|
|
13066
13741
|
};
|
|
13067
|
-
readonly "
|
|
13742
|
+
readonly "x-ai/grok-4.3": {
|
|
13068
13743
|
id: string;
|
|
13069
13744
|
name: string;
|
|
13070
13745
|
api: "openai-completions";
|
|
13071
13746
|
provider: string;
|
|
13072
13747
|
baseUrl: string;
|
|
13073
13748
|
reasoning: true;
|
|
13074
|
-
input: "text"[];
|
|
13749
|
+
input: ("image" | "text")[];
|
|
13075
13750
|
cost: {
|
|
13076
13751
|
input: number;
|
|
13077
13752
|
output: number;
|
|
@@ -13081,7 +13756,7 @@ export declare const MODELS: {
|
|
|
13081
13756
|
contextWindow: number;
|
|
13082
13757
|
maxTokens: number;
|
|
13083
13758
|
};
|
|
13084
|
-
readonly "
|
|
13759
|
+
readonly "x-ai/grok-build-0.1": {
|
|
13085
13760
|
id: string;
|
|
13086
13761
|
name: string;
|
|
13087
13762
|
api: "openai-completions";
|
|
@@ -13098,7 +13773,7 @@ export declare const MODELS: {
|
|
|
13098
13773
|
contextWindow: number;
|
|
13099
13774
|
maxTokens: number;
|
|
13100
13775
|
};
|
|
13101
|
-
readonly "xiaomi/mimo-v2-
|
|
13776
|
+
readonly "xiaomi/mimo-v2-flash": {
|
|
13102
13777
|
id: string;
|
|
13103
13778
|
name: string;
|
|
13104
13779
|
api: "openai-completions";
|
|
@@ -14074,7 +14749,7 @@ export declare const MODELS: {
|
|
|
14074
14749
|
api: "anthropic-messages";
|
|
14075
14750
|
provider: string;
|
|
14076
14751
|
baseUrl: string;
|
|
14077
|
-
reasoning:
|
|
14752
|
+
reasoning: true;
|
|
14078
14753
|
input: "text"[];
|
|
14079
14754
|
cost: {
|
|
14080
14755
|
input: number;
|
|
@@ -14126,7 +14801,7 @@ export declare const MODELS: {
|
|
|
14126
14801
|
provider: string;
|
|
14127
14802
|
baseUrl: string;
|
|
14128
14803
|
reasoning: true;
|
|
14129
|
-
input:
|
|
14804
|
+
input: "text"[];
|
|
14130
14805
|
cost: {
|
|
14131
14806
|
input: number;
|
|
14132
14807
|
output: number;
|
|
@@ -14159,7 +14834,7 @@ export declare const MODELS: {
|
|
|
14159
14834
|
api: "anthropic-messages";
|
|
14160
14835
|
provider: string;
|
|
14161
14836
|
baseUrl: string;
|
|
14162
|
-
reasoning:
|
|
14837
|
+
reasoning: true;
|
|
14163
14838
|
input: "text"[];
|
|
14164
14839
|
cost: {
|
|
14165
14840
|
input: number;
|
|
@@ -14193,7 +14868,7 @@ export declare const MODELS: {
|
|
|
14193
14868
|
api: "anthropic-messages";
|
|
14194
14869
|
provider: string;
|
|
14195
14870
|
baseUrl: string;
|
|
14196
|
-
reasoning:
|
|
14871
|
+
reasoning: true;
|
|
14197
14872
|
input: "text"[];
|
|
14198
14873
|
cost: {
|
|
14199
14874
|
input: number;
|
|
@@ -14272,6 +14947,40 @@ export declare const MODELS: {
|
|
|
14272
14947
|
contextWindow: number;
|
|
14273
14948
|
maxTokens: number;
|
|
14274
14949
|
};
|
|
14950
|
+
readonly "alibaba/qwen3-next-80b-a3b-instruct": {
|
|
14951
|
+
id: string;
|
|
14952
|
+
name: string;
|
|
14953
|
+
api: "anthropic-messages";
|
|
14954
|
+
provider: string;
|
|
14955
|
+
baseUrl: string;
|
|
14956
|
+
reasoning: false;
|
|
14957
|
+
input: "text"[];
|
|
14958
|
+
cost: {
|
|
14959
|
+
input: number;
|
|
14960
|
+
output: number;
|
|
14961
|
+
cacheRead: number;
|
|
14962
|
+
cacheWrite: number;
|
|
14963
|
+
};
|
|
14964
|
+
contextWindow: number;
|
|
14965
|
+
maxTokens: number;
|
|
14966
|
+
};
|
|
14967
|
+
readonly "alibaba/qwen3-next-80b-a3b-thinking": {
|
|
14968
|
+
id: string;
|
|
14969
|
+
name: string;
|
|
14970
|
+
api: "anthropic-messages";
|
|
14971
|
+
provider: string;
|
|
14972
|
+
baseUrl: string;
|
|
14973
|
+
reasoning: true;
|
|
14974
|
+
input: "text"[];
|
|
14975
|
+
cost: {
|
|
14976
|
+
input: number;
|
|
14977
|
+
output: number;
|
|
14978
|
+
cacheRead: number;
|
|
14979
|
+
cacheWrite: number;
|
|
14980
|
+
};
|
|
14981
|
+
contextWindow: number;
|
|
14982
|
+
maxTokens: number;
|
|
14983
|
+
};
|
|
14275
14984
|
readonly "alibaba/qwen3-vl-thinking": {
|
|
14276
14985
|
id: string;
|
|
14277
14986
|
name: string;
|
|
@@ -14289,7 +14998,24 @@ export declare const MODELS: {
|
|
|
14289
14998
|
contextWindow: number;
|
|
14290
14999
|
maxTokens: number;
|
|
14291
15000
|
};
|
|
14292
|
-
readonly "alibaba/qwen3.5-flash": {
|
|
15001
|
+
readonly "alibaba/qwen3.5-flash": {
|
|
15002
|
+
id: string;
|
|
15003
|
+
name: string;
|
|
15004
|
+
api: "anthropic-messages";
|
|
15005
|
+
provider: string;
|
|
15006
|
+
baseUrl: string;
|
|
15007
|
+
reasoning: true;
|
|
15008
|
+
input: ("image" | "text")[];
|
|
15009
|
+
cost: {
|
|
15010
|
+
input: number;
|
|
15011
|
+
output: number;
|
|
15012
|
+
cacheRead: number;
|
|
15013
|
+
cacheWrite: number;
|
|
15014
|
+
};
|
|
15015
|
+
contextWindow: number;
|
|
15016
|
+
maxTokens: number;
|
|
15017
|
+
};
|
|
15018
|
+
readonly "alibaba/qwen3.5-plus": {
|
|
14293
15019
|
id: string;
|
|
14294
15020
|
name: string;
|
|
14295
15021
|
api: "anthropic-messages";
|
|
@@ -14306,7 +15032,7 @@ export declare const MODELS: {
|
|
|
14306
15032
|
contextWindow: number;
|
|
14307
15033
|
maxTokens: number;
|
|
14308
15034
|
};
|
|
14309
|
-
readonly "alibaba/qwen3.
|
|
15035
|
+
readonly "alibaba/qwen3.6-27b": {
|
|
14310
15036
|
id: string;
|
|
14311
15037
|
name: string;
|
|
14312
15038
|
api: "anthropic-messages";
|
|
@@ -14323,7 +15049,7 @@ export declare const MODELS: {
|
|
|
14323
15049
|
contextWindow: number;
|
|
14324
15050
|
maxTokens: number;
|
|
14325
15051
|
};
|
|
14326
|
-
readonly "alibaba/qwen3.6-
|
|
15052
|
+
readonly "alibaba/qwen3.6-plus": {
|
|
14327
15053
|
id: string;
|
|
14328
15054
|
name: string;
|
|
14329
15055
|
api: "anthropic-messages";
|
|
@@ -14340,14 +15066,14 @@ export declare const MODELS: {
|
|
|
14340
15066
|
contextWindow: number;
|
|
14341
15067
|
maxTokens: number;
|
|
14342
15068
|
};
|
|
14343
|
-
readonly "alibaba/qwen3.
|
|
15069
|
+
readonly "alibaba/qwen3.7-max": {
|
|
14344
15070
|
id: string;
|
|
14345
15071
|
name: string;
|
|
14346
15072
|
api: "anthropic-messages";
|
|
14347
15073
|
provider: string;
|
|
14348
15074
|
baseUrl: string;
|
|
14349
15075
|
reasoning: true;
|
|
14350
|
-
input:
|
|
15076
|
+
input: "text"[];
|
|
14351
15077
|
cost: {
|
|
14352
15078
|
input: number;
|
|
14353
15079
|
output: number;
|
|
@@ -14357,7 +15083,7 @@ export declare const MODELS: {
|
|
|
14357
15083
|
contextWindow: number;
|
|
14358
15084
|
maxTokens: number;
|
|
14359
15085
|
};
|
|
14360
|
-
readonly "alibaba/qwen3.7-
|
|
15086
|
+
readonly "alibaba/qwen3.7-plus": {
|
|
14361
15087
|
id: string;
|
|
14362
15088
|
name: string;
|
|
14363
15089
|
api: "anthropic-messages";
|
|
@@ -14507,6 +15233,7 @@ export declare const MODELS: {
|
|
|
14507
15233
|
baseUrl: string;
|
|
14508
15234
|
compat: {
|
|
14509
15235
|
forceAdaptiveThinking: true;
|
|
15236
|
+
supportsTemperature: false;
|
|
14510
15237
|
};
|
|
14511
15238
|
reasoning: true;
|
|
14512
15239
|
thinkingLevelMap: {
|
|
@@ -14530,6 +15257,7 @@ export declare const MODELS: {
|
|
|
14530
15257
|
baseUrl: string;
|
|
14531
15258
|
compat: {
|
|
14532
15259
|
forceAdaptiveThinking: true;
|
|
15260
|
+
supportsTemperature: false;
|
|
14533
15261
|
};
|
|
14534
15262
|
reasoning: true;
|
|
14535
15263
|
thinkingLevelMap: {
|
|
@@ -14741,8 +15469,8 @@ export declare const MODELS: {
|
|
|
14741
15469
|
api: "anthropic-messages";
|
|
14742
15470
|
provider: string;
|
|
14743
15471
|
baseUrl: string;
|
|
14744
|
-
reasoning:
|
|
14745
|
-
input: "text"[];
|
|
15472
|
+
reasoning: true;
|
|
15473
|
+
input: ("image" | "text")[];
|
|
14746
15474
|
cost: {
|
|
14747
15475
|
input: number;
|
|
14748
15476
|
output: number;
|
|
@@ -14758,8 +15486,8 @@ export declare const MODELS: {
|
|
|
14758
15486
|
api: "anthropic-messages";
|
|
14759
15487
|
provider: string;
|
|
14760
15488
|
baseUrl: string;
|
|
14761
|
-
reasoning:
|
|
14762
|
-
input: "text"[];
|
|
15489
|
+
reasoning: true;
|
|
15490
|
+
input: ("image" | "text")[];
|
|
14763
15491
|
cost: {
|
|
14764
15492
|
input: number;
|
|
14765
15493
|
output: number;
|
|
@@ -14776,7 +15504,7 @@ export declare const MODELS: {
|
|
|
14776
15504
|
provider: string;
|
|
14777
15505
|
baseUrl: string;
|
|
14778
15506
|
reasoning: true;
|
|
14779
|
-
input: "text"[];
|
|
15507
|
+
input: ("image" | "text")[];
|
|
14780
15508
|
cost: {
|
|
14781
15509
|
input: number;
|
|
14782
15510
|
output: number;
|
|
@@ -14996,7 +15724,7 @@ export declare const MODELS: {
|
|
|
14996
15724
|
api: "anthropic-messages";
|
|
14997
15725
|
provider: string;
|
|
14998
15726
|
baseUrl: string;
|
|
14999
|
-
reasoning:
|
|
15727
|
+
reasoning: true;
|
|
15000
15728
|
input: ("image" | "text")[];
|
|
15001
15729
|
cost: {
|
|
15002
15730
|
input: number;
|
|
@@ -15303,7 +16031,7 @@ export declare const MODELS: {
|
|
|
15303
16031
|
provider: string;
|
|
15304
16032
|
baseUrl: string;
|
|
15305
16033
|
reasoning: true;
|
|
15306
|
-
input:
|
|
16034
|
+
input: "text"[];
|
|
15307
16035
|
cost: {
|
|
15308
16036
|
input: number;
|
|
15309
16037
|
output: number;
|
|
@@ -15314,6 +16042,23 @@ export declare const MODELS: {
|
|
|
15314
16042
|
maxTokens: number;
|
|
15315
16043
|
};
|
|
15316
16044
|
readonly "minimax/minimax-m2.7-highspeed": {
|
|
16045
|
+
id: string;
|
|
16046
|
+
name: string;
|
|
16047
|
+
api: "anthropic-messages";
|
|
16048
|
+
provider: string;
|
|
16049
|
+
baseUrl: string;
|
|
16050
|
+
reasoning: true;
|
|
16051
|
+
input: "text"[];
|
|
16052
|
+
cost: {
|
|
16053
|
+
input: number;
|
|
16054
|
+
output: number;
|
|
16055
|
+
cacheRead: number;
|
|
16056
|
+
cacheWrite: number;
|
|
16057
|
+
};
|
|
16058
|
+
contextWindow: number;
|
|
16059
|
+
maxTokens: number;
|
|
16060
|
+
};
|
|
16061
|
+
readonly "minimax/minimax-m3": {
|
|
15317
16062
|
id: string;
|
|
15318
16063
|
name: string;
|
|
15319
16064
|
api: "anthropic-messages";
|
|
@@ -15466,6 +16211,23 @@ export declare const MODELS: {
|
|
|
15466
16211
|
contextWindow: number;
|
|
15467
16212
|
maxTokens: number;
|
|
15468
16213
|
};
|
|
16214
|
+
readonly "mistral/mistral-nemo": {
|
|
16215
|
+
id: string;
|
|
16216
|
+
name: string;
|
|
16217
|
+
api: "anthropic-messages";
|
|
16218
|
+
provider: string;
|
|
16219
|
+
baseUrl: string;
|
|
16220
|
+
reasoning: false;
|
|
16221
|
+
input: "text"[];
|
|
16222
|
+
cost: {
|
|
16223
|
+
input: number;
|
|
16224
|
+
output: number;
|
|
16225
|
+
cacheRead: number;
|
|
16226
|
+
cacheWrite: number;
|
|
16227
|
+
};
|
|
16228
|
+
contextWindow: number;
|
|
16229
|
+
maxTokens: number;
|
|
16230
|
+
};
|
|
15469
16231
|
readonly "mistral/mistral-small": {
|
|
15470
16232
|
id: string;
|
|
15471
16233
|
name: string;
|
|
@@ -15619,6 +16381,40 @@ export declare const MODELS: {
|
|
|
15619
16381
|
contextWindow: number;
|
|
15620
16382
|
maxTokens: number;
|
|
15621
16383
|
};
|
|
16384
|
+
readonly "nvidia/nemotron-3-super-120b-a12b": {
|
|
16385
|
+
id: string;
|
|
16386
|
+
name: string;
|
|
16387
|
+
api: "anthropic-messages";
|
|
16388
|
+
provider: string;
|
|
16389
|
+
baseUrl: string;
|
|
16390
|
+
reasoning: true;
|
|
16391
|
+
input: "text"[];
|
|
16392
|
+
cost: {
|
|
16393
|
+
input: number;
|
|
16394
|
+
output: number;
|
|
16395
|
+
cacheRead: number;
|
|
16396
|
+
cacheWrite: number;
|
|
16397
|
+
};
|
|
16398
|
+
contextWindow: number;
|
|
16399
|
+
maxTokens: number;
|
|
16400
|
+
};
|
|
16401
|
+
readonly "nvidia/nemotron-3-ultra-550b-a55b": {
|
|
16402
|
+
id: string;
|
|
16403
|
+
name: string;
|
|
16404
|
+
api: "anthropic-messages";
|
|
16405
|
+
provider: string;
|
|
16406
|
+
baseUrl: string;
|
|
16407
|
+
reasoning: true;
|
|
16408
|
+
input: "text"[];
|
|
16409
|
+
cost: {
|
|
16410
|
+
input: number;
|
|
16411
|
+
output: number;
|
|
16412
|
+
cacheRead: number;
|
|
16413
|
+
cacheWrite: number;
|
|
16414
|
+
};
|
|
16415
|
+
contextWindow: number;
|
|
16416
|
+
maxTokens: number;
|
|
16417
|
+
};
|
|
15622
16418
|
readonly "nvidia/nemotron-nano-12b-v2-vl": {
|
|
15623
16419
|
id: string;
|
|
15624
16420
|
name: string;
|
|
@@ -15796,7 +16592,7 @@ export declare const MODELS: {
|
|
|
15796
16592
|
provider: string;
|
|
15797
16593
|
baseUrl: string;
|
|
15798
16594
|
reasoning: true;
|
|
15799
|
-
input: "text"[];
|
|
16595
|
+
input: ("image" | "text")[];
|
|
15800
16596
|
cost: {
|
|
15801
16597
|
input: number;
|
|
15802
16598
|
output: number;
|
|
@@ -16185,6 +16981,23 @@ export declare const MODELS: {
|
|
|
16185
16981
|
contextWindow: number;
|
|
16186
16982
|
maxTokens: number;
|
|
16187
16983
|
};
|
|
16984
|
+
readonly "openai/gpt-oss-120b": {
|
|
16985
|
+
id: string;
|
|
16986
|
+
name: string;
|
|
16987
|
+
api: "anthropic-messages";
|
|
16988
|
+
provider: string;
|
|
16989
|
+
baseUrl: string;
|
|
16990
|
+
reasoning: true;
|
|
16991
|
+
input: "text"[];
|
|
16992
|
+
cost: {
|
|
16993
|
+
input: number;
|
|
16994
|
+
output: number;
|
|
16995
|
+
cacheRead: number;
|
|
16996
|
+
cacheWrite: number;
|
|
16997
|
+
};
|
|
16998
|
+
contextWindow: number;
|
|
16999
|
+
maxTokens: number;
|
|
17000
|
+
};
|
|
16188
17001
|
readonly "openai/gpt-oss-20b": {
|
|
16189
17002
|
id: string;
|
|
16190
17003
|
name: string;
|
|
@@ -16355,6 +17168,40 @@ export declare const MODELS: {
|
|
|
16355
17168
|
contextWindow: number;
|
|
16356
17169
|
maxTokens: number;
|
|
16357
17170
|
};
|
|
17171
|
+
readonly "stepfun/step-3.5-flash": {
|
|
17172
|
+
id: string;
|
|
17173
|
+
name: string;
|
|
17174
|
+
api: "anthropic-messages";
|
|
17175
|
+
provider: string;
|
|
17176
|
+
baseUrl: string;
|
|
17177
|
+
reasoning: true;
|
|
17178
|
+
input: "text"[];
|
|
17179
|
+
cost: {
|
|
17180
|
+
input: number;
|
|
17181
|
+
output: number;
|
|
17182
|
+
cacheRead: number;
|
|
17183
|
+
cacheWrite: number;
|
|
17184
|
+
};
|
|
17185
|
+
contextWindow: number;
|
|
17186
|
+
maxTokens: number;
|
|
17187
|
+
};
|
|
17188
|
+
readonly "stepfun/step-3.7-flash": {
|
|
17189
|
+
id: string;
|
|
17190
|
+
name: string;
|
|
17191
|
+
api: "anthropic-messages";
|
|
17192
|
+
provider: string;
|
|
17193
|
+
baseUrl: string;
|
|
17194
|
+
reasoning: true;
|
|
17195
|
+
input: ("image" | "text")[];
|
|
17196
|
+
cost: {
|
|
17197
|
+
input: number;
|
|
17198
|
+
output: number;
|
|
17199
|
+
cacheRead: number;
|
|
17200
|
+
cacheWrite: number;
|
|
17201
|
+
};
|
|
17202
|
+
contextWindow: number;
|
|
17203
|
+
maxTokens: number;
|
|
17204
|
+
};
|
|
16358
17205
|
readonly "xai/grok-4.1-fast-non-reasoning": {
|
|
16359
17206
|
id: string;
|
|
16360
17207
|
name: string;
|
|
@@ -16633,7 +17480,7 @@ export declare const MODELS: {
|
|
|
16633
17480
|
api: "anthropic-messages";
|
|
16634
17481
|
provider: string;
|
|
16635
17482
|
baseUrl: string;
|
|
16636
|
-
reasoning:
|
|
17483
|
+
reasoning: true;
|
|
16637
17484
|
input: ("image" | "text")[];
|
|
16638
17485
|
cost: {
|
|
16639
17486
|
input: number;
|
|
@@ -16787,7 +17634,7 @@ export declare const MODELS: {
|
|
|
16787
17634
|
provider: string;
|
|
16788
17635
|
baseUrl: string;
|
|
16789
17636
|
reasoning: true;
|
|
16790
|
-
input: "text"[];
|
|
17637
|
+
input: ("image" | "text")[];
|
|
16791
17638
|
cost: {
|
|
16792
17639
|
input: number;
|
|
16793
17640
|
output: number;
|
|
@@ -17412,5 +18259,116 @@ export declare const MODELS: {
|
|
|
17412
18259
|
maxTokens: number;
|
|
17413
18260
|
};
|
|
17414
18261
|
};
|
|
18262
|
+
readonly "zai-coding-cn": {
|
|
18263
|
+
readonly "glm-4.5-air": {
|
|
18264
|
+
id: string;
|
|
18265
|
+
name: string;
|
|
18266
|
+
api: "openai-completions";
|
|
18267
|
+
provider: string;
|
|
18268
|
+
baseUrl: string;
|
|
18269
|
+
compat: {
|
|
18270
|
+
supportsDeveloperRole: false;
|
|
18271
|
+
thinkingFormat: "zai";
|
|
18272
|
+
};
|
|
18273
|
+
reasoning: true;
|
|
18274
|
+
input: "text"[];
|
|
18275
|
+
cost: {
|
|
18276
|
+
input: number;
|
|
18277
|
+
output: number;
|
|
18278
|
+
cacheRead: number;
|
|
18279
|
+
cacheWrite: number;
|
|
18280
|
+
};
|
|
18281
|
+
contextWindow: number;
|
|
18282
|
+
maxTokens: number;
|
|
18283
|
+
};
|
|
18284
|
+
readonly "glm-4.7": {
|
|
18285
|
+
id: string;
|
|
18286
|
+
name: string;
|
|
18287
|
+
api: "openai-completions";
|
|
18288
|
+
provider: string;
|
|
18289
|
+
baseUrl: string;
|
|
18290
|
+
compat: {
|
|
18291
|
+
supportsDeveloperRole: false;
|
|
18292
|
+
thinkingFormat: "zai";
|
|
18293
|
+
zaiToolStream: true;
|
|
18294
|
+
};
|
|
18295
|
+
reasoning: true;
|
|
18296
|
+
input: "text"[];
|
|
18297
|
+
cost: {
|
|
18298
|
+
input: number;
|
|
18299
|
+
output: number;
|
|
18300
|
+
cacheRead: number;
|
|
18301
|
+
cacheWrite: number;
|
|
18302
|
+
};
|
|
18303
|
+
contextWindow: number;
|
|
18304
|
+
maxTokens: number;
|
|
18305
|
+
};
|
|
18306
|
+
readonly "glm-5-turbo": {
|
|
18307
|
+
id: string;
|
|
18308
|
+
name: string;
|
|
18309
|
+
api: "openai-completions";
|
|
18310
|
+
provider: string;
|
|
18311
|
+
baseUrl: string;
|
|
18312
|
+
compat: {
|
|
18313
|
+
supportsDeveloperRole: false;
|
|
18314
|
+
thinkingFormat: "zai";
|
|
18315
|
+
zaiToolStream: true;
|
|
18316
|
+
};
|
|
18317
|
+
reasoning: true;
|
|
18318
|
+
input: "text"[];
|
|
18319
|
+
cost: {
|
|
18320
|
+
input: number;
|
|
18321
|
+
output: number;
|
|
18322
|
+
cacheRead: number;
|
|
18323
|
+
cacheWrite: number;
|
|
18324
|
+
};
|
|
18325
|
+
contextWindow: number;
|
|
18326
|
+
maxTokens: number;
|
|
18327
|
+
};
|
|
18328
|
+
readonly "glm-5.1": {
|
|
18329
|
+
id: string;
|
|
18330
|
+
name: string;
|
|
18331
|
+
api: "openai-completions";
|
|
18332
|
+
provider: string;
|
|
18333
|
+
baseUrl: string;
|
|
18334
|
+
compat: {
|
|
18335
|
+
supportsDeveloperRole: false;
|
|
18336
|
+
thinkingFormat: "zai";
|
|
18337
|
+
zaiToolStream: true;
|
|
18338
|
+
};
|
|
18339
|
+
reasoning: true;
|
|
18340
|
+
input: "text"[];
|
|
18341
|
+
cost: {
|
|
18342
|
+
input: number;
|
|
18343
|
+
output: number;
|
|
18344
|
+
cacheRead: number;
|
|
18345
|
+
cacheWrite: number;
|
|
18346
|
+
};
|
|
18347
|
+
contextWindow: number;
|
|
18348
|
+
maxTokens: number;
|
|
18349
|
+
};
|
|
18350
|
+
readonly "glm-5v-turbo": {
|
|
18351
|
+
id: string;
|
|
18352
|
+
name: string;
|
|
18353
|
+
api: "openai-completions";
|
|
18354
|
+
provider: string;
|
|
18355
|
+
baseUrl: string;
|
|
18356
|
+
compat: {
|
|
18357
|
+
supportsDeveloperRole: false;
|
|
18358
|
+
thinkingFormat: "zai";
|
|
18359
|
+
zaiToolStream: true;
|
|
18360
|
+
};
|
|
18361
|
+
reasoning: true;
|
|
18362
|
+
input: ("image" | "text")[];
|
|
18363
|
+
cost: {
|
|
18364
|
+
input: number;
|
|
18365
|
+
output: number;
|
|
18366
|
+
cacheRead: number;
|
|
18367
|
+
cacheWrite: number;
|
|
18368
|
+
};
|
|
18369
|
+
contextWindow: number;
|
|
18370
|
+
maxTokens: number;
|
|
18371
|
+
};
|
|
18372
|
+
};
|
|
17415
18373
|
};
|
|
17416
18374
|
//# sourceMappingURL=models.generated.d.ts.map
|