omk-ai 1.0.0 → 1.2.2
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/CHANGELOG.md +29 -1
- package/README.md +2 -0
- package/dist/env-api-keys.d.ts.map +1 -1
- package/dist/env-api-keys.js +1 -0
- package/dist/env-api-keys.js.map +1 -1
- package/dist/models.d.ts.map +1 -1
- package/dist/models.generated.d.ts +2490 -369
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +1922 -444
- package/dist/models.generated.js.map +1 -1
- package/dist/models.js +4 -1
- package/dist/models.js.map +1 -1
- package/dist/provider-response-types.d.ts +15 -0
- package/dist/provider-response-types.d.ts.map +1 -0
- package/dist/provider-response-types.js +2 -0
- package/dist/provider-response-types.js.map +1 -0
- package/dist/providers/anthropic.d.ts.map +1 -1
- package/dist/providers/anthropic.js +2 -23
- package/dist/providers/anthropic.js.map +1 -1
- package/dist/providers/bedrock-thinking.d.ts.map +1 -1
- package/dist/providers/bedrock-thinking.js +2 -2
- package/dist/providers/bedrock-thinking.js.map +1 -1
- package/dist/providers/google-shared.d.ts.map +1 -1
- package/dist/providers/google-shared.js +13 -6
- package/dist/providers/google-shared.js.map +1 -1
- package/dist/providers/grok-thinking.d.ts.map +1 -1
- package/dist/providers/grok-thinking.js +10 -0
- package/dist/providers/grok-thinking.js.map +1 -1
- package/dist/providers/openai-completions-compat.d.ts.map +1 -1
- package/dist/providers/openai-completions-compat.js +2 -0
- package/dist/providers/openai-completions-compat.js.map +1 -1
- package/dist/providers/openai-completions.d.ts.map +1 -1
- package/dist/providers/openai-completions.js +22 -29
- package/dist/providers/openai-completions.js.map +1 -1
- package/dist/providers/openai-responses-shared.d.ts.map +1 -1
- package/dist/providers/openai-responses-shared.js +10 -23
- package/dist/providers/openai-responses-shared.js.map +1 -1
- package/dist/providers/provider-stop-reasons.d.ts +9 -0
- package/dist/providers/provider-stop-reasons.d.ts.map +1 -0
- package/dist/providers/provider-stop-reasons.js +63 -0
- package/dist/providers/provider-stop-reasons.js.map +1 -0
- package/dist/types.d.ts +13 -15
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/utils/claude-code-identity.d.ts +4 -4
- package/dist/utils/claude-code-identity.d.ts.map +1 -1
- package/dist/utils/claude-code-identity.js +1 -1
- package/dist/utils/claude-code-identity.js.map +1 -1
- package/dist/utils/validation.d.ts.map +1 -1
- package/dist/utils/validation.js +9 -21
- package/dist/utils/validation.js.map +1 -1
- package/package.json +1 -1
|
@@ -248,6 +248,32 @@ export declare const MODELS: {
|
|
|
248
248
|
contextWindow: number;
|
|
249
249
|
maxTokens: number;
|
|
250
250
|
};
|
|
251
|
+
readonly "anthropic.claude-opus-5-5": {
|
|
252
|
+
id: string;
|
|
253
|
+
name: string;
|
|
254
|
+
api: "bedrock-converse-stream";
|
|
255
|
+
provider: string;
|
|
256
|
+
baseUrl: string;
|
|
257
|
+
reasoning: true;
|
|
258
|
+
thinkingLevelMap: {
|
|
259
|
+
off: null;
|
|
260
|
+
minimal: null;
|
|
261
|
+
low: string;
|
|
262
|
+
medium: string;
|
|
263
|
+
high: string;
|
|
264
|
+
xhigh: string;
|
|
265
|
+
max: string;
|
|
266
|
+
};
|
|
267
|
+
input: ("image" | "text")[];
|
|
268
|
+
cost: {
|
|
269
|
+
input: number;
|
|
270
|
+
output: number;
|
|
271
|
+
cacheRead: number;
|
|
272
|
+
cacheWrite: number;
|
|
273
|
+
};
|
|
274
|
+
contextWindow: number;
|
|
275
|
+
maxTokens: number;
|
|
276
|
+
};
|
|
251
277
|
readonly "anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
252
278
|
id: string;
|
|
253
279
|
name: string;
|
|
@@ -474,6 +500,32 @@ export declare const MODELS: {
|
|
|
474
500
|
contextWindow: number;
|
|
475
501
|
maxTokens: number;
|
|
476
502
|
};
|
|
503
|
+
readonly "au.anthropic.claude-opus-5-5": {
|
|
504
|
+
id: string;
|
|
505
|
+
name: string;
|
|
506
|
+
api: "bedrock-converse-stream";
|
|
507
|
+
provider: string;
|
|
508
|
+
baseUrl: string;
|
|
509
|
+
reasoning: true;
|
|
510
|
+
thinkingLevelMap: {
|
|
511
|
+
off: null;
|
|
512
|
+
minimal: null;
|
|
513
|
+
low: string;
|
|
514
|
+
medium: string;
|
|
515
|
+
high: string;
|
|
516
|
+
xhigh: string;
|
|
517
|
+
max: string;
|
|
518
|
+
};
|
|
519
|
+
input: ("image" | "text")[];
|
|
520
|
+
cost: {
|
|
521
|
+
input: number;
|
|
522
|
+
output: number;
|
|
523
|
+
cacheRead: number;
|
|
524
|
+
cacheWrite: number;
|
|
525
|
+
};
|
|
526
|
+
contextWindow: number;
|
|
527
|
+
maxTokens: number;
|
|
528
|
+
};
|
|
477
529
|
readonly "au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
478
530
|
id: string;
|
|
479
531
|
name: string;
|
|
@@ -789,6 +841,32 @@ export declare const MODELS: {
|
|
|
789
841
|
contextWindow: number;
|
|
790
842
|
maxTokens: number;
|
|
791
843
|
};
|
|
844
|
+
readonly "eu.anthropic.claude-opus-5-5": {
|
|
845
|
+
id: string;
|
|
846
|
+
name: string;
|
|
847
|
+
api: "bedrock-converse-stream";
|
|
848
|
+
provider: string;
|
|
849
|
+
baseUrl: string;
|
|
850
|
+
reasoning: true;
|
|
851
|
+
thinkingLevelMap: {
|
|
852
|
+
off: null;
|
|
853
|
+
minimal: null;
|
|
854
|
+
low: string;
|
|
855
|
+
medium: string;
|
|
856
|
+
high: string;
|
|
857
|
+
xhigh: string;
|
|
858
|
+
max: string;
|
|
859
|
+
};
|
|
860
|
+
input: ("image" | "text")[];
|
|
861
|
+
cost: {
|
|
862
|
+
input: number;
|
|
863
|
+
output: number;
|
|
864
|
+
cacheRead: number;
|
|
865
|
+
cacheWrite: number;
|
|
866
|
+
};
|
|
867
|
+
contextWindow: number;
|
|
868
|
+
maxTokens: number;
|
|
869
|
+
};
|
|
792
870
|
readonly "eu.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
793
871
|
id: string;
|
|
794
872
|
name: string;
|
|
@@ -1057,6 +1135,32 @@ export declare const MODELS: {
|
|
|
1057
1135
|
contextWindow: number;
|
|
1058
1136
|
maxTokens: number;
|
|
1059
1137
|
};
|
|
1138
|
+
readonly "global.anthropic.claude-opus-5-5": {
|
|
1139
|
+
id: string;
|
|
1140
|
+
name: string;
|
|
1141
|
+
api: "bedrock-converse-stream";
|
|
1142
|
+
provider: string;
|
|
1143
|
+
baseUrl: string;
|
|
1144
|
+
reasoning: true;
|
|
1145
|
+
thinkingLevelMap: {
|
|
1146
|
+
off: null;
|
|
1147
|
+
minimal: null;
|
|
1148
|
+
low: string;
|
|
1149
|
+
medium: string;
|
|
1150
|
+
high: string;
|
|
1151
|
+
xhigh: string;
|
|
1152
|
+
max: string;
|
|
1153
|
+
};
|
|
1154
|
+
input: ("image" | "text")[];
|
|
1155
|
+
cost: {
|
|
1156
|
+
input: number;
|
|
1157
|
+
output: number;
|
|
1158
|
+
cacheRead: number;
|
|
1159
|
+
cacheWrite: number;
|
|
1160
|
+
};
|
|
1161
|
+
contextWindow: number;
|
|
1162
|
+
maxTokens: number;
|
|
1163
|
+
};
|
|
1060
1164
|
readonly "global.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
1061
1165
|
id: string;
|
|
1062
1166
|
name: string;
|
|
@@ -1422,6 +1526,32 @@ export declare const MODELS: {
|
|
|
1422
1526
|
contextWindow: number;
|
|
1423
1527
|
maxTokens: number;
|
|
1424
1528
|
};
|
|
1529
|
+
readonly "jp.anthropic.claude-opus-5-5": {
|
|
1530
|
+
id: string;
|
|
1531
|
+
name: string;
|
|
1532
|
+
api: "bedrock-converse-stream";
|
|
1533
|
+
provider: string;
|
|
1534
|
+
baseUrl: string;
|
|
1535
|
+
reasoning: true;
|
|
1536
|
+
thinkingLevelMap: {
|
|
1537
|
+
off: null;
|
|
1538
|
+
minimal: null;
|
|
1539
|
+
low: string;
|
|
1540
|
+
medium: string;
|
|
1541
|
+
high: string;
|
|
1542
|
+
xhigh: string;
|
|
1543
|
+
max: string;
|
|
1544
|
+
};
|
|
1545
|
+
input: ("image" | "text")[];
|
|
1546
|
+
cost: {
|
|
1547
|
+
input: number;
|
|
1548
|
+
output: number;
|
|
1549
|
+
cacheRead: number;
|
|
1550
|
+
cacheWrite: number;
|
|
1551
|
+
};
|
|
1552
|
+
contextWindow: number;
|
|
1553
|
+
maxTokens: number;
|
|
1554
|
+
};
|
|
1425
1555
|
readonly "jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
1426
1556
|
id: string;
|
|
1427
1557
|
name: string;
|
|
@@ -2511,6 +2641,32 @@ export declare const MODELS: {
|
|
|
2511
2641
|
contextWindow: number;
|
|
2512
2642
|
maxTokens: number;
|
|
2513
2643
|
};
|
|
2644
|
+
readonly "us.anthropic.claude-opus-5-5": {
|
|
2645
|
+
id: string;
|
|
2646
|
+
name: string;
|
|
2647
|
+
api: "bedrock-converse-stream";
|
|
2648
|
+
provider: string;
|
|
2649
|
+
baseUrl: string;
|
|
2650
|
+
reasoning: true;
|
|
2651
|
+
thinkingLevelMap: {
|
|
2652
|
+
off: null;
|
|
2653
|
+
minimal: null;
|
|
2654
|
+
low: string;
|
|
2655
|
+
medium: string;
|
|
2656
|
+
high: string;
|
|
2657
|
+
xhigh: string;
|
|
2658
|
+
max: string;
|
|
2659
|
+
};
|
|
2660
|
+
input: ("image" | "text")[];
|
|
2661
|
+
cost: {
|
|
2662
|
+
input: number;
|
|
2663
|
+
output: number;
|
|
2664
|
+
cacheRead: number;
|
|
2665
|
+
cacheWrite: number;
|
|
2666
|
+
};
|
|
2667
|
+
contextWindow: number;
|
|
2668
|
+
maxTokens: number;
|
|
2669
|
+
};
|
|
2514
2670
|
readonly "us.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
2515
2671
|
id: string;
|
|
2516
2672
|
name: string;
|
|
@@ -3244,6 +3400,35 @@ export declare const MODELS: {
|
|
|
3244
3400
|
contextWindow: number;
|
|
3245
3401
|
maxTokens: number;
|
|
3246
3402
|
};
|
|
3403
|
+
readonly "claude-opus-5-5": {
|
|
3404
|
+
id: string;
|
|
3405
|
+
name: string;
|
|
3406
|
+
api: "anthropic-messages";
|
|
3407
|
+
provider: string;
|
|
3408
|
+
baseUrl: string;
|
|
3409
|
+
compat: {
|
|
3410
|
+
forceAdaptiveThinking: true;
|
|
3411
|
+
};
|
|
3412
|
+
reasoning: true;
|
|
3413
|
+
thinkingLevelMap: {
|
|
3414
|
+
off: null;
|
|
3415
|
+
minimal: null;
|
|
3416
|
+
low: string;
|
|
3417
|
+
medium: string;
|
|
3418
|
+
high: string;
|
|
3419
|
+
xhigh: string;
|
|
3420
|
+
max: string;
|
|
3421
|
+
};
|
|
3422
|
+
input: ("image" | "text")[];
|
|
3423
|
+
cost: {
|
|
3424
|
+
input: number;
|
|
3425
|
+
output: number;
|
|
3426
|
+
cacheRead: number;
|
|
3427
|
+
cacheWrite: number;
|
|
3428
|
+
};
|
|
3429
|
+
contextWindow: number;
|
|
3430
|
+
maxTokens: number;
|
|
3431
|
+
};
|
|
3247
3432
|
readonly "claude-sonnet-4-5": {
|
|
3248
3433
|
id: string;
|
|
3249
3434
|
name: string;
|
|
@@ -4023,6 +4208,58 @@ export declare const MODELS: {
|
|
|
4023
4208
|
contextWindow: number;
|
|
4024
4209
|
maxTokens: number;
|
|
4025
4210
|
};
|
|
4211
|
+
readonly "gpt-6-luna": {
|
|
4212
|
+
id: string;
|
|
4213
|
+
name: string;
|
|
4214
|
+
api: "azure-openai-responses";
|
|
4215
|
+
provider: string;
|
|
4216
|
+
baseUrl: string;
|
|
4217
|
+
reasoning: true;
|
|
4218
|
+
thinkingLevelMap: {
|
|
4219
|
+
off: string;
|
|
4220
|
+
minimal: null;
|
|
4221
|
+
low: string;
|
|
4222
|
+
medium: string;
|
|
4223
|
+
high: string;
|
|
4224
|
+
xhigh: string;
|
|
4225
|
+
max: string;
|
|
4226
|
+
};
|
|
4227
|
+
input: ("image" | "text")[];
|
|
4228
|
+
cost: {
|
|
4229
|
+
input: number;
|
|
4230
|
+
output: number;
|
|
4231
|
+
cacheRead: number;
|
|
4232
|
+
cacheWrite: number;
|
|
4233
|
+
};
|
|
4234
|
+
contextWindow: number;
|
|
4235
|
+
maxTokens: number;
|
|
4236
|
+
};
|
|
4237
|
+
readonly "gpt-6-sol": {
|
|
4238
|
+
id: string;
|
|
4239
|
+
name: string;
|
|
4240
|
+
api: "azure-openai-responses";
|
|
4241
|
+
provider: string;
|
|
4242
|
+
baseUrl: string;
|
|
4243
|
+
reasoning: true;
|
|
4244
|
+
thinkingLevelMap: {
|
|
4245
|
+
off: string;
|
|
4246
|
+
minimal: null;
|
|
4247
|
+
low: string;
|
|
4248
|
+
medium: string;
|
|
4249
|
+
high: string;
|
|
4250
|
+
xhigh: string;
|
|
4251
|
+
max: string;
|
|
4252
|
+
};
|
|
4253
|
+
input: ("image" | "text")[];
|
|
4254
|
+
cost: {
|
|
4255
|
+
input: number;
|
|
4256
|
+
output: number;
|
|
4257
|
+
cacheRead: number;
|
|
4258
|
+
cacheWrite: number;
|
|
4259
|
+
};
|
|
4260
|
+
contextWindow: number;
|
|
4261
|
+
maxTokens: number;
|
|
4262
|
+
};
|
|
4026
4263
|
readonly "gpt-realtime-2.1": {
|
|
4027
4264
|
id: string;
|
|
4028
4265
|
name: string;
|
|
@@ -17625,6 +17862,37 @@ export declare const MODELS: {
|
|
|
17625
17862
|
contextWindow: number;
|
|
17626
17863
|
maxTokens: number;
|
|
17627
17864
|
};
|
|
17865
|
+
readonly "grok-4.7": {
|
|
17866
|
+
id: string;
|
|
17867
|
+
name: string;
|
|
17868
|
+
api: "openai-completions";
|
|
17869
|
+
provider: string;
|
|
17870
|
+
baseUrl: string;
|
|
17871
|
+
headers: {
|
|
17872
|
+
"User-Agent": string;
|
|
17873
|
+
"Editor-Version": string;
|
|
17874
|
+
"Editor-Plugin-Version": string;
|
|
17875
|
+
"Copilot-Integration-Id": string;
|
|
17876
|
+
};
|
|
17877
|
+
compat: {
|
|
17878
|
+
supportsStore: false;
|
|
17879
|
+
supportsDeveloperRole: false;
|
|
17880
|
+
supportsReasoningEffort: false;
|
|
17881
|
+
};
|
|
17882
|
+
reasoning: true;
|
|
17883
|
+
thinkingLevelMap: {
|
|
17884
|
+
xhigh: string;
|
|
17885
|
+
};
|
|
17886
|
+
input: ("image" | "text")[];
|
|
17887
|
+
cost: {
|
|
17888
|
+
input: number;
|
|
17889
|
+
output: number;
|
|
17890
|
+
cacheRead: number;
|
|
17891
|
+
cacheWrite: number;
|
|
17892
|
+
};
|
|
17893
|
+
contextWindow: number;
|
|
17894
|
+
maxTokens: number;
|
|
17895
|
+
};
|
|
17628
17896
|
readonly "kimi-k2.7-code": {
|
|
17629
17897
|
id: string;
|
|
17630
17898
|
name: string;
|
|
@@ -20023,6 +20291,26 @@ export declare const MODELS: {
|
|
|
20023
20291
|
contextWindow: number;
|
|
20024
20292
|
maxTokens: number;
|
|
20025
20293
|
};
|
|
20294
|
+
readonly "tencent/Hy4-preview": {
|
|
20295
|
+
id: string;
|
|
20296
|
+
name: string;
|
|
20297
|
+
api: "openai-completions";
|
|
20298
|
+
provider: string;
|
|
20299
|
+
baseUrl: string;
|
|
20300
|
+
compat: {
|
|
20301
|
+
supportsDeveloperRole: false;
|
|
20302
|
+
};
|
|
20303
|
+
reasoning: true;
|
|
20304
|
+
input: "text"[];
|
|
20305
|
+
cost: {
|
|
20306
|
+
input: number;
|
|
20307
|
+
output: number;
|
|
20308
|
+
cacheRead: number;
|
|
20309
|
+
cacheWrite: number;
|
|
20310
|
+
};
|
|
20311
|
+
contextWindow: number;
|
|
20312
|
+
maxTokens: number;
|
|
20313
|
+
};
|
|
20026
20314
|
readonly "thinkingmachines/Inkling": {
|
|
20027
20315
|
id: string;
|
|
20028
20316
|
name: string;
|
|
@@ -21481,43 +21769,6 @@ export declare const MODELS: {
|
|
|
21481
21769
|
};
|
|
21482
21770
|
};
|
|
21483
21771
|
readonly nvidia: {
|
|
21484
|
-
readonly "deepseek-ai/deepseek-v4-flash-0731": {
|
|
21485
|
-
id: string;
|
|
21486
|
-
name: string;
|
|
21487
|
-
api: "openai-completions";
|
|
21488
|
-
provider: string;
|
|
21489
|
-
baseUrl: string;
|
|
21490
|
-
headers: {
|
|
21491
|
-
"NVCF-POLL-SECONDS": string;
|
|
21492
|
-
};
|
|
21493
|
-
compat: {
|
|
21494
|
-
supportsStore: false;
|
|
21495
|
-
supportsDeveloperRole: false;
|
|
21496
|
-
supportsReasoningEffort: false;
|
|
21497
|
-
maxTokensField: "max_tokens";
|
|
21498
|
-
supportsStrictMode: false;
|
|
21499
|
-
supportsLongCacheRetention: false;
|
|
21500
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
21501
|
-
thinkingFormat: "deepseek";
|
|
21502
|
-
};
|
|
21503
|
-
reasoning: true;
|
|
21504
|
-
thinkingLevelMap: {
|
|
21505
|
-
minimal: null;
|
|
21506
|
-
low: null;
|
|
21507
|
-
medium: null;
|
|
21508
|
-
high: string;
|
|
21509
|
-
xhigh: string;
|
|
21510
|
-
};
|
|
21511
|
-
input: "text"[];
|
|
21512
|
-
cost: {
|
|
21513
|
-
input: number;
|
|
21514
|
-
output: number;
|
|
21515
|
-
cacheRead: number;
|
|
21516
|
-
cacheWrite: number;
|
|
21517
|
-
};
|
|
21518
|
-
contextWindow: number;
|
|
21519
|
-
maxTokens: number;
|
|
21520
|
-
};
|
|
21521
21772
|
readonly "google/gemma-3-12b-it": {
|
|
21522
21773
|
id: string;
|
|
21523
21774
|
name: string;
|
|
@@ -22774,6 +23025,58 @@ export declare const MODELS: {
|
|
|
22774
23025
|
contextWindow: number;
|
|
22775
23026
|
maxTokens: number;
|
|
22776
23027
|
};
|
|
23028
|
+
readonly "gpt-6-luna": {
|
|
23029
|
+
id: string;
|
|
23030
|
+
name: string;
|
|
23031
|
+
api: "openai-responses";
|
|
23032
|
+
provider: string;
|
|
23033
|
+
baseUrl: string;
|
|
23034
|
+
reasoning: true;
|
|
23035
|
+
thinkingLevelMap: {
|
|
23036
|
+
off: string;
|
|
23037
|
+
minimal: null;
|
|
23038
|
+
low: string;
|
|
23039
|
+
medium: string;
|
|
23040
|
+
high: string;
|
|
23041
|
+
xhigh: string;
|
|
23042
|
+
max: string;
|
|
23043
|
+
};
|
|
23044
|
+
input: ("image" | "text")[];
|
|
23045
|
+
cost: {
|
|
23046
|
+
input: number;
|
|
23047
|
+
output: number;
|
|
23048
|
+
cacheRead: number;
|
|
23049
|
+
cacheWrite: number;
|
|
23050
|
+
};
|
|
23051
|
+
contextWindow: number;
|
|
23052
|
+
maxTokens: number;
|
|
23053
|
+
};
|
|
23054
|
+
readonly "gpt-6-sol": {
|
|
23055
|
+
id: string;
|
|
23056
|
+
name: string;
|
|
23057
|
+
api: "openai-responses";
|
|
23058
|
+
provider: string;
|
|
23059
|
+
baseUrl: string;
|
|
23060
|
+
reasoning: true;
|
|
23061
|
+
thinkingLevelMap: {
|
|
23062
|
+
off: string;
|
|
23063
|
+
minimal: null;
|
|
23064
|
+
low: string;
|
|
23065
|
+
medium: string;
|
|
23066
|
+
high: string;
|
|
23067
|
+
xhigh: string;
|
|
23068
|
+
max: string;
|
|
23069
|
+
};
|
|
23070
|
+
input: ("image" | "text")[];
|
|
23071
|
+
cost: {
|
|
23072
|
+
input: number;
|
|
23073
|
+
output: number;
|
|
23074
|
+
cacheRead: number;
|
|
23075
|
+
cacheWrite: number;
|
|
23076
|
+
};
|
|
23077
|
+
contextWindow: number;
|
|
23078
|
+
maxTokens: number;
|
|
23079
|
+
};
|
|
22777
23080
|
readonly "gpt-realtime-2.1": {
|
|
22778
23081
|
id: string;
|
|
22779
23082
|
name: string;
|
|
@@ -23274,6 +23577,35 @@ export declare const MODELS: {
|
|
|
23274
23577
|
contextWindow: number;
|
|
23275
23578
|
maxTokens: number;
|
|
23276
23579
|
};
|
|
23580
|
+
readonly "claude-opus-5-5": {
|
|
23581
|
+
id: string;
|
|
23582
|
+
name: string;
|
|
23583
|
+
api: "anthropic-messages";
|
|
23584
|
+
provider: string;
|
|
23585
|
+
baseUrl: string;
|
|
23586
|
+
compat: {
|
|
23587
|
+
forceAdaptiveThinking: true;
|
|
23588
|
+
};
|
|
23589
|
+
reasoning: true;
|
|
23590
|
+
thinkingLevelMap: {
|
|
23591
|
+
off: null;
|
|
23592
|
+
minimal: null;
|
|
23593
|
+
low: string;
|
|
23594
|
+
medium: string;
|
|
23595
|
+
high: string;
|
|
23596
|
+
xhigh: string;
|
|
23597
|
+
max: string;
|
|
23598
|
+
};
|
|
23599
|
+
input: ("image" | "text")[];
|
|
23600
|
+
cost: {
|
|
23601
|
+
input: number;
|
|
23602
|
+
output: number;
|
|
23603
|
+
cacheRead: number;
|
|
23604
|
+
cacheWrite: number;
|
|
23605
|
+
};
|
|
23606
|
+
contextWindow: number;
|
|
23607
|
+
maxTokens: number;
|
|
23608
|
+
};
|
|
23277
23609
|
readonly "claude-sonnet-4": {
|
|
23278
23610
|
id: string;
|
|
23279
23611
|
name: string;
|
|
@@ -23436,6 +23768,37 @@ export declare const MODELS: {
|
|
|
23436
23768
|
contextWindow: number;
|
|
23437
23769
|
maxTokens: number;
|
|
23438
23770
|
};
|
|
23771
|
+
readonly "deepseek-v4.1-flash": {
|
|
23772
|
+
id: string;
|
|
23773
|
+
name: string;
|
|
23774
|
+
api: "openai-completions";
|
|
23775
|
+
provider: string;
|
|
23776
|
+
baseUrl: string;
|
|
23777
|
+
compat: {
|
|
23778
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
23779
|
+
thinkingFormat: "deepseek";
|
|
23780
|
+
supportsReasoningEffort: true;
|
|
23781
|
+
maxTokensField: "max_tokens";
|
|
23782
|
+
};
|
|
23783
|
+
reasoning: true;
|
|
23784
|
+
thinkingLevelMap: {
|
|
23785
|
+
minimal: null;
|
|
23786
|
+
low: string;
|
|
23787
|
+
medium: null;
|
|
23788
|
+
high: string;
|
|
23789
|
+
xhigh: null;
|
|
23790
|
+
max: string;
|
|
23791
|
+
};
|
|
23792
|
+
input: ("image" | "text")[];
|
|
23793
|
+
cost: {
|
|
23794
|
+
input: number;
|
|
23795
|
+
output: number;
|
|
23796
|
+
cacheRead: number;
|
|
23797
|
+
cacheWrite: number;
|
|
23798
|
+
};
|
|
23799
|
+
contextWindow: number;
|
|
23800
|
+
maxTokens: number;
|
|
23801
|
+
};
|
|
23439
23802
|
readonly "gemini-3-flash": {
|
|
23440
23803
|
id: string;
|
|
23441
23804
|
name: string;
|
|
@@ -24124,6 +24487,58 @@ export declare const MODELS: {
|
|
|
24124
24487
|
contextWindow: number;
|
|
24125
24488
|
maxTokens: number;
|
|
24126
24489
|
};
|
|
24490
|
+
readonly "gpt-6-luna": {
|
|
24491
|
+
id: string;
|
|
24492
|
+
name: string;
|
|
24493
|
+
api: "openai-responses";
|
|
24494
|
+
provider: string;
|
|
24495
|
+
baseUrl: string;
|
|
24496
|
+
reasoning: true;
|
|
24497
|
+
thinkingLevelMap: {
|
|
24498
|
+
off: string;
|
|
24499
|
+
minimal: null;
|
|
24500
|
+
low: string;
|
|
24501
|
+
medium: string;
|
|
24502
|
+
high: string;
|
|
24503
|
+
xhigh: string;
|
|
24504
|
+
max: string;
|
|
24505
|
+
};
|
|
24506
|
+
input: ("image" | "text")[];
|
|
24507
|
+
cost: {
|
|
24508
|
+
input: number;
|
|
24509
|
+
output: number;
|
|
24510
|
+
cacheRead: number;
|
|
24511
|
+
cacheWrite: number;
|
|
24512
|
+
};
|
|
24513
|
+
contextWindow: number;
|
|
24514
|
+
maxTokens: number;
|
|
24515
|
+
};
|
|
24516
|
+
readonly "gpt-6-sol": {
|
|
24517
|
+
id: string;
|
|
24518
|
+
name: string;
|
|
24519
|
+
api: "openai-responses";
|
|
24520
|
+
provider: string;
|
|
24521
|
+
baseUrl: string;
|
|
24522
|
+
reasoning: true;
|
|
24523
|
+
thinkingLevelMap: {
|
|
24524
|
+
off: string;
|
|
24525
|
+
minimal: null;
|
|
24526
|
+
low: string;
|
|
24527
|
+
medium: string;
|
|
24528
|
+
high: string;
|
|
24529
|
+
xhigh: string;
|
|
24530
|
+
max: string;
|
|
24531
|
+
};
|
|
24532
|
+
input: ("image" | "text")[];
|
|
24533
|
+
cost: {
|
|
24534
|
+
input: number;
|
|
24535
|
+
output: number;
|
|
24536
|
+
cacheRead: number;
|
|
24537
|
+
cacheWrite: number;
|
|
24538
|
+
};
|
|
24539
|
+
contextWindow: number;
|
|
24540
|
+
maxTokens: number;
|
|
24541
|
+
};
|
|
24127
24542
|
readonly "grok-4.5": {
|
|
24128
24543
|
id: string;
|
|
24129
24544
|
name: string;
|
|
@@ -24273,7 +24688,7 @@ export declare const MODELS: {
|
|
|
24273
24688
|
contextWindow: number;
|
|
24274
24689
|
maxTokens: number;
|
|
24275
24690
|
};
|
|
24276
|
-
readonly "mimo-v2.
|
|
24691
|
+
readonly "mimo-v2.6-flash-free": {
|
|
24277
24692
|
id: string;
|
|
24278
24693
|
name: string;
|
|
24279
24694
|
api: "openai-completions";
|
|
@@ -24521,53 +24936,16 @@ export declare const MODELS: {
|
|
|
24521
24936
|
contextWindow: number;
|
|
24522
24937
|
maxTokens: number;
|
|
24523
24938
|
};
|
|
24524
|
-
|
|
24525
|
-
readonly "opencode-go": {
|
|
24526
|
-
readonly "deepseek-v4-flash": {
|
|
24527
|
-
id: string;
|
|
24528
|
-
name: string;
|
|
24529
|
-
api: "openai-completions";
|
|
24530
|
-
provider: string;
|
|
24531
|
-
baseUrl: string;
|
|
24532
|
-
compat: {
|
|
24533
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
24534
|
-
thinkingFormat: "deepseek";
|
|
24535
|
-
};
|
|
24536
|
-
reasoning: true;
|
|
24537
|
-
thinkingLevelMap: {
|
|
24538
|
-
minimal: null;
|
|
24539
|
-
low: null;
|
|
24540
|
-
medium: null;
|
|
24541
|
-
high: string;
|
|
24542
|
-
xhigh: string;
|
|
24543
|
-
};
|
|
24544
|
-
input: "text"[];
|
|
24545
|
-
cost: {
|
|
24546
|
-
input: number;
|
|
24547
|
-
output: number;
|
|
24548
|
-
cacheRead: number;
|
|
24549
|
-
cacheWrite: number;
|
|
24550
|
-
};
|
|
24551
|
-
contextWindow: number;
|
|
24552
|
-
maxTokens: number;
|
|
24553
|
-
};
|
|
24554
|
-
readonly "deepseek-v4-flash-vision-exp": {
|
|
24939
|
+
readonly "qwen3.8-flash": {
|
|
24555
24940
|
id: string;
|
|
24556
24941
|
name: string;
|
|
24557
|
-
api: "
|
|
24942
|
+
api: "anthropic-messages";
|
|
24558
24943
|
provider: string;
|
|
24559
24944
|
baseUrl: string;
|
|
24560
|
-
compat: {
|
|
24561
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
24562
|
-
thinkingFormat: "deepseek";
|
|
24563
|
-
};
|
|
24564
24945
|
reasoning: true;
|
|
24565
24946
|
thinkingLevelMap: {
|
|
24566
|
-
minimal: null;
|
|
24567
|
-
low: null;
|
|
24568
|
-
medium: null;
|
|
24569
|
-
high: string;
|
|
24570
24947
|
xhigh: string;
|
|
24948
|
+
max: string;
|
|
24571
24949
|
};
|
|
24572
24950
|
input: ("image" | "text")[];
|
|
24573
24951
|
cost: {
|
|
@@ -24579,7 +24957,65 @@ export declare const MODELS: {
|
|
|
24579
24957
|
contextWindow: number;
|
|
24580
24958
|
maxTokens: number;
|
|
24581
24959
|
};
|
|
24582
|
-
|
|
24960
|
+
};
|
|
24961
|
+
readonly "opencode-go": {
|
|
24962
|
+
readonly "deepseek-v4-flash": {
|
|
24963
|
+
id: string;
|
|
24964
|
+
name: string;
|
|
24965
|
+
api: "openai-completions";
|
|
24966
|
+
provider: string;
|
|
24967
|
+
baseUrl: string;
|
|
24968
|
+
compat: {
|
|
24969
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
24970
|
+
thinkingFormat: "deepseek";
|
|
24971
|
+
};
|
|
24972
|
+
reasoning: true;
|
|
24973
|
+
thinkingLevelMap: {
|
|
24974
|
+
minimal: null;
|
|
24975
|
+
low: null;
|
|
24976
|
+
medium: null;
|
|
24977
|
+
high: string;
|
|
24978
|
+
xhigh: string;
|
|
24979
|
+
};
|
|
24980
|
+
input: "text"[];
|
|
24981
|
+
cost: {
|
|
24982
|
+
input: number;
|
|
24983
|
+
output: number;
|
|
24984
|
+
cacheRead: number;
|
|
24985
|
+
cacheWrite: number;
|
|
24986
|
+
};
|
|
24987
|
+
contextWindow: number;
|
|
24988
|
+
maxTokens: number;
|
|
24989
|
+
};
|
|
24990
|
+
readonly "deepseek-v4-flash-vision-exp": {
|
|
24991
|
+
id: string;
|
|
24992
|
+
name: string;
|
|
24993
|
+
api: "openai-completions";
|
|
24994
|
+
provider: string;
|
|
24995
|
+
baseUrl: string;
|
|
24996
|
+
compat: {
|
|
24997
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
24998
|
+
thinkingFormat: "deepseek";
|
|
24999
|
+
};
|
|
25000
|
+
reasoning: true;
|
|
25001
|
+
thinkingLevelMap: {
|
|
25002
|
+
minimal: null;
|
|
25003
|
+
low: null;
|
|
25004
|
+
medium: null;
|
|
25005
|
+
high: string;
|
|
25006
|
+
xhigh: string;
|
|
25007
|
+
};
|
|
25008
|
+
input: ("image" | "text")[];
|
|
25009
|
+
cost: {
|
|
25010
|
+
input: number;
|
|
25011
|
+
output: number;
|
|
25012
|
+
cacheRead: number;
|
|
25013
|
+
cacheWrite: number;
|
|
25014
|
+
};
|
|
25015
|
+
contextWindow: number;
|
|
25016
|
+
maxTokens: number;
|
|
25017
|
+
};
|
|
25018
|
+
readonly "deepseek-v4-pro": {
|
|
24583
25019
|
id: string;
|
|
24584
25020
|
name: string;
|
|
24585
25021
|
api: "openai-completions";
|
|
@@ -24775,6 +25211,26 @@ export declare const MODELS: {
|
|
|
24775
25211
|
contextWindow: number;
|
|
24776
25212
|
maxTokens: number;
|
|
24777
25213
|
};
|
|
25214
|
+
readonly "grok-4.7": {
|
|
25215
|
+
id: string;
|
|
25216
|
+
name: string;
|
|
25217
|
+
api: "openai-responses";
|
|
25218
|
+
provider: string;
|
|
25219
|
+
baseUrl: string;
|
|
25220
|
+
reasoning: true;
|
|
25221
|
+
thinkingLevelMap: {
|
|
25222
|
+
xhigh: string;
|
|
25223
|
+
};
|
|
25224
|
+
input: ("image" | "text")[];
|
|
25225
|
+
cost: {
|
|
25226
|
+
input: number;
|
|
25227
|
+
output: number;
|
|
25228
|
+
cacheRead: number;
|
|
25229
|
+
cacheWrite: number;
|
|
25230
|
+
};
|
|
25231
|
+
contextWindow: number;
|
|
25232
|
+
maxTokens: number;
|
|
25233
|
+
};
|
|
24778
25234
|
readonly hy3: {
|
|
24779
25235
|
id: string;
|
|
24780
25236
|
name: string;
|
|
@@ -24920,6 +25376,40 @@ export declare const MODELS: {
|
|
|
24920
25376
|
contextWindow: number;
|
|
24921
25377
|
maxTokens: number;
|
|
24922
25378
|
};
|
|
25379
|
+
readonly "mimo-v2.6-flash": {
|
|
25380
|
+
id: string;
|
|
25381
|
+
name: string;
|
|
25382
|
+
api: "openai-completions";
|
|
25383
|
+
provider: string;
|
|
25384
|
+
baseUrl: string;
|
|
25385
|
+
reasoning: true;
|
|
25386
|
+
input: ("image" | "text")[];
|
|
25387
|
+
cost: {
|
|
25388
|
+
input: number;
|
|
25389
|
+
output: number;
|
|
25390
|
+
cacheRead: number;
|
|
25391
|
+
cacheWrite: number;
|
|
25392
|
+
};
|
|
25393
|
+
contextWindow: number;
|
|
25394
|
+
maxTokens: number;
|
|
25395
|
+
};
|
|
25396
|
+
readonly "mimo-v2.6-pro": {
|
|
25397
|
+
id: string;
|
|
25398
|
+
name: string;
|
|
25399
|
+
api: "openai-completions";
|
|
25400
|
+
provider: string;
|
|
25401
|
+
baseUrl: string;
|
|
25402
|
+
reasoning: true;
|
|
25403
|
+
input: ("image" | "text")[];
|
|
25404
|
+
cost: {
|
|
25405
|
+
input: number;
|
|
25406
|
+
output: number;
|
|
25407
|
+
cacheRead: number;
|
|
25408
|
+
cacheWrite: number;
|
|
25409
|
+
};
|
|
25410
|
+
contextWindow: number;
|
|
25411
|
+
maxTokens: number;
|
|
25412
|
+
};
|
|
24923
25413
|
readonly "minimax-m2.7": {
|
|
24924
25414
|
id: string;
|
|
24925
25415
|
name: string;
|
|
@@ -25420,7 +25910,7 @@ export declare const MODELS: {
|
|
|
25420
25910
|
contextWindow: number;
|
|
25421
25911
|
maxTokens: number;
|
|
25422
25912
|
};
|
|
25423
|
-
readonly "anthropic/claude-opus-4": {
|
|
25913
|
+
readonly "anthropic/claude-opus-4.1": {
|
|
25424
25914
|
id: string;
|
|
25425
25915
|
name: string;
|
|
25426
25916
|
api: "openai-completions";
|
|
@@ -25437,7 +25927,7 @@ export declare const MODELS: {
|
|
|
25437
25927
|
contextWindow: number;
|
|
25438
25928
|
maxTokens: number;
|
|
25439
25929
|
};
|
|
25440
|
-
readonly "anthropic/claude-opus-4.1": {
|
|
25930
|
+
readonly "anthropic/claude-opus-4.1:batch": {
|
|
25441
25931
|
id: string;
|
|
25442
25932
|
name: string;
|
|
25443
25933
|
api: "openai-completions";
|
|
@@ -25454,7 +25944,7 @@ export declare const MODELS: {
|
|
|
25454
25944
|
contextWindow: number;
|
|
25455
25945
|
maxTokens: number;
|
|
25456
25946
|
};
|
|
25457
|
-
readonly "anthropic/claude-opus-4.
|
|
25947
|
+
readonly "anthropic/claude-opus-4.5": {
|
|
25458
25948
|
id: string;
|
|
25459
25949
|
name: string;
|
|
25460
25950
|
api: "openai-completions";
|
|
@@ -25471,7 +25961,7 @@ export declare const MODELS: {
|
|
|
25471
25961
|
contextWindow: number;
|
|
25472
25962
|
maxTokens: number;
|
|
25473
25963
|
};
|
|
25474
|
-
readonly "anthropic/claude-opus-4.5": {
|
|
25964
|
+
readonly "anthropic/claude-opus-4.5:batch": {
|
|
25475
25965
|
id: string;
|
|
25476
25966
|
name: string;
|
|
25477
25967
|
api: "openai-completions";
|
|
@@ -25488,13 +25978,23 @@ export declare const MODELS: {
|
|
|
25488
25978
|
contextWindow: number;
|
|
25489
25979
|
maxTokens: number;
|
|
25490
25980
|
};
|
|
25491
|
-
readonly "anthropic/claude-opus-4.
|
|
25981
|
+
readonly "anthropic/claude-opus-4.6": {
|
|
25492
25982
|
id: string;
|
|
25493
25983
|
name: string;
|
|
25494
25984
|
api: "openai-completions";
|
|
25495
25985
|
provider: string;
|
|
25496
25986
|
baseUrl: string;
|
|
25497
25987
|
reasoning: true;
|
|
25988
|
+
thinkingLevelMap: {
|
|
25989
|
+
xhigh: null;
|
|
25990
|
+
off: string;
|
|
25991
|
+
minimal: null;
|
|
25992
|
+
low: string;
|
|
25993
|
+
medium: string;
|
|
25994
|
+
high: string;
|
|
25995
|
+
max: string;
|
|
25996
|
+
ultra: null;
|
|
25997
|
+
};
|
|
25498
25998
|
input: ("image" | "text")[];
|
|
25499
25999
|
cost: {
|
|
25500
26000
|
input: number;
|
|
@@ -25505,7 +26005,7 @@ export declare const MODELS: {
|
|
|
25505
26005
|
contextWindow: number;
|
|
25506
26006
|
maxTokens: number;
|
|
25507
26007
|
};
|
|
25508
|
-
readonly "anthropic/claude-opus-4.6": {
|
|
26008
|
+
readonly "anthropic/claude-opus-4.6:batch": {
|
|
25509
26009
|
id: string;
|
|
25510
26010
|
name: string;
|
|
25511
26011
|
api: "openai-completions";
|
|
@@ -25532,7 +26032,7 @@ export declare const MODELS: {
|
|
|
25532
26032
|
contextWindow: number;
|
|
25533
26033
|
maxTokens: number;
|
|
25534
26034
|
};
|
|
25535
|
-
readonly "anthropic/claude-opus-4.
|
|
26035
|
+
readonly "anthropic/claude-opus-4.7": {
|
|
25536
26036
|
id: string;
|
|
25537
26037
|
name: string;
|
|
25538
26038
|
api: "openai-completions";
|
|
@@ -25540,13 +26040,13 @@ export declare const MODELS: {
|
|
|
25540
26040
|
baseUrl: string;
|
|
25541
26041
|
reasoning: true;
|
|
25542
26042
|
thinkingLevelMap: {
|
|
25543
|
-
xhigh:
|
|
26043
|
+
xhigh: string;
|
|
26044
|
+
max: string;
|
|
25544
26045
|
off: string;
|
|
25545
26046
|
minimal: null;
|
|
25546
26047
|
low: string;
|
|
25547
26048
|
medium: string;
|
|
25548
26049
|
high: string;
|
|
25549
|
-
max: string;
|
|
25550
26050
|
ultra: null;
|
|
25551
26051
|
};
|
|
25552
26052
|
input: ("image" | "text")[];
|
|
@@ -25559,7 +26059,7 @@ export declare const MODELS: {
|
|
|
25559
26059
|
contextWindow: number;
|
|
25560
26060
|
maxTokens: number;
|
|
25561
26061
|
};
|
|
25562
|
-
readonly "anthropic/claude-opus-4.7": {
|
|
26062
|
+
readonly "anthropic/claude-opus-4.7:batch": {
|
|
25563
26063
|
id: string;
|
|
25564
26064
|
name: string;
|
|
25565
26065
|
api: "openai-completions";
|
|
@@ -25586,7 +26086,7 @@ export declare const MODELS: {
|
|
|
25586
26086
|
contextWindow: number;
|
|
25587
26087
|
maxTokens: number;
|
|
25588
26088
|
};
|
|
25589
|
-
readonly "anthropic/claude-opus-4.
|
|
26089
|
+
readonly "anthropic/claude-opus-4.8": {
|
|
25590
26090
|
id: string;
|
|
25591
26091
|
name: string;
|
|
25592
26092
|
api: "openai-completions";
|
|
@@ -25613,7 +26113,7 @@ export declare const MODELS: {
|
|
|
25613
26113
|
contextWindow: number;
|
|
25614
26114
|
maxTokens: number;
|
|
25615
26115
|
};
|
|
25616
|
-
readonly "anthropic/claude-opus-4.8": {
|
|
26116
|
+
readonly "anthropic/claude-opus-4.8:batch": {
|
|
25617
26117
|
id: string;
|
|
25618
26118
|
name: string;
|
|
25619
26119
|
api: "openai-completions";
|
|
@@ -25640,7 +26140,7 @@ export declare const MODELS: {
|
|
|
25640
26140
|
contextWindow: number;
|
|
25641
26141
|
maxTokens: number;
|
|
25642
26142
|
};
|
|
25643
|
-
readonly "anthropic/claude-opus-
|
|
26143
|
+
readonly "anthropic/claude-opus-5": {
|
|
25644
26144
|
id: string;
|
|
25645
26145
|
name: string;
|
|
25646
26146
|
api: "openai-completions";
|
|
@@ -25648,13 +26148,40 @@ export declare const MODELS: {
|
|
|
25648
26148
|
baseUrl: string;
|
|
25649
26149
|
reasoning: true;
|
|
25650
26150
|
thinkingLevelMap: {
|
|
26151
|
+
off: string;
|
|
26152
|
+
minimal: null;
|
|
26153
|
+
low: string;
|
|
26154
|
+
medium: string;
|
|
26155
|
+
high: string;
|
|
25651
26156
|
xhigh: string;
|
|
25652
26157
|
max: string;
|
|
25653
|
-
|
|
26158
|
+
ultra: null;
|
|
26159
|
+
};
|
|
26160
|
+
input: ("image" | "text")[];
|
|
26161
|
+
cost: {
|
|
26162
|
+
input: number;
|
|
26163
|
+
output: number;
|
|
26164
|
+
cacheRead: number;
|
|
26165
|
+
cacheWrite: number;
|
|
26166
|
+
};
|
|
26167
|
+
contextWindow: number;
|
|
26168
|
+
maxTokens: number;
|
|
26169
|
+
};
|
|
26170
|
+
readonly "anthropic/claude-opus-5.5": {
|
|
26171
|
+
id: string;
|
|
26172
|
+
name: string;
|
|
26173
|
+
api: "openai-completions";
|
|
26174
|
+
provider: string;
|
|
26175
|
+
baseUrl: string;
|
|
26176
|
+
reasoning: true;
|
|
26177
|
+
thinkingLevelMap: {
|
|
26178
|
+
off: null;
|
|
25654
26179
|
minimal: null;
|
|
25655
26180
|
low: string;
|
|
25656
26181
|
medium: string;
|
|
25657
26182
|
high: string;
|
|
26183
|
+
xhigh: string;
|
|
26184
|
+
max: string;
|
|
25658
26185
|
ultra: null;
|
|
25659
26186
|
};
|
|
25660
26187
|
input: ("image" | "text")[];
|
|
@@ -25667,7 +26194,7 @@ export declare const MODELS: {
|
|
|
25667
26194
|
contextWindow: number;
|
|
25668
26195
|
maxTokens: number;
|
|
25669
26196
|
};
|
|
25670
|
-
readonly "anthropic/claude-opus-5": {
|
|
26197
|
+
readonly "anthropic/claude-opus-5.5:batch": {
|
|
25671
26198
|
id: string;
|
|
25672
26199
|
name: string;
|
|
25673
26200
|
api: "openai-completions";
|
|
@@ -25675,7 +26202,7 @@ export declare const MODELS: {
|
|
|
25675
26202
|
baseUrl: string;
|
|
25676
26203
|
reasoning: true;
|
|
25677
26204
|
thinkingLevelMap: {
|
|
25678
|
-
off:
|
|
26205
|
+
off: null;
|
|
25679
26206
|
minimal: null;
|
|
25680
26207
|
low: string;
|
|
25681
26208
|
medium: string;
|
|
@@ -26302,66 +26829,6 @@ export declare const MODELS: {
|
|
|
26302
26829
|
contextWindow: number;
|
|
26303
26830
|
maxTokens: number;
|
|
26304
26831
|
};
|
|
26305
|
-
readonly "deepseek/deepseek-v4-flash-0731:batch": {
|
|
26306
|
-
id: string;
|
|
26307
|
-
name: string;
|
|
26308
|
-
api: "openai-completions";
|
|
26309
|
-
provider: string;
|
|
26310
|
-
baseUrl: string;
|
|
26311
|
-
compat: {
|
|
26312
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
26313
|
-
};
|
|
26314
|
-
reasoning: true;
|
|
26315
|
-
thinkingLevelMap: {
|
|
26316
|
-
minimal: null;
|
|
26317
|
-
low: string;
|
|
26318
|
-
medium: null;
|
|
26319
|
-
high: string;
|
|
26320
|
-
xhigh: null;
|
|
26321
|
-
off: string;
|
|
26322
|
-
max: string;
|
|
26323
|
-
ultra: null;
|
|
26324
|
-
};
|
|
26325
|
-
input: "text"[];
|
|
26326
|
-
cost: {
|
|
26327
|
-
input: number;
|
|
26328
|
-
output: number;
|
|
26329
|
-
cacheRead: number;
|
|
26330
|
-
cacheWrite: number;
|
|
26331
|
-
};
|
|
26332
|
-
contextWindow: number;
|
|
26333
|
-
maxTokens: number;
|
|
26334
|
-
};
|
|
26335
|
-
readonly "deepseek/deepseek-v4-flash-0731:free": {
|
|
26336
|
-
id: string;
|
|
26337
|
-
name: string;
|
|
26338
|
-
api: "openai-completions";
|
|
26339
|
-
provider: string;
|
|
26340
|
-
baseUrl: string;
|
|
26341
|
-
compat: {
|
|
26342
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
26343
|
-
};
|
|
26344
|
-
reasoning: true;
|
|
26345
|
-
thinkingLevelMap: {
|
|
26346
|
-
minimal: null;
|
|
26347
|
-
low: string;
|
|
26348
|
-
medium: null;
|
|
26349
|
-
high: string;
|
|
26350
|
-
xhigh: null;
|
|
26351
|
-
off: string;
|
|
26352
|
-
max: string;
|
|
26353
|
-
ultra: null;
|
|
26354
|
-
};
|
|
26355
|
-
input: "text"[];
|
|
26356
|
-
cost: {
|
|
26357
|
-
input: number;
|
|
26358
|
-
output: number;
|
|
26359
|
-
cacheRead: number;
|
|
26360
|
-
cacheWrite: number;
|
|
26361
|
-
};
|
|
26362
|
-
contextWindow: number;
|
|
26363
|
-
maxTokens: number;
|
|
26364
|
-
};
|
|
26365
26832
|
readonly "deepseek/deepseek-v4-flash-vision-exp": {
|
|
26366
26833
|
id: string;
|
|
26367
26834
|
name: string;
|
|
@@ -26392,36 +26859,6 @@ export declare const MODELS: {
|
|
|
26392
26859
|
contextWindow: number;
|
|
26393
26860
|
maxTokens: number;
|
|
26394
26861
|
};
|
|
26395
|
-
readonly "deepseek/deepseek-v4-flash-vision-exp:batch": {
|
|
26396
|
-
id: string;
|
|
26397
|
-
name: string;
|
|
26398
|
-
api: "openai-completions";
|
|
26399
|
-
provider: string;
|
|
26400
|
-
baseUrl: string;
|
|
26401
|
-
compat: {
|
|
26402
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
26403
|
-
};
|
|
26404
|
-
reasoning: true;
|
|
26405
|
-
thinkingLevelMap: {
|
|
26406
|
-
minimal: null;
|
|
26407
|
-
low: string;
|
|
26408
|
-
medium: null;
|
|
26409
|
-
high: string;
|
|
26410
|
-
xhigh: null;
|
|
26411
|
-
off: string;
|
|
26412
|
-
max: string;
|
|
26413
|
-
ultra: null;
|
|
26414
|
-
};
|
|
26415
|
-
input: ("image" | "text")[];
|
|
26416
|
-
cost: {
|
|
26417
|
-
input: number;
|
|
26418
|
-
output: number;
|
|
26419
|
-
cacheRead: number;
|
|
26420
|
-
cacheWrite: number;
|
|
26421
|
-
};
|
|
26422
|
-
contextWindow: number;
|
|
26423
|
-
maxTokens: number;
|
|
26424
|
-
};
|
|
26425
26862
|
readonly "deepseek/deepseek-v4-pro": {
|
|
26426
26863
|
id: string;
|
|
26427
26864
|
name: string;
|
|
@@ -26482,7 +26919,7 @@ export declare const MODELS: {
|
|
|
26482
26919
|
contextWindow: number;
|
|
26483
26920
|
maxTokens: number;
|
|
26484
26921
|
};
|
|
26485
|
-
readonly "deepseek/deepseek-v4-
|
|
26922
|
+
readonly "deepseek/deepseek-v4.1-flash": {
|
|
26486
26923
|
id: string;
|
|
26487
26924
|
name: string;
|
|
26488
26925
|
api: "openai-completions";
|
|
@@ -26502,7 +26939,7 @@ export declare const MODELS: {
|
|
|
26502
26939
|
max: string;
|
|
26503
26940
|
ultra: null;
|
|
26504
26941
|
};
|
|
26505
|
-
input: "text"[];
|
|
26942
|
+
input: ("image" | "text")[];
|
|
26506
26943
|
cost: {
|
|
26507
26944
|
input: number;
|
|
26508
26945
|
output: number;
|
|
@@ -26512,7 +26949,7 @@ export declare const MODELS: {
|
|
|
26512
26949
|
contextWindow: number;
|
|
26513
26950
|
maxTokens: number;
|
|
26514
26951
|
};
|
|
26515
|
-
readonly "deepseek/deepseek-v4.1-flash": {
|
|
26952
|
+
readonly "deepseek/deepseek-v4.1-flash:batch": {
|
|
26516
26953
|
id: string;
|
|
26517
26954
|
name: string;
|
|
26518
26955
|
api: "openai-completions";
|
|
@@ -27478,23 +27915,6 @@ export declare const MODELS: {
|
|
|
27478
27915
|
contextWindow: number;
|
|
27479
27916
|
maxTokens: number;
|
|
27480
27917
|
};
|
|
27481
|
-
readonly "kwaipilot/kat-coder-pro-v2": {
|
|
27482
|
-
id: string;
|
|
27483
|
-
name: string;
|
|
27484
|
-
api: "openai-completions";
|
|
27485
|
-
provider: string;
|
|
27486
|
-
baseUrl: string;
|
|
27487
|
-
reasoning: false;
|
|
27488
|
-
input: "text"[];
|
|
27489
|
-
cost: {
|
|
27490
|
-
input: number;
|
|
27491
|
-
output: number;
|
|
27492
|
-
cacheRead: number;
|
|
27493
|
-
cacheWrite: number;
|
|
27494
|
-
};
|
|
27495
|
-
contextWindow: number;
|
|
27496
|
-
maxTokens: number;
|
|
27497
|
-
};
|
|
27498
27918
|
readonly "kwaipilot/kat-coder-pro-v2.5": {
|
|
27499
27919
|
id: string;
|
|
27500
27920
|
name: string;
|
|
@@ -27661,33 +28081,6 @@ export declare const MODELS: {
|
|
|
27661
28081
|
contextWindow: number;
|
|
27662
28082
|
maxTokens: number;
|
|
27663
28083
|
};
|
|
27664
|
-
readonly "meta/muse-glimmer-30b:batch": {
|
|
27665
|
-
id: string;
|
|
27666
|
-
name: string;
|
|
27667
|
-
api: "openai-completions";
|
|
27668
|
-
provider: string;
|
|
27669
|
-
baseUrl: string;
|
|
27670
|
-
reasoning: true;
|
|
27671
|
-
thinkingLevelMap: {
|
|
27672
|
-
off: null;
|
|
27673
|
-
minimal: null;
|
|
27674
|
-
low: string;
|
|
27675
|
-
medium: string;
|
|
27676
|
-
high: string;
|
|
27677
|
-
xhigh: string;
|
|
27678
|
-
max: null;
|
|
27679
|
-
ultra: null;
|
|
27680
|
-
};
|
|
27681
|
-
input: ("image" | "text")[];
|
|
27682
|
-
cost: {
|
|
27683
|
-
input: number;
|
|
27684
|
-
output: number;
|
|
27685
|
-
cacheRead: number;
|
|
27686
|
-
cacheWrite: number;
|
|
27687
|
-
};
|
|
27688
|
-
contextWindow: number;
|
|
27689
|
-
maxTokens: number;
|
|
27690
|
-
};
|
|
27691
28084
|
readonly "meta/muse-spark-1.1": {
|
|
27692
28085
|
id: string;
|
|
27693
28086
|
name: string;
|
|
@@ -27937,23 +28330,6 @@ export declare const MODELS: {
|
|
|
27937
28330
|
contextWindow: number;
|
|
27938
28331
|
maxTokens: number;
|
|
27939
28332
|
};
|
|
27940
|
-
readonly "minimax/minimax-m3:batch": {
|
|
27941
|
-
id: string;
|
|
27942
|
-
name: string;
|
|
27943
|
-
api: "openai-completions";
|
|
27944
|
-
provider: string;
|
|
27945
|
-
baseUrl: string;
|
|
27946
|
-
reasoning: true;
|
|
27947
|
-
input: ("image" | "text")[];
|
|
27948
|
-
cost: {
|
|
27949
|
-
input: number;
|
|
27950
|
-
output: number;
|
|
27951
|
-
cacheRead: number;
|
|
27952
|
-
cacheWrite: number;
|
|
27953
|
-
};
|
|
27954
|
-
contextWindow: number;
|
|
27955
|
-
maxTokens: number;
|
|
27956
|
-
};
|
|
27957
28333
|
readonly "mistralai/codestral-2508": {
|
|
27958
28334
|
id: string;
|
|
27959
28335
|
name: string;
|
|
@@ -28317,6 +28693,23 @@ export declare const MODELS: {
|
|
|
28317
28693
|
contextWindow: number;
|
|
28318
28694
|
maxTokens: number;
|
|
28319
28695
|
};
|
|
28696
|
+
readonly "mistralai/mistral-small-3.1-24b-instruct": {
|
|
28697
|
+
id: string;
|
|
28698
|
+
name: string;
|
|
28699
|
+
api: "openai-completions";
|
|
28700
|
+
provider: string;
|
|
28701
|
+
baseUrl: string;
|
|
28702
|
+
reasoning: false;
|
|
28703
|
+
input: ("image" | "text")[];
|
|
28704
|
+
cost: {
|
|
28705
|
+
input: number;
|
|
28706
|
+
output: number;
|
|
28707
|
+
cacheRead: number;
|
|
28708
|
+
cacheWrite: number;
|
|
28709
|
+
};
|
|
28710
|
+
contextWindow: number;
|
|
28711
|
+
maxTokens: number;
|
|
28712
|
+
};
|
|
28320
28713
|
readonly "mistralai/mistral-small-3.2-24b-instruct": {
|
|
28321
28714
|
id: string;
|
|
28322
28715
|
name: string;
|
|
@@ -28561,6 +28954,33 @@ export declare const MODELS: {
|
|
|
28561
28954
|
contextWindow: number;
|
|
28562
28955
|
maxTokens: number;
|
|
28563
28956
|
};
|
|
28957
|
+
readonly "nex-agi/nex-n2.5-pro": {
|
|
28958
|
+
id: string;
|
|
28959
|
+
name: string;
|
|
28960
|
+
api: "openai-completions";
|
|
28961
|
+
provider: string;
|
|
28962
|
+
baseUrl: string;
|
|
28963
|
+
reasoning: true;
|
|
28964
|
+
thinkingLevelMap: {
|
|
28965
|
+
off: string;
|
|
28966
|
+
minimal: null;
|
|
28967
|
+
low: null;
|
|
28968
|
+
medium: string;
|
|
28969
|
+
high: string;
|
|
28970
|
+
xhigh: null;
|
|
28971
|
+
max: null;
|
|
28972
|
+
ultra: null;
|
|
28973
|
+
};
|
|
28974
|
+
input: ("image" | "text")[];
|
|
28975
|
+
cost: {
|
|
28976
|
+
input: number;
|
|
28977
|
+
output: number;
|
|
28978
|
+
cacheRead: number;
|
|
28979
|
+
cacheWrite: number;
|
|
28980
|
+
};
|
|
28981
|
+
contextWindow: number;
|
|
28982
|
+
maxTokens: number;
|
|
28983
|
+
};
|
|
28564
28984
|
readonly "nex-agi/nex-n2.5-pro:free": {
|
|
28565
28985
|
id: string;
|
|
28566
28986
|
name: string;
|
|
@@ -30410,14 +30830,24 @@ export declare const MODELS: {
|
|
|
30410
30830
|
contextWindow: number;
|
|
30411
30831
|
maxTokens: number;
|
|
30412
30832
|
};
|
|
30413
|
-
readonly "openai/gpt-
|
|
30833
|
+
readonly "openai/gpt-6-luna": {
|
|
30414
30834
|
id: string;
|
|
30415
30835
|
name: string;
|
|
30416
30836
|
api: "openai-completions";
|
|
30417
30837
|
provider: string;
|
|
30418
30838
|
baseUrl: string;
|
|
30419
|
-
reasoning:
|
|
30420
|
-
|
|
30839
|
+
reasoning: true;
|
|
30840
|
+
thinkingLevelMap: {
|
|
30841
|
+
off: string;
|
|
30842
|
+
minimal: null;
|
|
30843
|
+
low: string;
|
|
30844
|
+
medium: string;
|
|
30845
|
+
high: string;
|
|
30846
|
+
xhigh: string;
|
|
30847
|
+
max: string;
|
|
30848
|
+
ultra: null;
|
|
30849
|
+
};
|
|
30850
|
+
input: ("image" | "text")[];
|
|
30421
30851
|
cost: {
|
|
30422
30852
|
input: number;
|
|
30423
30853
|
output: number;
|
|
@@ -30427,14 +30857,24 @@ export declare const MODELS: {
|
|
|
30427
30857
|
contextWindow: number;
|
|
30428
30858
|
maxTokens: number;
|
|
30429
30859
|
};
|
|
30430
|
-
readonly "openai/gpt-
|
|
30860
|
+
readonly "openai/gpt-6-luna-pro": {
|
|
30431
30861
|
id: string;
|
|
30432
30862
|
name: string;
|
|
30433
30863
|
api: "openai-completions";
|
|
30434
30864
|
provider: string;
|
|
30435
30865
|
baseUrl: string;
|
|
30436
|
-
reasoning:
|
|
30437
|
-
|
|
30866
|
+
reasoning: true;
|
|
30867
|
+
thinkingLevelMap: {
|
|
30868
|
+
off: string;
|
|
30869
|
+
minimal: null;
|
|
30870
|
+
low: string;
|
|
30871
|
+
medium: string;
|
|
30872
|
+
high: string;
|
|
30873
|
+
xhigh: string;
|
|
30874
|
+
max: string;
|
|
30875
|
+
ultra: null;
|
|
30876
|
+
};
|
|
30877
|
+
input: ("image" | "text")[];
|
|
30438
30878
|
cost: {
|
|
30439
30879
|
input: number;
|
|
30440
30880
|
output: number;
|
|
@@ -30444,13 +30884,23 @@ export declare const MODELS: {
|
|
|
30444
30884
|
contextWindow: number;
|
|
30445
30885
|
maxTokens: number;
|
|
30446
30886
|
};
|
|
30447
|
-
readonly "openai/gpt-
|
|
30887
|
+
readonly "openai/gpt-6-luna-pro:batch": {
|
|
30448
30888
|
id: string;
|
|
30449
30889
|
name: string;
|
|
30450
30890
|
api: "openai-completions";
|
|
30451
30891
|
provider: string;
|
|
30452
30892
|
baseUrl: string;
|
|
30453
|
-
reasoning:
|
|
30893
|
+
reasoning: true;
|
|
30894
|
+
thinkingLevelMap: {
|
|
30895
|
+
off: string;
|
|
30896
|
+
minimal: null;
|
|
30897
|
+
low: string;
|
|
30898
|
+
medium: string;
|
|
30899
|
+
high: string;
|
|
30900
|
+
xhigh: string;
|
|
30901
|
+
max: string;
|
|
30902
|
+
ultra: null;
|
|
30903
|
+
};
|
|
30454
30904
|
input: ("image" | "text")[];
|
|
30455
30905
|
cost: {
|
|
30456
30906
|
input: number;
|
|
@@ -30461,7 +30911,7 @@ export declare const MODELS: {
|
|
|
30461
30911
|
contextWindow: number;
|
|
30462
30912
|
maxTokens: number;
|
|
30463
30913
|
};
|
|
30464
|
-
readonly "openai/gpt-
|
|
30914
|
+
readonly "openai/gpt-6-luna:batch": {
|
|
30465
30915
|
id: string;
|
|
30466
30916
|
name: string;
|
|
30467
30917
|
api: "openai-completions";
|
|
@@ -30469,16 +30919,16 @@ export declare const MODELS: {
|
|
|
30469
30919
|
baseUrl: string;
|
|
30470
30920
|
reasoning: true;
|
|
30471
30921
|
thinkingLevelMap: {
|
|
30472
|
-
off:
|
|
30922
|
+
off: string;
|
|
30473
30923
|
minimal: null;
|
|
30474
30924
|
low: string;
|
|
30475
30925
|
medium: string;
|
|
30476
30926
|
high: string;
|
|
30477
|
-
xhigh:
|
|
30478
|
-
max:
|
|
30927
|
+
xhigh: string;
|
|
30928
|
+
max: string;
|
|
30479
30929
|
ultra: null;
|
|
30480
30930
|
};
|
|
30481
|
-
input: "text"[];
|
|
30931
|
+
input: ("image" | "text")[];
|
|
30482
30932
|
cost: {
|
|
30483
30933
|
input: number;
|
|
30484
30934
|
output: number;
|
|
@@ -30488,7 +30938,7 @@ export declare const MODELS: {
|
|
|
30488
30938
|
contextWindow: number;
|
|
30489
30939
|
maxTokens: number;
|
|
30490
30940
|
};
|
|
30491
|
-
readonly "openai/gpt-
|
|
30941
|
+
readonly "openai/gpt-6-sol": {
|
|
30492
30942
|
id: string;
|
|
30493
30943
|
name: string;
|
|
30494
30944
|
api: "openai-completions";
|
|
@@ -30496,15 +30946,113 @@ export declare const MODELS: {
|
|
|
30496
30946
|
baseUrl: string;
|
|
30497
30947
|
reasoning: true;
|
|
30498
30948
|
thinkingLevelMap: {
|
|
30499
|
-
off:
|
|
30949
|
+
off: string;
|
|
30500
30950
|
minimal: null;
|
|
30501
30951
|
low: string;
|
|
30502
30952
|
medium: string;
|
|
30503
30953
|
high: string;
|
|
30504
|
-
xhigh:
|
|
30505
|
-
max:
|
|
30954
|
+
xhigh: string;
|
|
30955
|
+
max: string;
|
|
30956
|
+
ultra: null;
|
|
30957
|
+
};
|
|
30958
|
+
input: ("image" | "text")[];
|
|
30959
|
+
cost: {
|
|
30960
|
+
input: number;
|
|
30961
|
+
output: number;
|
|
30962
|
+
cacheRead: number;
|
|
30963
|
+
cacheWrite: number;
|
|
30964
|
+
};
|
|
30965
|
+
contextWindow: number;
|
|
30966
|
+
maxTokens: number;
|
|
30967
|
+
};
|
|
30968
|
+
readonly "openai/gpt-6-sol-pro": {
|
|
30969
|
+
id: string;
|
|
30970
|
+
name: string;
|
|
30971
|
+
api: "openai-completions";
|
|
30972
|
+
provider: string;
|
|
30973
|
+
baseUrl: string;
|
|
30974
|
+
reasoning: true;
|
|
30975
|
+
thinkingLevelMap: {
|
|
30976
|
+
off: string;
|
|
30977
|
+
minimal: null;
|
|
30978
|
+
low: string;
|
|
30979
|
+
medium: string;
|
|
30980
|
+
high: string;
|
|
30981
|
+
xhigh: string;
|
|
30982
|
+
max: string;
|
|
30983
|
+
ultra: null;
|
|
30984
|
+
};
|
|
30985
|
+
input: ("image" | "text")[];
|
|
30986
|
+
cost: {
|
|
30987
|
+
input: number;
|
|
30988
|
+
output: number;
|
|
30989
|
+
cacheRead: number;
|
|
30990
|
+
cacheWrite: number;
|
|
30991
|
+
};
|
|
30992
|
+
contextWindow: number;
|
|
30993
|
+
maxTokens: number;
|
|
30994
|
+
};
|
|
30995
|
+
readonly "openai/gpt-6-sol-pro:batch": {
|
|
30996
|
+
id: string;
|
|
30997
|
+
name: string;
|
|
30998
|
+
api: "openai-completions";
|
|
30999
|
+
provider: string;
|
|
31000
|
+
baseUrl: string;
|
|
31001
|
+
reasoning: true;
|
|
31002
|
+
thinkingLevelMap: {
|
|
31003
|
+
off: string;
|
|
31004
|
+
minimal: null;
|
|
31005
|
+
low: string;
|
|
31006
|
+
medium: string;
|
|
31007
|
+
high: string;
|
|
31008
|
+
xhigh: string;
|
|
31009
|
+
max: string;
|
|
31010
|
+
ultra: null;
|
|
31011
|
+
};
|
|
31012
|
+
input: ("image" | "text")[];
|
|
31013
|
+
cost: {
|
|
31014
|
+
input: number;
|
|
31015
|
+
output: number;
|
|
31016
|
+
cacheRead: number;
|
|
31017
|
+
cacheWrite: number;
|
|
31018
|
+
};
|
|
31019
|
+
contextWindow: number;
|
|
31020
|
+
maxTokens: number;
|
|
31021
|
+
};
|
|
31022
|
+
readonly "openai/gpt-6-sol:batch": {
|
|
31023
|
+
id: string;
|
|
31024
|
+
name: string;
|
|
31025
|
+
api: "openai-completions";
|
|
31026
|
+
provider: string;
|
|
31027
|
+
baseUrl: string;
|
|
31028
|
+
reasoning: true;
|
|
31029
|
+
thinkingLevelMap: {
|
|
31030
|
+
off: string;
|
|
31031
|
+
minimal: null;
|
|
31032
|
+
low: string;
|
|
31033
|
+
medium: string;
|
|
31034
|
+
high: string;
|
|
31035
|
+
xhigh: string;
|
|
31036
|
+
max: string;
|
|
30506
31037
|
ultra: null;
|
|
30507
31038
|
};
|
|
31039
|
+
input: ("image" | "text")[];
|
|
31040
|
+
cost: {
|
|
31041
|
+
input: number;
|
|
31042
|
+
output: number;
|
|
31043
|
+
cacheRead: number;
|
|
31044
|
+
cacheWrite: number;
|
|
31045
|
+
};
|
|
31046
|
+
contextWindow: number;
|
|
31047
|
+
maxTokens: number;
|
|
31048
|
+
};
|
|
31049
|
+
readonly "openai/gpt-audio": {
|
|
31050
|
+
id: string;
|
|
31051
|
+
name: string;
|
|
31052
|
+
api: "openai-completions";
|
|
31053
|
+
provider: string;
|
|
31054
|
+
baseUrl: string;
|
|
31055
|
+
reasoning: false;
|
|
30508
31056
|
input: "text"[];
|
|
30509
31057
|
cost: {
|
|
30510
31058
|
input: number;
|
|
@@ -30515,7 +31063,95 @@ export declare const MODELS: {
|
|
|
30515
31063
|
contextWindow: number;
|
|
30516
31064
|
maxTokens: number;
|
|
30517
31065
|
};
|
|
30518
|
-
readonly "openai/gpt-
|
|
31066
|
+
readonly "openai/gpt-audio-mini": {
|
|
31067
|
+
id: string;
|
|
31068
|
+
name: string;
|
|
31069
|
+
api: "openai-completions";
|
|
31070
|
+
provider: string;
|
|
31071
|
+
baseUrl: string;
|
|
31072
|
+
reasoning: false;
|
|
31073
|
+
input: "text"[];
|
|
31074
|
+
cost: {
|
|
31075
|
+
input: number;
|
|
31076
|
+
output: number;
|
|
31077
|
+
cacheRead: number;
|
|
31078
|
+
cacheWrite: number;
|
|
31079
|
+
};
|
|
31080
|
+
contextWindow: number;
|
|
31081
|
+
maxTokens: number;
|
|
31082
|
+
};
|
|
31083
|
+
readonly "openai/gpt-chat-latest": {
|
|
31084
|
+
id: string;
|
|
31085
|
+
name: string;
|
|
31086
|
+
api: "openai-completions";
|
|
31087
|
+
provider: string;
|
|
31088
|
+
baseUrl: string;
|
|
31089
|
+
reasoning: false;
|
|
31090
|
+
input: ("image" | "text")[];
|
|
31091
|
+
cost: {
|
|
31092
|
+
input: number;
|
|
31093
|
+
output: number;
|
|
31094
|
+
cacheRead: number;
|
|
31095
|
+
cacheWrite: number;
|
|
31096
|
+
};
|
|
31097
|
+
contextWindow: number;
|
|
31098
|
+
maxTokens: number;
|
|
31099
|
+
};
|
|
31100
|
+
readonly "openai/gpt-oss-120b": {
|
|
31101
|
+
id: string;
|
|
31102
|
+
name: string;
|
|
31103
|
+
api: "openai-completions";
|
|
31104
|
+
provider: string;
|
|
31105
|
+
baseUrl: string;
|
|
31106
|
+
reasoning: true;
|
|
31107
|
+
thinkingLevelMap: {
|
|
31108
|
+
off: null;
|
|
31109
|
+
minimal: null;
|
|
31110
|
+
low: string;
|
|
31111
|
+
medium: string;
|
|
31112
|
+
high: string;
|
|
31113
|
+
xhigh: null;
|
|
31114
|
+
max: null;
|
|
31115
|
+
ultra: null;
|
|
31116
|
+
};
|
|
31117
|
+
input: "text"[];
|
|
31118
|
+
cost: {
|
|
31119
|
+
input: number;
|
|
31120
|
+
output: number;
|
|
31121
|
+
cacheRead: number;
|
|
31122
|
+
cacheWrite: number;
|
|
31123
|
+
};
|
|
31124
|
+
contextWindow: number;
|
|
31125
|
+
maxTokens: number;
|
|
31126
|
+
};
|
|
31127
|
+
readonly "openai/gpt-oss-20b": {
|
|
31128
|
+
id: string;
|
|
31129
|
+
name: string;
|
|
31130
|
+
api: "openai-completions";
|
|
31131
|
+
provider: string;
|
|
31132
|
+
baseUrl: string;
|
|
31133
|
+
reasoning: true;
|
|
31134
|
+
thinkingLevelMap: {
|
|
31135
|
+
off: null;
|
|
31136
|
+
minimal: null;
|
|
31137
|
+
low: string;
|
|
31138
|
+
medium: string;
|
|
31139
|
+
high: string;
|
|
31140
|
+
xhigh: null;
|
|
31141
|
+
max: null;
|
|
31142
|
+
ultra: null;
|
|
31143
|
+
};
|
|
31144
|
+
input: "text"[];
|
|
31145
|
+
cost: {
|
|
31146
|
+
input: number;
|
|
31147
|
+
output: number;
|
|
31148
|
+
cacheRead: number;
|
|
31149
|
+
cacheWrite: number;
|
|
31150
|
+
};
|
|
31151
|
+
contextWindow: number;
|
|
31152
|
+
maxTokens: number;
|
|
31153
|
+
};
|
|
31154
|
+
readonly "openai/gpt-oss-20b:batch": {
|
|
30519
31155
|
id: string;
|
|
30520
31156
|
name: string;
|
|
30521
31157
|
api: "openai-completions";
|
|
@@ -30871,6 +31507,33 @@ export declare const MODELS: {
|
|
|
30871
31507
|
contextWindow: number;
|
|
30872
31508
|
maxTokens: number;
|
|
30873
31509
|
};
|
|
31510
|
+
readonly "prism-ml/ternary-bonsai-2-27b": {
|
|
31511
|
+
id: string;
|
|
31512
|
+
name: string;
|
|
31513
|
+
api: "openai-completions";
|
|
31514
|
+
provider: string;
|
|
31515
|
+
baseUrl: string;
|
|
31516
|
+
reasoning: true;
|
|
31517
|
+
thinkingLevelMap: {
|
|
31518
|
+
off: string;
|
|
31519
|
+
minimal: null;
|
|
31520
|
+
low: null;
|
|
31521
|
+
medium: string;
|
|
31522
|
+
high: null;
|
|
31523
|
+
xhigh: string;
|
|
31524
|
+
max: null;
|
|
31525
|
+
ultra: null;
|
|
31526
|
+
};
|
|
31527
|
+
input: ("image" | "text")[];
|
|
31528
|
+
cost: {
|
|
31529
|
+
input: number;
|
|
31530
|
+
output: number;
|
|
31531
|
+
cacheRead: number;
|
|
31532
|
+
cacheWrite: number;
|
|
31533
|
+
};
|
|
31534
|
+
contextWindow: number;
|
|
31535
|
+
maxTokens: number;
|
|
31536
|
+
};
|
|
30874
31537
|
readonly "qwen/qwen-2.5-72b-instruct": {
|
|
30875
31538
|
id: string;
|
|
30876
31539
|
name: string;
|
|
@@ -31523,27 +32186,6 @@ export declare const MODELS: {
|
|
|
31523
32186
|
contextWindow: number;
|
|
31524
32187
|
maxTokens: number;
|
|
31525
32188
|
};
|
|
31526
|
-
readonly "qwen/qwen3.5-9b:batch": {
|
|
31527
|
-
id: string;
|
|
31528
|
-
name: string;
|
|
31529
|
-
api: "openai-completions";
|
|
31530
|
-
provider: string;
|
|
31531
|
-
baseUrl: string;
|
|
31532
|
-
reasoning: true;
|
|
31533
|
-
thinkingLevelMap: {
|
|
31534
|
-
xhigh: string;
|
|
31535
|
-
max: string;
|
|
31536
|
-
};
|
|
31537
|
-
input: ("image" | "text")[];
|
|
31538
|
-
cost: {
|
|
31539
|
-
input: number;
|
|
31540
|
-
output: number;
|
|
31541
|
-
cacheRead: number;
|
|
31542
|
-
cacheWrite: number;
|
|
31543
|
-
};
|
|
31544
|
-
contextWindow: number;
|
|
31545
|
-
maxTokens: number;
|
|
31546
|
-
};
|
|
31547
32189
|
readonly "qwen/qwen3.5-flash-02-23": {
|
|
31548
32190
|
id: string;
|
|
31549
32191
|
name: string;
|
|
@@ -31802,7 +32444,7 @@ export declare const MODELS: {
|
|
|
31802
32444
|
contextWindow: number;
|
|
31803
32445
|
maxTokens: number;
|
|
31804
32446
|
};
|
|
31805
|
-
readonly "qwen/qwen3.8-
|
|
32447
|
+
readonly "qwen/qwen3.8-27b": {
|
|
31806
32448
|
id: string;
|
|
31807
32449
|
name: string;
|
|
31808
32450
|
api: "openai-completions";
|
|
@@ -31812,14 +32454,14 @@ export declare const MODELS: {
|
|
|
31812
32454
|
thinkingLevelMap: {
|
|
31813
32455
|
xhigh: string;
|
|
31814
32456
|
max: null;
|
|
31815
|
-
off:
|
|
32457
|
+
off: string;
|
|
31816
32458
|
minimal: null;
|
|
31817
32459
|
low: string;
|
|
31818
32460
|
medium: string;
|
|
31819
32461
|
high: null;
|
|
31820
32462
|
ultra: null;
|
|
31821
32463
|
};
|
|
31822
|
-
input: "text"[];
|
|
32464
|
+
input: ("image" | "text")[];
|
|
31823
32465
|
cost: {
|
|
31824
32466
|
input: number;
|
|
31825
32467
|
output: number;
|
|
@@ -31829,7 +32471,7 @@ export declare const MODELS: {
|
|
|
31829
32471
|
contextWindow: number;
|
|
31830
32472
|
maxTokens: number;
|
|
31831
32473
|
};
|
|
31832
|
-
readonly "qwen/qwen3.8-27b": {
|
|
32474
|
+
readonly "qwen/qwen3.8-27b:free": {
|
|
31833
32475
|
id: string;
|
|
31834
32476
|
name: string;
|
|
31835
32477
|
api: "openai-completions";
|
|
@@ -31856,7 +32498,7 @@ export declare const MODELS: {
|
|
|
31856
32498
|
contextWindow: number;
|
|
31857
32499
|
maxTokens: number;
|
|
31858
32500
|
};
|
|
31859
|
-
readonly "qwen/qwen3.8-
|
|
32501
|
+
readonly "qwen/qwen3.8-flash": {
|
|
31860
32502
|
id: string;
|
|
31861
32503
|
name: string;
|
|
31862
32504
|
api: "openai-completions";
|
|
@@ -31865,13 +32507,7 @@ export declare const MODELS: {
|
|
|
31865
32507
|
reasoning: true;
|
|
31866
32508
|
thinkingLevelMap: {
|
|
31867
32509
|
xhigh: string;
|
|
31868
|
-
max:
|
|
31869
|
-
off: string;
|
|
31870
|
-
minimal: null;
|
|
31871
|
-
low: string;
|
|
31872
|
-
medium: string;
|
|
31873
|
-
high: null;
|
|
31874
|
-
ultra: null;
|
|
32510
|
+
max: string;
|
|
31875
32511
|
};
|
|
31876
32512
|
input: ("image" | "text")[];
|
|
31877
32513
|
cost: {
|
|
@@ -31883,7 +32519,7 @@ export declare const MODELS: {
|
|
|
31883
32519
|
contextWindow: number;
|
|
31884
32520
|
maxTokens: number;
|
|
31885
32521
|
};
|
|
31886
|
-
readonly "qwen/qwen3.8-
|
|
32522
|
+
readonly "qwen/qwen3.8-max-0902": {
|
|
31887
32523
|
id: string;
|
|
31888
32524
|
name: string;
|
|
31889
32525
|
api: "openai-completions";
|
|
@@ -31892,7 +32528,13 @@ export declare const MODELS: {
|
|
|
31892
32528
|
reasoning: true;
|
|
31893
32529
|
thinkingLevelMap: {
|
|
31894
32530
|
xhigh: string;
|
|
31895
|
-
max:
|
|
32531
|
+
max: null;
|
|
32532
|
+
off: null;
|
|
32533
|
+
minimal: string;
|
|
32534
|
+
low: string;
|
|
32535
|
+
medium: string;
|
|
32536
|
+
high: string;
|
|
32537
|
+
ultra: null;
|
|
31896
32538
|
};
|
|
31897
32539
|
input: ("image" | "text")[];
|
|
31898
32540
|
cost: {
|
|
@@ -31904,7 +32546,7 @@ export declare const MODELS: {
|
|
|
31904
32546
|
contextWindow: number;
|
|
31905
32547
|
maxTokens: number;
|
|
31906
32548
|
};
|
|
31907
|
-
readonly "qwen/qwen3.8-
|
|
32549
|
+
readonly "qwen/qwen3.8-omni-flash": {
|
|
31908
32550
|
id: string;
|
|
31909
32551
|
name: string;
|
|
31910
32552
|
api: "openai-completions";
|
|
@@ -31913,13 +32555,7 @@ export declare const MODELS: {
|
|
|
31913
32555
|
reasoning: true;
|
|
31914
32556
|
thinkingLevelMap: {
|
|
31915
32557
|
xhigh: string;
|
|
31916
|
-
max:
|
|
31917
|
-
off: null;
|
|
31918
|
-
minimal: string;
|
|
31919
|
-
low: string;
|
|
31920
|
-
medium: string;
|
|
31921
|
-
high: string;
|
|
31922
|
-
ultra: null;
|
|
32558
|
+
max: string;
|
|
31923
32559
|
};
|
|
31924
32560
|
input: ("image" | "text")[];
|
|
31925
32561
|
cost: {
|
|
@@ -32299,7 +32935,7 @@ export declare const MODELS: {
|
|
|
32299
32935
|
contextWindow: number;
|
|
32300
32936
|
maxTokens: number;
|
|
32301
32937
|
};
|
|
32302
|
-
readonly "thinkingmachines/inkling:
|
|
32938
|
+
readonly "thinkingmachines/inkling:free": {
|
|
32303
32939
|
id: string;
|
|
32304
32940
|
name: string;
|
|
32305
32941
|
api: "openai-completions";
|
|
@@ -32326,23 +32962,13 @@ export declare const MODELS: {
|
|
|
32326
32962
|
contextWindow: number;
|
|
32327
32963
|
maxTokens: number;
|
|
32328
32964
|
};
|
|
32329
|
-
readonly "
|
|
32965
|
+
readonly "unbiased/pareto": {
|
|
32330
32966
|
id: string;
|
|
32331
32967
|
name: string;
|
|
32332
32968
|
api: "openai-completions";
|
|
32333
32969
|
provider: string;
|
|
32334
32970
|
baseUrl: string;
|
|
32335
|
-
reasoning:
|
|
32336
|
-
thinkingLevelMap: {
|
|
32337
|
-
off: string;
|
|
32338
|
-
minimal: string;
|
|
32339
|
-
low: string;
|
|
32340
|
-
medium: string;
|
|
32341
|
-
high: string;
|
|
32342
|
-
xhigh: null;
|
|
32343
|
-
max: string;
|
|
32344
|
-
ultra: null;
|
|
32345
|
-
};
|
|
32971
|
+
reasoning: false;
|
|
32346
32972
|
input: ("image" | "text")[];
|
|
32347
32973
|
cost: {
|
|
32348
32974
|
input: number;
|
|
@@ -32353,14 +32979,24 @@ export declare const MODELS: {
|
|
|
32353
32979
|
contextWindow: number;
|
|
32354
32980
|
maxTokens: number;
|
|
32355
32981
|
};
|
|
32356
|
-
readonly "
|
|
32982
|
+
readonly "upstage/solar-pro-3": {
|
|
32357
32983
|
id: string;
|
|
32358
32984
|
name: string;
|
|
32359
32985
|
api: "openai-completions";
|
|
32360
32986
|
provider: string;
|
|
32361
32987
|
baseUrl: string;
|
|
32362
|
-
reasoning:
|
|
32363
|
-
|
|
32988
|
+
reasoning: true;
|
|
32989
|
+
thinkingLevelMap: {
|
|
32990
|
+
off: string;
|
|
32991
|
+
minimal: string;
|
|
32992
|
+
low: string;
|
|
32993
|
+
medium: string;
|
|
32994
|
+
high: string;
|
|
32995
|
+
xhigh: null;
|
|
32996
|
+
max: null;
|
|
32997
|
+
ultra: null;
|
|
32998
|
+
};
|
|
32999
|
+
input: "text"[];
|
|
32364
33000
|
cost: {
|
|
32365
33001
|
input: number;
|
|
32366
33002
|
output: number;
|
|
@@ -32370,13 +33006,23 @@ export declare const MODELS: {
|
|
|
32370
33006
|
contextWindow: number;
|
|
32371
33007
|
maxTokens: number;
|
|
32372
33008
|
};
|
|
32373
|
-
readonly "upstage/solar-
|
|
33009
|
+
readonly "upstage/solar-pro4": {
|
|
32374
33010
|
id: string;
|
|
32375
33011
|
name: string;
|
|
32376
33012
|
api: "openai-completions";
|
|
32377
33013
|
provider: string;
|
|
32378
33014
|
baseUrl: string;
|
|
32379
33015
|
reasoning: true;
|
|
33016
|
+
thinkingLevelMap: {
|
|
33017
|
+
off: string;
|
|
33018
|
+
minimal: string;
|
|
33019
|
+
low: string;
|
|
33020
|
+
medium: string;
|
|
33021
|
+
high: string;
|
|
33022
|
+
xhigh: string;
|
|
33023
|
+
max: string;
|
|
33024
|
+
ultra: null;
|
|
33025
|
+
};
|
|
32380
33026
|
input: "text"[];
|
|
32381
33027
|
cost: {
|
|
32382
33028
|
input: number;
|
|
@@ -32387,14 +33033,14 @@ export declare const MODELS: {
|
|
|
32387
33033
|
contextWindow: number;
|
|
32388
33034
|
maxTokens: number;
|
|
32389
33035
|
};
|
|
32390
|
-
readonly "
|
|
33036
|
+
readonly "x-ai/grok-4.20": {
|
|
32391
33037
|
id: string;
|
|
32392
33038
|
name: string;
|
|
32393
33039
|
api: "openai-completions";
|
|
32394
33040
|
provider: string;
|
|
32395
33041
|
baseUrl: string;
|
|
32396
33042
|
reasoning: true;
|
|
32397
|
-
input: "text"[];
|
|
33043
|
+
input: ("image" | "text")[];
|
|
32398
33044
|
cost: {
|
|
32399
33045
|
input: number;
|
|
32400
33046
|
output: number;
|
|
@@ -32404,13 +33050,23 @@ export declare const MODELS: {
|
|
|
32404
33050
|
contextWindow: number;
|
|
32405
33051
|
maxTokens: number;
|
|
32406
33052
|
};
|
|
32407
|
-
readonly "x-ai/grok-4.
|
|
33053
|
+
readonly "x-ai/grok-4.3": {
|
|
32408
33054
|
id: string;
|
|
32409
33055
|
name: string;
|
|
32410
33056
|
api: "openai-completions";
|
|
32411
33057
|
provider: string;
|
|
32412
33058
|
baseUrl: string;
|
|
32413
33059
|
reasoning: true;
|
|
33060
|
+
thinkingLevelMap: {
|
|
33061
|
+
off: string;
|
|
33062
|
+
minimal: null;
|
|
33063
|
+
low: string;
|
|
33064
|
+
medium: string;
|
|
33065
|
+
high: string;
|
|
33066
|
+
xhigh: null;
|
|
33067
|
+
max: null;
|
|
33068
|
+
ultra: null;
|
|
33069
|
+
};
|
|
32414
33070
|
input: ("image" | "text")[];
|
|
32415
33071
|
cost: {
|
|
32416
33072
|
input: number;
|
|
@@ -32421,7 +33077,7 @@ export declare const MODELS: {
|
|
|
32421
33077
|
contextWindow: number;
|
|
32422
33078
|
maxTokens: number;
|
|
32423
33079
|
};
|
|
32424
|
-
readonly "x-ai/grok-4.3": {
|
|
33080
|
+
readonly "x-ai/grok-4.3:batch": {
|
|
32425
33081
|
id: string;
|
|
32426
33082
|
name: string;
|
|
32427
33083
|
api: "openai-completions";
|
|
@@ -32448,7 +33104,7 @@ export declare const MODELS: {
|
|
|
32448
33104
|
contextWindow: number;
|
|
32449
33105
|
maxTokens: number;
|
|
32450
33106
|
};
|
|
32451
|
-
readonly "x-ai/grok-4.
|
|
33107
|
+
readonly "x-ai/grok-4.5": {
|
|
32452
33108
|
id: string;
|
|
32453
33109
|
name: string;
|
|
32454
33110
|
api: "openai-completions";
|
|
@@ -32456,7 +33112,7 @@ export declare const MODELS: {
|
|
|
32456
33112
|
baseUrl: string;
|
|
32457
33113
|
reasoning: true;
|
|
32458
33114
|
thinkingLevelMap: {
|
|
32459
|
-
off:
|
|
33115
|
+
off: null;
|
|
32460
33116
|
minimal: null;
|
|
32461
33117
|
low: string;
|
|
32462
33118
|
medium: string;
|
|
@@ -32475,7 +33131,7 @@ export declare const MODELS: {
|
|
|
32475
33131
|
contextWindow: number;
|
|
32476
33132
|
maxTokens: number;
|
|
32477
33133
|
};
|
|
32478
|
-
readonly "x-ai/grok-4.
|
|
33134
|
+
readonly "x-ai/grok-4.6": {
|
|
32479
33135
|
id: string;
|
|
32480
33136
|
name: string;
|
|
32481
33137
|
api: "openai-completions";
|
|
@@ -32483,12 +33139,12 @@ export declare const MODELS: {
|
|
|
32483
33139
|
baseUrl: string;
|
|
32484
33140
|
reasoning: true;
|
|
32485
33141
|
thinkingLevelMap: {
|
|
33142
|
+
xhigh: string;
|
|
32486
33143
|
off: null;
|
|
32487
33144
|
minimal: null;
|
|
32488
33145
|
low: string;
|
|
32489
33146
|
medium: string;
|
|
32490
33147
|
high: string;
|
|
32491
|
-
xhigh: null;
|
|
32492
33148
|
max: null;
|
|
32493
33149
|
ultra: null;
|
|
32494
33150
|
};
|
|
@@ -32502,7 +33158,7 @@ export declare const MODELS: {
|
|
|
32502
33158
|
contextWindow: number;
|
|
32503
33159
|
maxTokens: number;
|
|
32504
33160
|
};
|
|
32505
|
-
readonly "x-ai/grok-4.
|
|
33161
|
+
readonly "x-ai/grok-4.7": {
|
|
32506
33162
|
id: string;
|
|
32507
33163
|
name: string;
|
|
32508
33164
|
api: "openai-completions";
|
|
@@ -32583,6 +33239,57 @@ export declare const MODELS: {
|
|
|
32583
33239
|
contextWindow: number;
|
|
32584
33240
|
maxTokens: number;
|
|
32585
33241
|
};
|
|
33242
|
+
readonly "xiaomi/mimo-v2.6-flash": {
|
|
33243
|
+
id: string;
|
|
33244
|
+
name: string;
|
|
33245
|
+
api: "openai-completions";
|
|
33246
|
+
provider: string;
|
|
33247
|
+
baseUrl: string;
|
|
33248
|
+
reasoning: true;
|
|
33249
|
+
input: ("image" | "text")[];
|
|
33250
|
+
cost: {
|
|
33251
|
+
input: number;
|
|
33252
|
+
output: number;
|
|
33253
|
+
cacheRead: number;
|
|
33254
|
+
cacheWrite: number;
|
|
33255
|
+
};
|
|
33256
|
+
contextWindow: number;
|
|
33257
|
+
maxTokens: number;
|
|
33258
|
+
};
|
|
33259
|
+
readonly "xiaomi/mimo-v2.6-pro": {
|
|
33260
|
+
id: string;
|
|
33261
|
+
name: string;
|
|
33262
|
+
api: "openai-completions";
|
|
33263
|
+
provider: string;
|
|
33264
|
+
baseUrl: string;
|
|
33265
|
+
reasoning: true;
|
|
33266
|
+
input: ("image" | "text")[];
|
|
33267
|
+
cost: {
|
|
33268
|
+
input: number;
|
|
33269
|
+
output: number;
|
|
33270
|
+
cacheRead: number;
|
|
33271
|
+
cacheWrite: number;
|
|
33272
|
+
};
|
|
33273
|
+
contextWindow: number;
|
|
33274
|
+
maxTokens: number;
|
|
33275
|
+
};
|
|
33276
|
+
readonly "xiaomi/mimo-v2.6-pro-ultraspeed": {
|
|
33277
|
+
id: string;
|
|
33278
|
+
name: string;
|
|
33279
|
+
api: "openai-completions";
|
|
33280
|
+
provider: string;
|
|
33281
|
+
baseUrl: string;
|
|
33282
|
+
reasoning: true;
|
|
33283
|
+
input: ("image" | "text")[];
|
|
33284
|
+
cost: {
|
|
33285
|
+
input: number;
|
|
33286
|
+
output: number;
|
|
33287
|
+
cacheRead: number;
|
|
33288
|
+
cacheWrite: number;
|
|
33289
|
+
};
|
|
33290
|
+
contextWindow: number;
|
|
33291
|
+
maxTokens: number;
|
|
33292
|
+
};
|
|
32586
33293
|
readonly "z-ai/glm-4.5": {
|
|
32587
33294
|
id: string;
|
|
32588
33295
|
name: string;
|
|
@@ -32780,7 +33487,7 @@ export declare const MODELS: {
|
|
|
32780
33487
|
contextWindow: number;
|
|
32781
33488
|
maxTokens: number;
|
|
32782
33489
|
};
|
|
32783
|
-
readonly "z-ai/glm-5.
|
|
33490
|
+
readonly "z-ai/glm-5.3": {
|
|
32784
33491
|
id: string;
|
|
32785
33492
|
name: string;
|
|
32786
33493
|
api: "openai-completions";
|
|
@@ -32788,13 +33495,13 @@ export declare const MODELS: {
|
|
|
32788
33495
|
baseUrl: string;
|
|
32789
33496
|
reasoning: true;
|
|
32790
33497
|
thinkingLevelMap: {
|
|
32791
|
-
off:
|
|
33498
|
+
off: null;
|
|
32792
33499
|
minimal: null;
|
|
32793
|
-
low:
|
|
33500
|
+
low: string;
|
|
32794
33501
|
medium: null;
|
|
32795
33502
|
high: string;
|
|
32796
|
-
xhigh:
|
|
32797
|
-
max:
|
|
33503
|
+
xhigh: null;
|
|
33504
|
+
max: string;
|
|
32798
33505
|
ultra: null;
|
|
32799
33506
|
};
|
|
32800
33507
|
input: "text"[];
|
|
@@ -32807,7 +33514,7 @@ export declare const MODELS: {
|
|
|
32807
33514
|
contextWindow: number;
|
|
32808
33515
|
maxTokens: number;
|
|
32809
33516
|
};
|
|
32810
|
-
readonly "z-ai/glm-5.3": {
|
|
33517
|
+
readonly "z-ai/glm-5.3-flash": {
|
|
32811
33518
|
id: string;
|
|
32812
33519
|
name: string;
|
|
32813
33520
|
api: "openai-completions";
|
|
@@ -32824,7 +33531,7 @@ export declare const MODELS: {
|
|
|
32824
33531
|
max: string;
|
|
32825
33532
|
ultra: null;
|
|
32826
33533
|
};
|
|
32827
|
-
input: "text"[];
|
|
33534
|
+
input: ("image" | "text")[];
|
|
32828
33535
|
cost: {
|
|
32829
33536
|
input: number;
|
|
32830
33537
|
output: number;
|
|
@@ -32834,7 +33541,7 @@ export declare const MODELS: {
|
|
|
32834
33541
|
contextWindow: number;
|
|
32835
33542
|
maxTokens: number;
|
|
32836
33543
|
};
|
|
32837
|
-
readonly "z-ai/glm-5.3-flash": {
|
|
33544
|
+
readonly "z-ai/glm-5.3-flash:batch": {
|
|
32838
33545
|
id: string;
|
|
32839
33546
|
name: string;
|
|
32840
33547
|
api: "openai-completions";
|
|
@@ -32861,7 +33568,7 @@ export declare const MODELS: {
|
|
|
32861
33568
|
contextWindow: number;
|
|
32862
33569
|
maxTokens: number;
|
|
32863
33570
|
};
|
|
32864
|
-
readonly "z-ai/glm-5.3-
|
|
33571
|
+
readonly "z-ai/glm-5.3-flashx": {
|
|
32865
33572
|
id: string;
|
|
32866
33573
|
name: string;
|
|
32867
33574
|
api: "openai-completions";
|
|
@@ -32984,7 +33691,7 @@ export declare const MODELS: {
|
|
|
32984
33691
|
baseUrl: string;
|
|
32985
33692
|
reasoning: true;
|
|
32986
33693
|
thinkingLevelMap: {
|
|
32987
|
-
off:
|
|
33694
|
+
off: null;
|
|
32988
33695
|
minimal: null;
|
|
32989
33696
|
low: string;
|
|
32990
33697
|
medium: string;
|
|
@@ -35050,6 +35757,64 @@ export declare const MODELS: {
|
|
|
35050
35757
|
contextWindow: number;
|
|
35051
35758
|
maxTokens: number;
|
|
35052
35759
|
};
|
|
35760
|
+
readonly "anthropic/claude-opus-5.5": {
|
|
35761
|
+
id: string;
|
|
35762
|
+
name: string;
|
|
35763
|
+
api: "anthropic-messages";
|
|
35764
|
+
provider: string;
|
|
35765
|
+
baseUrl: string;
|
|
35766
|
+
compat: {
|
|
35767
|
+
forceAdaptiveThinking: true;
|
|
35768
|
+
};
|
|
35769
|
+
reasoning: true;
|
|
35770
|
+
thinkingLevelMap: {
|
|
35771
|
+
off: null;
|
|
35772
|
+
minimal: null;
|
|
35773
|
+
low: string;
|
|
35774
|
+
medium: string;
|
|
35775
|
+
high: string;
|
|
35776
|
+
xhigh: string;
|
|
35777
|
+
max: string;
|
|
35778
|
+
};
|
|
35779
|
+
input: ("image" | "text")[];
|
|
35780
|
+
cost: {
|
|
35781
|
+
input: number;
|
|
35782
|
+
output: number;
|
|
35783
|
+
cacheRead: number;
|
|
35784
|
+
cacheWrite: number;
|
|
35785
|
+
};
|
|
35786
|
+
contextWindow: number;
|
|
35787
|
+
maxTokens: number;
|
|
35788
|
+
};
|
|
35789
|
+
readonly "anthropic/claude-opus-5.5-fast": {
|
|
35790
|
+
id: string;
|
|
35791
|
+
name: string;
|
|
35792
|
+
api: "anthropic-messages";
|
|
35793
|
+
provider: string;
|
|
35794
|
+
baseUrl: string;
|
|
35795
|
+
compat: {
|
|
35796
|
+
forceAdaptiveThinking: true;
|
|
35797
|
+
};
|
|
35798
|
+
reasoning: true;
|
|
35799
|
+
thinkingLevelMap: {
|
|
35800
|
+
off: null;
|
|
35801
|
+
minimal: null;
|
|
35802
|
+
low: string;
|
|
35803
|
+
medium: string;
|
|
35804
|
+
high: string;
|
|
35805
|
+
xhigh: string;
|
|
35806
|
+
max: string;
|
|
35807
|
+
};
|
|
35808
|
+
input: ("image" | "text")[];
|
|
35809
|
+
cost: {
|
|
35810
|
+
input: number;
|
|
35811
|
+
output: number;
|
|
35812
|
+
cacheRead: number;
|
|
35813
|
+
cacheWrite: number;
|
|
35814
|
+
};
|
|
35815
|
+
contextWindow: number;
|
|
35816
|
+
maxTokens: number;
|
|
35817
|
+
};
|
|
35053
35818
|
readonly "anthropic/claude-sonnet-4": {
|
|
35054
35819
|
id: string;
|
|
35055
35820
|
name: string;
|
|
@@ -36278,6 +37043,23 @@ export declare const MODELS: {
|
|
|
36278
37043
|
contextWindow: number;
|
|
36279
37044
|
maxTokens: number;
|
|
36280
37045
|
};
|
|
37046
|
+
readonly "mixedbread/toast-1": {
|
|
37047
|
+
id: string;
|
|
37048
|
+
name: string;
|
|
37049
|
+
api: "anthropic-messages";
|
|
37050
|
+
provider: string;
|
|
37051
|
+
baseUrl: string;
|
|
37052
|
+
reasoning: false;
|
|
37053
|
+
input: "text"[];
|
|
37054
|
+
cost: {
|
|
37055
|
+
input: number;
|
|
37056
|
+
output: number;
|
|
37057
|
+
cacheRead: number;
|
|
37058
|
+
cacheWrite: number;
|
|
37059
|
+
};
|
|
37060
|
+
contextWindow: number;
|
|
37061
|
+
maxTokens: number;
|
|
37062
|
+
};
|
|
36281
37063
|
readonly "moonshotai/kimi-k2": {
|
|
36282
37064
|
id: string;
|
|
36283
37065
|
name: string;
|
|
@@ -37387,6 +38169,74 @@ export declare const MODELS: {
|
|
|
37387
38169
|
contextWindow: number;
|
|
37388
38170
|
maxTokens: number;
|
|
37389
38171
|
};
|
|
38172
|
+
readonly "openai/gpt-6-luna": {
|
|
38173
|
+
id: string;
|
|
38174
|
+
name: string;
|
|
38175
|
+
api: "anthropic-messages";
|
|
38176
|
+
provider: string;
|
|
38177
|
+
baseUrl: string;
|
|
38178
|
+
reasoning: true;
|
|
38179
|
+
input: ("image" | "text")[];
|
|
38180
|
+
cost: {
|
|
38181
|
+
input: number;
|
|
38182
|
+
output: number;
|
|
38183
|
+
cacheRead: number;
|
|
38184
|
+
cacheWrite: number;
|
|
38185
|
+
};
|
|
38186
|
+
contextWindow: number;
|
|
38187
|
+
maxTokens: number;
|
|
38188
|
+
};
|
|
38189
|
+
readonly "openai/gpt-6-luna-fast": {
|
|
38190
|
+
id: string;
|
|
38191
|
+
name: string;
|
|
38192
|
+
api: "anthropic-messages";
|
|
38193
|
+
provider: string;
|
|
38194
|
+
baseUrl: string;
|
|
38195
|
+
reasoning: true;
|
|
38196
|
+
input: ("image" | "text")[];
|
|
38197
|
+
cost: {
|
|
38198
|
+
input: number;
|
|
38199
|
+
output: number;
|
|
38200
|
+
cacheRead: number;
|
|
38201
|
+
cacheWrite: number;
|
|
38202
|
+
};
|
|
38203
|
+
contextWindow: number;
|
|
38204
|
+
maxTokens: number;
|
|
38205
|
+
};
|
|
38206
|
+
readonly "openai/gpt-6-sol": {
|
|
38207
|
+
id: string;
|
|
38208
|
+
name: string;
|
|
38209
|
+
api: "anthropic-messages";
|
|
38210
|
+
provider: string;
|
|
38211
|
+
baseUrl: string;
|
|
38212
|
+
reasoning: true;
|
|
38213
|
+
input: ("image" | "text")[];
|
|
38214
|
+
cost: {
|
|
38215
|
+
input: number;
|
|
38216
|
+
output: number;
|
|
38217
|
+
cacheRead: number;
|
|
38218
|
+
cacheWrite: number;
|
|
38219
|
+
};
|
|
38220
|
+
contextWindow: number;
|
|
38221
|
+
maxTokens: number;
|
|
38222
|
+
};
|
|
38223
|
+
readonly "openai/gpt-6-sol-fast": {
|
|
38224
|
+
id: string;
|
|
38225
|
+
name: string;
|
|
38226
|
+
api: "anthropic-messages";
|
|
38227
|
+
provider: string;
|
|
38228
|
+
baseUrl: string;
|
|
38229
|
+
reasoning: true;
|
|
38230
|
+
input: ("image" | "text")[];
|
|
38231
|
+
cost: {
|
|
38232
|
+
input: number;
|
|
38233
|
+
output: number;
|
|
38234
|
+
cacheRead: number;
|
|
38235
|
+
cacheWrite: number;
|
|
38236
|
+
};
|
|
38237
|
+
contextWindow: number;
|
|
38238
|
+
maxTokens: number;
|
|
38239
|
+
};
|
|
37390
38240
|
readonly "openai/gpt-oss-120b": {
|
|
37391
38241
|
id: string;
|
|
37392
38242
|
name: string;
|
|
@@ -37608,6 +38458,40 @@ export declare const MODELS: {
|
|
|
37608
38458
|
contextWindow: number;
|
|
37609
38459
|
maxTokens: number;
|
|
37610
38460
|
};
|
|
38461
|
+
readonly "quiverai/arrow-2": {
|
|
38462
|
+
id: string;
|
|
38463
|
+
name: string;
|
|
38464
|
+
api: "anthropic-messages";
|
|
38465
|
+
provider: string;
|
|
38466
|
+
baseUrl: string;
|
|
38467
|
+
reasoning: true;
|
|
38468
|
+
input: ("image" | "text")[];
|
|
38469
|
+
cost: {
|
|
38470
|
+
input: number;
|
|
38471
|
+
output: number;
|
|
38472
|
+
cacheRead: number;
|
|
38473
|
+
cacheWrite: number;
|
|
38474
|
+
};
|
|
38475
|
+
contextWindow: number;
|
|
38476
|
+
maxTokens: number;
|
|
38477
|
+
};
|
|
38478
|
+
readonly "quiverai/arrow-2-telos": {
|
|
38479
|
+
id: string;
|
|
38480
|
+
name: string;
|
|
38481
|
+
api: "anthropic-messages";
|
|
38482
|
+
provider: string;
|
|
38483
|
+
baseUrl: string;
|
|
38484
|
+
reasoning: true;
|
|
38485
|
+
input: ("image" | "text")[];
|
|
38486
|
+
cost: {
|
|
38487
|
+
input: number;
|
|
38488
|
+
output: number;
|
|
38489
|
+
cacheRead: number;
|
|
38490
|
+
cacheWrite: number;
|
|
38491
|
+
};
|
|
38492
|
+
contextWindow: number;
|
|
38493
|
+
maxTokens: number;
|
|
38494
|
+
};
|
|
37611
38495
|
readonly "sakana/fugu-max": {
|
|
37612
38496
|
id: string;
|
|
37613
38497
|
name: string;
|
|
@@ -37869,6 +38753,26 @@ export declare const MODELS: {
|
|
|
37869
38753
|
contextWindow: number;
|
|
37870
38754
|
maxTokens: number;
|
|
37871
38755
|
};
|
|
38756
|
+
readonly "spacexai/grok-4.7": {
|
|
38757
|
+
id: string;
|
|
38758
|
+
name: string;
|
|
38759
|
+
api: "anthropic-messages";
|
|
38760
|
+
provider: string;
|
|
38761
|
+
baseUrl: string;
|
|
38762
|
+
reasoning: true;
|
|
38763
|
+
thinkingLevelMap: {
|
|
38764
|
+
xhigh: string;
|
|
38765
|
+
};
|
|
38766
|
+
input: ("image" | "text")[];
|
|
38767
|
+
cost: {
|
|
38768
|
+
input: number;
|
|
38769
|
+
output: number;
|
|
38770
|
+
cacheRead: number;
|
|
38771
|
+
cacheWrite: number;
|
|
38772
|
+
};
|
|
38773
|
+
contextWindow: number;
|
|
38774
|
+
maxTokens: number;
|
|
38775
|
+
};
|
|
37872
38776
|
readonly "spacexai/grok-build-0.1": {
|
|
37873
38777
|
id: string;
|
|
37874
38778
|
name: string;
|
|
@@ -38022,14 +38926,14 @@ export declare const MODELS: {
|
|
|
38022
38926
|
contextWindow: number;
|
|
38023
38927
|
maxTokens: number;
|
|
38024
38928
|
};
|
|
38025
|
-
readonly "
|
|
38929
|
+
readonly "xiaomi/mimo-v2.6-flash": {
|
|
38026
38930
|
id: string;
|
|
38027
38931
|
name: string;
|
|
38028
38932
|
api: "anthropic-messages";
|
|
38029
38933
|
provider: string;
|
|
38030
38934
|
baseUrl: string;
|
|
38031
38935
|
reasoning: true;
|
|
38032
|
-
input: "text"[];
|
|
38936
|
+
input: ("image" | "text")[];
|
|
38033
38937
|
cost: {
|
|
38034
38938
|
input: number;
|
|
38035
38939
|
output: number;
|
|
@@ -38039,14 +38943,14 @@ export declare const MODELS: {
|
|
|
38039
38943
|
contextWindow: number;
|
|
38040
38944
|
maxTokens: number;
|
|
38041
38945
|
};
|
|
38042
|
-
readonly "
|
|
38946
|
+
readonly "xiaomi/mimo-v2.6-pro": {
|
|
38043
38947
|
id: string;
|
|
38044
38948
|
name: string;
|
|
38045
38949
|
api: "anthropic-messages";
|
|
38046
38950
|
provider: string;
|
|
38047
38951
|
baseUrl: string;
|
|
38048
38952
|
reasoning: true;
|
|
38049
|
-
input: "text"[];
|
|
38953
|
+
input: ("image" | "text")[];
|
|
38050
38954
|
cost: {
|
|
38051
38955
|
input: number;
|
|
38052
38956
|
output: number;
|
|
@@ -38056,7 +38960,7 @@ export declare const MODELS: {
|
|
|
38056
38960
|
contextWindow: number;
|
|
38057
38961
|
maxTokens: number;
|
|
38058
38962
|
};
|
|
38059
|
-
readonly "
|
|
38963
|
+
readonly "xiaomi/mimo-v2.6-pro-ultraspeed": {
|
|
38060
38964
|
id: string;
|
|
38061
38965
|
name: string;
|
|
38062
38966
|
api: "anthropic-messages";
|
|
@@ -38073,7 +38977,7 @@ export declare const MODELS: {
|
|
|
38073
38977
|
contextWindow: number;
|
|
38074
38978
|
maxTokens: number;
|
|
38075
38979
|
};
|
|
38076
|
-
readonly "zai/glm-4.
|
|
38980
|
+
readonly "zai/glm-4.5": {
|
|
38077
38981
|
id: string;
|
|
38078
38982
|
name: string;
|
|
38079
38983
|
api: "anthropic-messages";
|
|
@@ -38090,7 +38994,7 @@ export declare const MODELS: {
|
|
|
38090
38994
|
contextWindow: number;
|
|
38091
38995
|
maxTokens: number;
|
|
38092
38996
|
};
|
|
38093
|
-
readonly "zai/glm-4.
|
|
38997
|
+
readonly "zai/glm-4.5-air": {
|
|
38094
38998
|
id: string;
|
|
38095
38999
|
name: string;
|
|
38096
39000
|
api: "anthropic-messages";
|
|
@@ -38107,7 +39011,24 @@ export declare const MODELS: {
|
|
|
38107
39011
|
contextWindow: number;
|
|
38108
39012
|
maxTokens: number;
|
|
38109
39013
|
};
|
|
38110
|
-
readonly "zai/glm-4.
|
|
39014
|
+
readonly "zai/glm-4.5v": {
|
|
39015
|
+
id: string;
|
|
39016
|
+
name: string;
|
|
39017
|
+
api: "anthropic-messages";
|
|
39018
|
+
provider: string;
|
|
39019
|
+
baseUrl: string;
|
|
39020
|
+
reasoning: true;
|
|
39021
|
+
input: ("image" | "text")[];
|
|
39022
|
+
cost: {
|
|
39023
|
+
input: number;
|
|
39024
|
+
output: number;
|
|
39025
|
+
cacheRead: number;
|
|
39026
|
+
cacheWrite: number;
|
|
39027
|
+
};
|
|
39028
|
+
contextWindow: number;
|
|
39029
|
+
maxTokens: number;
|
|
39030
|
+
};
|
|
39031
|
+
readonly "zai/glm-4.6": {
|
|
38111
39032
|
id: string;
|
|
38112
39033
|
name: string;
|
|
38113
39034
|
api: "anthropic-messages";
|
|
@@ -38124,7 +39045,7 @@ export declare const MODELS: {
|
|
|
38124
39045
|
contextWindow: number;
|
|
38125
39046
|
maxTokens: number;
|
|
38126
39047
|
};
|
|
38127
|
-
readonly "zai/glm-4.7
|
|
39048
|
+
readonly "zai/glm-4.7": {
|
|
38128
39049
|
id: string;
|
|
38129
39050
|
name: string;
|
|
38130
39051
|
api: "anthropic-messages";
|
|
@@ -38141,7 +39062,7 @@ export declare const MODELS: {
|
|
|
38141
39062
|
contextWindow: number;
|
|
38142
39063
|
maxTokens: number;
|
|
38143
39064
|
};
|
|
38144
|
-
readonly "zai/glm-
|
|
39065
|
+
readonly "zai/glm-4.7-flash": {
|
|
38145
39066
|
id: string;
|
|
38146
39067
|
name: string;
|
|
38147
39068
|
api: "anthropic-messages";
|
|
@@ -38158,7 +39079,7 @@ export declare const MODELS: {
|
|
|
38158
39079
|
contextWindow: number;
|
|
38159
39080
|
maxTokens: number;
|
|
38160
39081
|
};
|
|
38161
|
-
readonly "zai/glm-
|
|
39082
|
+
readonly "zai/glm-4.7-flashx": {
|
|
38162
39083
|
id: string;
|
|
38163
39084
|
name: string;
|
|
38164
39085
|
api: "anthropic-messages";
|
|
@@ -38175,7 +39096,7 @@ export declare const MODELS: {
|
|
|
38175
39096
|
contextWindow: number;
|
|
38176
39097
|
maxTokens: number;
|
|
38177
39098
|
};
|
|
38178
|
-
readonly "zai/glm-5
|
|
39099
|
+
readonly "zai/glm-5": {
|
|
38179
39100
|
id: string;
|
|
38180
39101
|
name: string;
|
|
38181
39102
|
api: "anthropic-messages";
|
|
@@ -38192,22 +39113,30 @@ export declare const MODELS: {
|
|
|
38192
39113
|
contextWindow: number;
|
|
38193
39114
|
maxTokens: number;
|
|
38194
39115
|
};
|
|
38195
|
-
readonly "zai/glm-5
|
|
39116
|
+
readonly "zai/glm-5-turbo": {
|
|
38196
39117
|
id: string;
|
|
38197
39118
|
name: string;
|
|
38198
39119
|
api: "anthropic-messages";
|
|
38199
39120
|
provider: string;
|
|
38200
39121
|
baseUrl: string;
|
|
38201
39122
|
reasoning: true;
|
|
38202
|
-
|
|
38203
|
-
|
|
38204
|
-
|
|
38205
|
-
|
|
38206
|
-
|
|
38207
|
-
|
|
38208
|
-
xhigh: string;
|
|
38209
|
-
max: string;
|
|
39123
|
+
input: "text"[];
|
|
39124
|
+
cost: {
|
|
39125
|
+
input: number;
|
|
39126
|
+
output: number;
|
|
39127
|
+
cacheRead: number;
|
|
39128
|
+
cacheWrite: number;
|
|
38210
39129
|
};
|
|
39130
|
+
contextWindow: number;
|
|
39131
|
+
maxTokens: number;
|
|
39132
|
+
};
|
|
39133
|
+
readonly "zai/glm-5.1": {
|
|
39134
|
+
id: string;
|
|
39135
|
+
name: string;
|
|
39136
|
+
api: "anthropic-messages";
|
|
39137
|
+
provider: string;
|
|
39138
|
+
baseUrl: string;
|
|
39139
|
+
reasoning: true;
|
|
38211
39140
|
input: "text"[];
|
|
38212
39141
|
cost: {
|
|
38213
39142
|
input: number;
|
|
@@ -38218,7 +39147,7 @@ export declare const MODELS: {
|
|
|
38218
39147
|
contextWindow: number;
|
|
38219
39148
|
maxTokens: number;
|
|
38220
39149
|
};
|
|
38221
|
-
readonly "zai/glm-5.2
|
|
39150
|
+
readonly "zai/glm-5.2": {
|
|
38222
39151
|
id: string;
|
|
38223
39152
|
name: string;
|
|
38224
39153
|
api: "anthropic-messages";
|
|
@@ -38244,7 +39173,33 @@ export declare const MODELS: {
|
|
|
38244
39173
|
contextWindow: number;
|
|
38245
39174
|
maxTokens: number;
|
|
38246
39175
|
};
|
|
38247
|
-
readonly "zai/glm-5.
|
|
39176
|
+
readonly "zai/glm-5.2-fast": {
|
|
39177
|
+
id: string;
|
|
39178
|
+
name: string;
|
|
39179
|
+
api: "anthropic-messages";
|
|
39180
|
+
provider: string;
|
|
39181
|
+
baseUrl: string;
|
|
39182
|
+
reasoning: true;
|
|
39183
|
+
thinkingLevelMap: {
|
|
39184
|
+
off: null;
|
|
39185
|
+
minimal: null;
|
|
39186
|
+
low: string;
|
|
39187
|
+
medium: string;
|
|
39188
|
+
high: string;
|
|
39189
|
+
xhigh: string;
|
|
39190
|
+
max: string;
|
|
39191
|
+
};
|
|
39192
|
+
input: "text"[];
|
|
39193
|
+
cost: {
|
|
39194
|
+
input: number;
|
|
39195
|
+
output: number;
|
|
39196
|
+
cacheRead: number;
|
|
39197
|
+
cacheWrite: number;
|
|
39198
|
+
};
|
|
39199
|
+
contextWindow: number;
|
|
39200
|
+
maxTokens: number;
|
|
39201
|
+
};
|
|
39202
|
+
readonly "zai/glm-5.3": {
|
|
38248
39203
|
id: string;
|
|
38249
39204
|
name: string;
|
|
38250
39205
|
api: "anthropic-messages";
|
|
@@ -38366,6 +39321,900 @@ export declare const MODELS: {
|
|
|
38366
39321
|
maxTokens: number;
|
|
38367
39322
|
};
|
|
38368
39323
|
};
|
|
39324
|
+
readonly workbuddy: {
|
|
39325
|
+
readonly auto: {
|
|
39326
|
+
id: string;
|
|
39327
|
+
name: string;
|
|
39328
|
+
api: "openai-completions";
|
|
39329
|
+
provider: string;
|
|
39330
|
+
baseUrl: string;
|
|
39331
|
+
compat: {
|
|
39332
|
+
supportsDeveloperRole: false;
|
|
39333
|
+
maxTokensField: "max_tokens";
|
|
39334
|
+
supportsUsageInStreaming: true;
|
|
39335
|
+
requiresSystemMessageFirst: true;
|
|
39336
|
+
};
|
|
39337
|
+
reasoning: false;
|
|
39338
|
+
thinkingLevelMap: {
|
|
39339
|
+
off: null;
|
|
39340
|
+
minimal: null;
|
|
39341
|
+
low: null;
|
|
39342
|
+
medium: null;
|
|
39343
|
+
high: null;
|
|
39344
|
+
xhigh: null;
|
|
39345
|
+
max: null;
|
|
39346
|
+
ultra: null;
|
|
39347
|
+
};
|
|
39348
|
+
input: ("image" | "text")[];
|
|
39349
|
+
cost: {
|
|
39350
|
+
input: number;
|
|
39351
|
+
output: number;
|
|
39352
|
+
cacheRead: number;
|
|
39353
|
+
cacheWrite: number;
|
|
39354
|
+
};
|
|
39355
|
+
contextWindow: number;
|
|
39356
|
+
maxTokens: number;
|
|
39357
|
+
};
|
|
39358
|
+
readonly "claude-opus-4.6": {
|
|
39359
|
+
id: string;
|
|
39360
|
+
name: string;
|
|
39361
|
+
api: "openai-completions";
|
|
39362
|
+
provider: string;
|
|
39363
|
+
baseUrl: string;
|
|
39364
|
+
compat: {
|
|
39365
|
+
supportsDeveloperRole: false;
|
|
39366
|
+
maxTokensField: "max_tokens";
|
|
39367
|
+
supportsUsageInStreaming: true;
|
|
39368
|
+
requiresSystemMessageFirst: true;
|
|
39369
|
+
};
|
|
39370
|
+
reasoning: true;
|
|
39371
|
+
thinkingLevelMap: {
|
|
39372
|
+
off: null;
|
|
39373
|
+
minimal: null;
|
|
39374
|
+
low: string;
|
|
39375
|
+
medium: string;
|
|
39376
|
+
high: string;
|
|
39377
|
+
xhigh: null;
|
|
39378
|
+
max: string;
|
|
39379
|
+
ultra: null;
|
|
39380
|
+
};
|
|
39381
|
+
input: ("image" | "text")[];
|
|
39382
|
+
cost: {
|
|
39383
|
+
input: number;
|
|
39384
|
+
output: number;
|
|
39385
|
+
cacheRead: number;
|
|
39386
|
+
cacheWrite: number;
|
|
39387
|
+
};
|
|
39388
|
+
contextWindow: number;
|
|
39389
|
+
maxTokens: number;
|
|
39390
|
+
};
|
|
39391
|
+
readonly "claude-opus-5": {
|
|
39392
|
+
id: string;
|
|
39393
|
+
name: string;
|
|
39394
|
+
api: "openai-completions";
|
|
39395
|
+
provider: string;
|
|
39396
|
+
baseUrl: string;
|
|
39397
|
+
compat: {
|
|
39398
|
+
supportsDeveloperRole: false;
|
|
39399
|
+
maxTokensField: "max_tokens";
|
|
39400
|
+
supportsUsageInStreaming: true;
|
|
39401
|
+
requiresSystemMessageFirst: true;
|
|
39402
|
+
};
|
|
39403
|
+
reasoning: true;
|
|
39404
|
+
thinkingLevelMap: {
|
|
39405
|
+
off: null;
|
|
39406
|
+
minimal: null;
|
|
39407
|
+
low: string;
|
|
39408
|
+
medium: string;
|
|
39409
|
+
high: string;
|
|
39410
|
+
xhigh: string;
|
|
39411
|
+
max: string;
|
|
39412
|
+
ultra: null;
|
|
39413
|
+
};
|
|
39414
|
+
input: ("image" | "text")[];
|
|
39415
|
+
cost: {
|
|
39416
|
+
input: number;
|
|
39417
|
+
output: number;
|
|
39418
|
+
cacheRead: number;
|
|
39419
|
+
cacheWrite: number;
|
|
39420
|
+
};
|
|
39421
|
+
contextWindow: number;
|
|
39422
|
+
maxTokens: number;
|
|
39423
|
+
};
|
|
39424
|
+
readonly "claude-sonnet-4.6": {
|
|
39425
|
+
id: string;
|
|
39426
|
+
name: string;
|
|
39427
|
+
api: "openai-completions";
|
|
39428
|
+
provider: string;
|
|
39429
|
+
baseUrl: string;
|
|
39430
|
+
compat: {
|
|
39431
|
+
supportsDeveloperRole: false;
|
|
39432
|
+
maxTokensField: "max_tokens";
|
|
39433
|
+
supportsUsageInStreaming: true;
|
|
39434
|
+
requiresSystemMessageFirst: true;
|
|
39435
|
+
};
|
|
39436
|
+
reasoning: true;
|
|
39437
|
+
thinkingLevelMap: {
|
|
39438
|
+
off: null;
|
|
39439
|
+
minimal: null;
|
|
39440
|
+
low: string;
|
|
39441
|
+
medium: string;
|
|
39442
|
+
high: string;
|
|
39443
|
+
xhigh: null;
|
|
39444
|
+
max: string;
|
|
39445
|
+
ultra: null;
|
|
39446
|
+
};
|
|
39447
|
+
input: ("image" | "text")[];
|
|
39448
|
+
cost: {
|
|
39449
|
+
input: number;
|
|
39450
|
+
output: number;
|
|
39451
|
+
cacheRead: number;
|
|
39452
|
+
cacheWrite: number;
|
|
39453
|
+
};
|
|
39454
|
+
contextWindow: number;
|
|
39455
|
+
maxTokens: number;
|
|
39456
|
+
};
|
|
39457
|
+
readonly "deepseek-v3-0324": {
|
|
39458
|
+
id: string;
|
|
39459
|
+
name: string;
|
|
39460
|
+
api: "openai-completions";
|
|
39461
|
+
provider: string;
|
|
39462
|
+
baseUrl: string;
|
|
39463
|
+
compat: {
|
|
39464
|
+
supportsDeveloperRole: false;
|
|
39465
|
+
maxTokensField: "max_tokens";
|
|
39466
|
+
supportsUsageInStreaming: true;
|
|
39467
|
+
requiresSystemMessageFirst: true;
|
|
39468
|
+
};
|
|
39469
|
+
reasoning: false;
|
|
39470
|
+
thinkingLevelMap: {
|
|
39471
|
+
off: null;
|
|
39472
|
+
minimal: null;
|
|
39473
|
+
low: null;
|
|
39474
|
+
medium: null;
|
|
39475
|
+
high: null;
|
|
39476
|
+
xhigh: null;
|
|
39477
|
+
max: null;
|
|
39478
|
+
ultra: null;
|
|
39479
|
+
};
|
|
39480
|
+
input: "text"[];
|
|
39481
|
+
cost: {
|
|
39482
|
+
input: number;
|
|
39483
|
+
output: number;
|
|
39484
|
+
cacheRead: number;
|
|
39485
|
+
cacheWrite: number;
|
|
39486
|
+
};
|
|
39487
|
+
contextWindow: number;
|
|
39488
|
+
maxTokens: number;
|
|
39489
|
+
};
|
|
39490
|
+
readonly "deepseek-v4.1-flash": {
|
|
39491
|
+
id: string;
|
|
39492
|
+
name: string;
|
|
39493
|
+
api: "openai-completions";
|
|
39494
|
+
provider: string;
|
|
39495
|
+
baseUrl: string;
|
|
39496
|
+
compat: {
|
|
39497
|
+
supportsDeveloperRole: false;
|
|
39498
|
+
maxTokensField: "max_tokens";
|
|
39499
|
+
supportsUsageInStreaming: true;
|
|
39500
|
+
requiresSystemMessageFirst: true;
|
|
39501
|
+
};
|
|
39502
|
+
reasoning: true;
|
|
39503
|
+
thinkingLevelMap: {
|
|
39504
|
+
off: null;
|
|
39505
|
+
minimal: null;
|
|
39506
|
+
low: string;
|
|
39507
|
+
medium: null;
|
|
39508
|
+
high: string;
|
|
39509
|
+
xhigh: null;
|
|
39510
|
+
max: string;
|
|
39511
|
+
ultra: null;
|
|
39512
|
+
};
|
|
39513
|
+
input: ("image" | "text")[];
|
|
39514
|
+
cost: {
|
|
39515
|
+
input: number;
|
|
39516
|
+
output: number;
|
|
39517
|
+
cacheRead: number;
|
|
39518
|
+
cacheWrite: number;
|
|
39519
|
+
};
|
|
39520
|
+
contextWindow: number;
|
|
39521
|
+
maxTokens: number;
|
|
39522
|
+
};
|
|
39523
|
+
readonly "gemini-3.1-pro": {
|
|
39524
|
+
id: string;
|
|
39525
|
+
name: string;
|
|
39526
|
+
api: "openai-completions";
|
|
39527
|
+
provider: string;
|
|
39528
|
+
baseUrl: string;
|
|
39529
|
+
compat: {
|
|
39530
|
+
supportsDeveloperRole: false;
|
|
39531
|
+
maxTokensField: "max_tokens";
|
|
39532
|
+
supportsUsageInStreaming: true;
|
|
39533
|
+
requiresSystemMessageFirst: true;
|
|
39534
|
+
supportsReasoningEffort: false;
|
|
39535
|
+
};
|
|
39536
|
+
reasoning: true;
|
|
39537
|
+
thinkingLevelMap: {
|
|
39538
|
+
off: null;
|
|
39539
|
+
minimal: null;
|
|
39540
|
+
low: null;
|
|
39541
|
+
medium: null;
|
|
39542
|
+
high: null;
|
|
39543
|
+
xhigh: null;
|
|
39544
|
+
max: null;
|
|
39545
|
+
ultra: null;
|
|
39546
|
+
};
|
|
39547
|
+
input: ("image" | "text")[];
|
|
39548
|
+
cost: {
|
|
39549
|
+
input: number;
|
|
39550
|
+
output: number;
|
|
39551
|
+
cacheRead: number;
|
|
39552
|
+
cacheWrite: number;
|
|
39553
|
+
};
|
|
39554
|
+
contextWindow: number;
|
|
39555
|
+
maxTokens: number;
|
|
39556
|
+
};
|
|
39557
|
+
readonly "gemini-3.5-flash": {
|
|
39558
|
+
id: string;
|
|
39559
|
+
name: string;
|
|
39560
|
+
api: "openai-completions";
|
|
39561
|
+
provider: string;
|
|
39562
|
+
baseUrl: string;
|
|
39563
|
+
compat: {
|
|
39564
|
+
supportsDeveloperRole: false;
|
|
39565
|
+
maxTokensField: "max_tokens";
|
|
39566
|
+
supportsUsageInStreaming: true;
|
|
39567
|
+
requiresSystemMessageFirst: true;
|
|
39568
|
+
};
|
|
39569
|
+
reasoning: true;
|
|
39570
|
+
thinkingLevelMap: {
|
|
39571
|
+
off: null;
|
|
39572
|
+
minimal: null;
|
|
39573
|
+
low: null;
|
|
39574
|
+
medium: string;
|
|
39575
|
+
high: null;
|
|
39576
|
+
xhigh: null;
|
|
39577
|
+
max: null;
|
|
39578
|
+
ultra: null;
|
|
39579
|
+
};
|
|
39580
|
+
input: ("image" | "text")[];
|
|
39581
|
+
cost: {
|
|
39582
|
+
input: number;
|
|
39583
|
+
output: number;
|
|
39584
|
+
cacheRead: number;
|
|
39585
|
+
cacheWrite: number;
|
|
39586
|
+
};
|
|
39587
|
+
contextWindow: number;
|
|
39588
|
+
maxTokens: number;
|
|
39589
|
+
};
|
|
39590
|
+
readonly "gemini-3.8-flash": {
|
|
39591
|
+
id: string;
|
|
39592
|
+
name: string;
|
|
39593
|
+
api: "openai-completions";
|
|
39594
|
+
provider: string;
|
|
39595
|
+
baseUrl: string;
|
|
39596
|
+
compat: {
|
|
39597
|
+
supportsDeveloperRole: false;
|
|
39598
|
+
maxTokensField: "max_tokens";
|
|
39599
|
+
supportsUsageInStreaming: true;
|
|
39600
|
+
requiresSystemMessageFirst: true;
|
|
39601
|
+
};
|
|
39602
|
+
reasoning: true;
|
|
39603
|
+
thinkingLevelMap: {
|
|
39604
|
+
off: null;
|
|
39605
|
+
minimal: null;
|
|
39606
|
+
low: string;
|
|
39607
|
+
medium: string;
|
|
39608
|
+
high: string;
|
|
39609
|
+
xhigh: null;
|
|
39610
|
+
max: null;
|
|
39611
|
+
ultra: null;
|
|
39612
|
+
};
|
|
39613
|
+
input: ("image" | "text")[];
|
|
39614
|
+
cost: {
|
|
39615
|
+
input: number;
|
|
39616
|
+
output: number;
|
|
39617
|
+
cacheRead: number;
|
|
39618
|
+
cacheWrite: number;
|
|
39619
|
+
};
|
|
39620
|
+
contextWindow: number;
|
|
39621
|
+
maxTokens: number;
|
|
39622
|
+
};
|
|
39623
|
+
readonly "glm-5.1": {
|
|
39624
|
+
id: string;
|
|
39625
|
+
name: string;
|
|
39626
|
+
api: "openai-completions";
|
|
39627
|
+
provider: string;
|
|
39628
|
+
baseUrl: string;
|
|
39629
|
+
compat: {
|
|
39630
|
+
supportsDeveloperRole: false;
|
|
39631
|
+
maxTokensField: "max_tokens";
|
|
39632
|
+
supportsUsageInStreaming: true;
|
|
39633
|
+
requiresSystemMessageFirst: true;
|
|
39634
|
+
};
|
|
39635
|
+
reasoning: true;
|
|
39636
|
+
thinkingLevelMap: {
|
|
39637
|
+
off: null;
|
|
39638
|
+
minimal: null;
|
|
39639
|
+
low: null;
|
|
39640
|
+
medium: string;
|
|
39641
|
+
high: null;
|
|
39642
|
+
xhigh: null;
|
|
39643
|
+
max: null;
|
|
39644
|
+
ultra: null;
|
|
39645
|
+
};
|
|
39646
|
+
input: "text"[];
|
|
39647
|
+
cost: {
|
|
39648
|
+
input: number;
|
|
39649
|
+
output: number;
|
|
39650
|
+
cacheRead: number;
|
|
39651
|
+
cacheWrite: number;
|
|
39652
|
+
};
|
|
39653
|
+
contextWindow: number;
|
|
39654
|
+
maxTokens: number;
|
|
39655
|
+
};
|
|
39656
|
+
readonly "glm-5.2": {
|
|
39657
|
+
id: string;
|
|
39658
|
+
name: string;
|
|
39659
|
+
api: "openai-completions";
|
|
39660
|
+
provider: string;
|
|
39661
|
+
baseUrl: string;
|
|
39662
|
+
compat: {
|
|
39663
|
+
supportsDeveloperRole: false;
|
|
39664
|
+
maxTokensField: "max_tokens";
|
|
39665
|
+
supportsUsageInStreaming: true;
|
|
39666
|
+
requiresSystemMessageFirst: true;
|
|
39667
|
+
};
|
|
39668
|
+
reasoning: true;
|
|
39669
|
+
thinkingLevelMap: {
|
|
39670
|
+
off: null;
|
|
39671
|
+
minimal: null;
|
|
39672
|
+
low: null;
|
|
39673
|
+
medium: null;
|
|
39674
|
+
high: string;
|
|
39675
|
+
xhigh: string;
|
|
39676
|
+
max: string;
|
|
39677
|
+
ultra: null;
|
|
39678
|
+
};
|
|
39679
|
+
input: ("image" | "text")[];
|
|
39680
|
+
cost: {
|
|
39681
|
+
input: number;
|
|
39682
|
+
output: number;
|
|
39683
|
+
cacheRead: number;
|
|
39684
|
+
cacheWrite: number;
|
|
39685
|
+
};
|
|
39686
|
+
contextWindow: number;
|
|
39687
|
+
maxTokens: number;
|
|
39688
|
+
};
|
|
39689
|
+
readonly "glm-5.3": {
|
|
39690
|
+
id: string;
|
|
39691
|
+
name: string;
|
|
39692
|
+
api: "openai-completions";
|
|
39693
|
+
provider: string;
|
|
39694
|
+
baseUrl: string;
|
|
39695
|
+
compat: {
|
|
39696
|
+
supportsDeveloperRole: false;
|
|
39697
|
+
maxTokensField: "max_tokens";
|
|
39698
|
+
supportsUsageInStreaming: true;
|
|
39699
|
+
requiresSystemMessageFirst: true;
|
|
39700
|
+
};
|
|
39701
|
+
reasoning: true;
|
|
39702
|
+
thinkingLevelMap: {
|
|
39703
|
+
off: null;
|
|
39704
|
+
minimal: null;
|
|
39705
|
+
low: string;
|
|
39706
|
+
medium: null;
|
|
39707
|
+
high: string;
|
|
39708
|
+
xhigh: null;
|
|
39709
|
+
max: string;
|
|
39710
|
+
ultra: null;
|
|
39711
|
+
};
|
|
39712
|
+
input: ("image" | "text")[];
|
|
39713
|
+
cost: {
|
|
39714
|
+
input: number;
|
|
39715
|
+
output: number;
|
|
39716
|
+
cacheRead: number;
|
|
39717
|
+
cacheWrite: number;
|
|
39718
|
+
};
|
|
39719
|
+
contextWindow: number;
|
|
39720
|
+
maxTokens: number;
|
|
39721
|
+
};
|
|
39722
|
+
readonly "glm-5v-turbo": {
|
|
39723
|
+
id: string;
|
|
39724
|
+
name: string;
|
|
39725
|
+
api: "openai-completions";
|
|
39726
|
+
provider: string;
|
|
39727
|
+
baseUrl: string;
|
|
39728
|
+
compat: {
|
|
39729
|
+
supportsDeveloperRole: false;
|
|
39730
|
+
maxTokensField: "max_tokens";
|
|
39731
|
+
supportsUsageInStreaming: true;
|
|
39732
|
+
requiresSystemMessageFirst: true;
|
|
39733
|
+
};
|
|
39734
|
+
reasoning: true;
|
|
39735
|
+
thinkingLevelMap: {
|
|
39736
|
+
off: null;
|
|
39737
|
+
minimal: null;
|
|
39738
|
+
low: null;
|
|
39739
|
+
medium: string;
|
|
39740
|
+
high: null;
|
|
39741
|
+
xhigh: null;
|
|
39742
|
+
max: null;
|
|
39743
|
+
ultra: null;
|
|
39744
|
+
};
|
|
39745
|
+
input: ("image" | "text")[];
|
|
39746
|
+
cost: {
|
|
39747
|
+
input: number;
|
|
39748
|
+
output: number;
|
|
39749
|
+
cacheRead: number;
|
|
39750
|
+
cacheWrite: number;
|
|
39751
|
+
};
|
|
39752
|
+
contextWindow: number;
|
|
39753
|
+
maxTokens: number;
|
|
39754
|
+
};
|
|
39755
|
+
readonly "gpt-5.3-codex": {
|
|
39756
|
+
id: string;
|
|
39757
|
+
name: string;
|
|
39758
|
+
api: "openai-completions";
|
|
39759
|
+
provider: string;
|
|
39760
|
+
baseUrl: string;
|
|
39761
|
+
compat: {
|
|
39762
|
+
supportsDeveloperRole: false;
|
|
39763
|
+
maxTokensField: "max_tokens";
|
|
39764
|
+
supportsUsageInStreaming: true;
|
|
39765
|
+
requiresSystemMessageFirst: true;
|
|
39766
|
+
};
|
|
39767
|
+
reasoning: true;
|
|
39768
|
+
thinkingLevelMap: {
|
|
39769
|
+
off: null;
|
|
39770
|
+
minimal: null;
|
|
39771
|
+
low: null;
|
|
39772
|
+
medium: null;
|
|
39773
|
+
high: string;
|
|
39774
|
+
xhigh: null;
|
|
39775
|
+
max: null;
|
|
39776
|
+
ultra: null;
|
|
39777
|
+
};
|
|
39778
|
+
input: ("image" | "text")[];
|
|
39779
|
+
cost: {
|
|
39780
|
+
input: number;
|
|
39781
|
+
output: number;
|
|
39782
|
+
cacheRead: number;
|
|
39783
|
+
cacheWrite: number;
|
|
39784
|
+
};
|
|
39785
|
+
contextWindow: number;
|
|
39786
|
+
maxTokens: number;
|
|
39787
|
+
};
|
|
39788
|
+
readonly "gpt-5.4": {
|
|
39789
|
+
id: string;
|
|
39790
|
+
name: string;
|
|
39791
|
+
api: "openai-completions";
|
|
39792
|
+
provider: string;
|
|
39793
|
+
baseUrl: string;
|
|
39794
|
+
compat: {
|
|
39795
|
+
supportsDeveloperRole: false;
|
|
39796
|
+
maxTokensField: "max_tokens";
|
|
39797
|
+
supportsUsageInStreaming: true;
|
|
39798
|
+
requiresSystemMessageFirst: true;
|
|
39799
|
+
};
|
|
39800
|
+
reasoning: true;
|
|
39801
|
+
thinkingLevelMap: {
|
|
39802
|
+
off: null;
|
|
39803
|
+
minimal: null;
|
|
39804
|
+
low: null;
|
|
39805
|
+
medium: null;
|
|
39806
|
+
high: string;
|
|
39807
|
+
xhigh: null;
|
|
39808
|
+
max: null;
|
|
39809
|
+
ultra: null;
|
|
39810
|
+
};
|
|
39811
|
+
input: ("image" | "text")[];
|
|
39812
|
+
cost: {
|
|
39813
|
+
input: number;
|
|
39814
|
+
output: number;
|
|
39815
|
+
cacheRead: number;
|
|
39816
|
+
cacheWrite: number;
|
|
39817
|
+
};
|
|
39818
|
+
contextWindow: number;
|
|
39819
|
+
maxTokens: number;
|
|
39820
|
+
};
|
|
39821
|
+
readonly "gpt-5.5": {
|
|
39822
|
+
id: string;
|
|
39823
|
+
name: string;
|
|
39824
|
+
api: "openai-completions";
|
|
39825
|
+
provider: string;
|
|
39826
|
+
baseUrl: string;
|
|
39827
|
+
compat: {
|
|
39828
|
+
supportsDeveloperRole: false;
|
|
39829
|
+
maxTokensField: "max_tokens";
|
|
39830
|
+
supportsUsageInStreaming: true;
|
|
39831
|
+
requiresSystemMessageFirst: true;
|
|
39832
|
+
};
|
|
39833
|
+
reasoning: true;
|
|
39834
|
+
thinkingLevelMap: {
|
|
39835
|
+
off: null;
|
|
39836
|
+
minimal: null;
|
|
39837
|
+
low: null;
|
|
39838
|
+
medium: null;
|
|
39839
|
+
high: string;
|
|
39840
|
+
xhigh: null;
|
|
39841
|
+
max: null;
|
|
39842
|
+
ultra: null;
|
|
39843
|
+
};
|
|
39844
|
+
input: ("image" | "text")[];
|
|
39845
|
+
cost: {
|
|
39846
|
+
input: number;
|
|
39847
|
+
output: number;
|
|
39848
|
+
cacheRead: number;
|
|
39849
|
+
cacheWrite: number;
|
|
39850
|
+
};
|
|
39851
|
+
contextWindow: number;
|
|
39852
|
+
maxTokens: number;
|
|
39853
|
+
};
|
|
39854
|
+
readonly "gpt-5.6-luna": {
|
|
39855
|
+
id: string;
|
|
39856
|
+
name: string;
|
|
39857
|
+
api: "openai-completions";
|
|
39858
|
+
provider: string;
|
|
39859
|
+
baseUrl: string;
|
|
39860
|
+
compat: {
|
|
39861
|
+
supportsDeveloperRole: false;
|
|
39862
|
+
maxTokensField: "max_tokens";
|
|
39863
|
+
supportsUsageInStreaming: true;
|
|
39864
|
+
requiresSystemMessageFirst: true;
|
|
39865
|
+
};
|
|
39866
|
+
reasoning: true;
|
|
39867
|
+
thinkingLevelMap: {
|
|
39868
|
+
off: null;
|
|
39869
|
+
minimal: null;
|
|
39870
|
+
low: string;
|
|
39871
|
+
medium: string;
|
|
39872
|
+
high: string;
|
|
39873
|
+
xhigh: string;
|
|
39874
|
+
max: string;
|
|
39875
|
+
ultra: null;
|
|
39876
|
+
};
|
|
39877
|
+
input: ("image" | "text")[];
|
|
39878
|
+
cost: {
|
|
39879
|
+
input: number;
|
|
39880
|
+
output: number;
|
|
39881
|
+
cacheRead: number;
|
|
39882
|
+
cacheWrite: number;
|
|
39883
|
+
};
|
|
39884
|
+
contextWindow: number;
|
|
39885
|
+
maxTokens: number;
|
|
39886
|
+
};
|
|
39887
|
+
readonly "gpt-5.6-sol": {
|
|
39888
|
+
id: string;
|
|
39889
|
+
name: string;
|
|
39890
|
+
api: "openai-completions";
|
|
39891
|
+
provider: string;
|
|
39892
|
+
baseUrl: string;
|
|
39893
|
+
compat: {
|
|
39894
|
+
supportsDeveloperRole: false;
|
|
39895
|
+
maxTokensField: "max_tokens";
|
|
39896
|
+
supportsUsageInStreaming: true;
|
|
39897
|
+
requiresSystemMessageFirst: true;
|
|
39898
|
+
};
|
|
39899
|
+
reasoning: true;
|
|
39900
|
+
thinkingLevelMap: {
|
|
39901
|
+
off: null;
|
|
39902
|
+
minimal: null;
|
|
39903
|
+
low: string;
|
|
39904
|
+
medium: string;
|
|
39905
|
+
high: string;
|
|
39906
|
+
xhigh: string;
|
|
39907
|
+
max: string;
|
|
39908
|
+
ultra: null;
|
|
39909
|
+
};
|
|
39910
|
+
input: ("image" | "text")[];
|
|
39911
|
+
cost: {
|
|
39912
|
+
input: number;
|
|
39913
|
+
output: number;
|
|
39914
|
+
cacheRead: number;
|
|
39915
|
+
cacheWrite: number;
|
|
39916
|
+
};
|
|
39917
|
+
contextWindow: number;
|
|
39918
|
+
maxTokens: number;
|
|
39919
|
+
};
|
|
39920
|
+
readonly "gpt-5.6-terra": {
|
|
39921
|
+
id: string;
|
|
39922
|
+
name: string;
|
|
39923
|
+
api: "openai-completions";
|
|
39924
|
+
provider: string;
|
|
39925
|
+
baseUrl: string;
|
|
39926
|
+
compat: {
|
|
39927
|
+
supportsDeveloperRole: false;
|
|
39928
|
+
maxTokensField: "max_tokens";
|
|
39929
|
+
supportsUsageInStreaming: true;
|
|
39930
|
+
requiresSystemMessageFirst: true;
|
|
39931
|
+
};
|
|
39932
|
+
reasoning: true;
|
|
39933
|
+
thinkingLevelMap: {
|
|
39934
|
+
off: null;
|
|
39935
|
+
minimal: null;
|
|
39936
|
+
low: string;
|
|
39937
|
+
medium: string;
|
|
39938
|
+
high: string;
|
|
39939
|
+
xhigh: string;
|
|
39940
|
+
max: string;
|
|
39941
|
+
ultra: null;
|
|
39942
|
+
};
|
|
39943
|
+
input: ("image" | "text")[];
|
|
39944
|
+
cost: {
|
|
39945
|
+
input: number;
|
|
39946
|
+
output: number;
|
|
39947
|
+
cacheRead: number;
|
|
39948
|
+
cacheWrite: number;
|
|
39949
|
+
};
|
|
39950
|
+
contextWindow: number;
|
|
39951
|
+
maxTokens: number;
|
|
39952
|
+
};
|
|
39953
|
+
readonly "gpt-6-astra": {
|
|
39954
|
+
id: string;
|
|
39955
|
+
name: string;
|
|
39956
|
+
api: "openai-completions";
|
|
39957
|
+
provider: string;
|
|
39958
|
+
baseUrl: string;
|
|
39959
|
+
compat: {
|
|
39960
|
+
supportsDeveloperRole: false;
|
|
39961
|
+
maxTokensField: "max_tokens";
|
|
39962
|
+
supportsUsageInStreaming: true;
|
|
39963
|
+
requiresSystemMessageFirst: true;
|
|
39964
|
+
};
|
|
39965
|
+
reasoning: true;
|
|
39966
|
+
thinkingLevelMap: {
|
|
39967
|
+
off: null;
|
|
39968
|
+
minimal: null;
|
|
39969
|
+
low: string;
|
|
39970
|
+
medium: string;
|
|
39971
|
+
high: string;
|
|
39972
|
+
xhigh: string;
|
|
39973
|
+
max: string;
|
|
39974
|
+
ultra: null;
|
|
39975
|
+
};
|
|
39976
|
+
input: ("image" | "text")[];
|
|
39977
|
+
cost: {
|
|
39978
|
+
input: number;
|
|
39979
|
+
output: number;
|
|
39980
|
+
cacheRead: number;
|
|
39981
|
+
cacheWrite: number;
|
|
39982
|
+
};
|
|
39983
|
+
contextWindow: number;
|
|
39984
|
+
maxTokens: number;
|
|
39985
|
+
};
|
|
39986
|
+
readonly "grok-4.6": {
|
|
39987
|
+
id: string;
|
|
39988
|
+
name: string;
|
|
39989
|
+
api: "openai-completions";
|
|
39990
|
+
provider: string;
|
|
39991
|
+
baseUrl: string;
|
|
39992
|
+
compat: {
|
|
39993
|
+
supportsDeveloperRole: false;
|
|
39994
|
+
maxTokensField: "max_tokens";
|
|
39995
|
+
supportsUsageInStreaming: true;
|
|
39996
|
+
requiresSystemMessageFirst: true;
|
|
39997
|
+
};
|
|
39998
|
+
reasoning: true;
|
|
39999
|
+
thinkingLevelMap: {
|
|
40000
|
+
off: null;
|
|
40001
|
+
minimal: null;
|
|
40002
|
+
low: string;
|
|
40003
|
+
medium: string;
|
|
40004
|
+
high: string;
|
|
40005
|
+
xhigh: string;
|
|
40006
|
+
max: string;
|
|
40007
|
+
ultra: null;
|
|
40008
|
+
};
|
|
40009
|
+
input: ("image" | "text")[];
|
|
40010
|
+
cost: {
|
|
40011
|
+
input: number;
|
|
40012
|
+
output: number;
|
|
40013
|
+
cacheRead: number;
|
|
40014
|
+
cacheWrite: number;
|
|
40015
|
+
};
|
|
40016
|
+
contextWindow: number;
|
|
40017
|
+
maxTokens: number;
|
|
40018
|
+
};
|
|
40019
|
+
readonly hy3: {
|
|
40020
|
+
id: string;
|
|
40021
|
+
name: string;
|
|
40022
|
+
api: "openai-completions";
|
|
40023
|
+
provider: string;
|
|
40024
|
+
baseUrl: string;
|
|
40025
|
+
compat: {
|
|
40026
|
+
supportsDeveloperRole: false;
|
|
40027
|
+
maxTokensField: "max_tokens";
|
|
40028
|
+
supportsUsageInStreaming: true;
|
|
40029
|
+
requiresSystemMessageFirst: true;
|
|
40030
|
+
};
|
|
40031
|
+
reasoning: true;
|
|
40032
|
+
thinkingLevelMap: {
|
|
40033
|
+
off: null;
|
|
40034
|
+
minimal: null;
|
|
40035
|
+
low: string;
|
|
40036
|
+
medium: null;
|
|
40037
|
+
high: string;
|
|
40038
|
+
xhigh: null;
|
|
40039
|
+
max: null;
|
|
40040
|
+
ultra: null;
|
|
40041
|
+
};
|
|
40042
|
+
input: ("image" | "text")[];
|
|
40043
|
+
cost: {
|
|
40044
|
+
input: number;
|
|
40045
|
+
output: number;
|
|
40046
|
+
cacheRead: number;
|
|
40047
|
+
cacheWrite: number;
|
|
40048
|
+
};
|
|
40049
|
+
contextWindow: number;
|
|
40050
|
+
maxTokens: number;
|
|
40051
|
+
};
|
|
40052
|
+
readonly "hy4-preview": {
|
|
40053
|
+
id: string;
|
|
40054
|
+
name: string;
|
|
40055
|
+
api: "openai-completions";
|
|
40056
|
+
provider: string;
|
|
40057
|
+
baseUrl: string;
|
|
40058
|
+
compat: {
|
|
40059
|
+
supportsDeveloperRole: false;
|
|
40060
|
+
maxTokensField: "max_tokens";
|
|
40061
|
+
supportsUsageInStreaming: true;
|
|
40062
|
+
requiresSystemMessageFirst: true;
|
|
40063
|
+
};
|
|
40064
|
+
reasoning: true;
|
|
40065
|
+
thinkingLevelMap: {
|
|
40066
|
+
off: null;
|
|
40067
|
+
minimal: null;
|
|
40068
|
+
low: string;
|
|
40069
|
+
medium: null;
|
|
40070
|
+
high: string;
|
|
40071
|
+
xhigh: null;
|
|
40072
|
+
max: null;
|
|
40073
|
+
ultra: null;
|
|
40074
|
+
};
|
|
40075
|
+
input: "text"[];
|
|
40076
|
+
cost: {
|
|
40077
|
+
input: number;
|
|
40078
|
+
output: number;
|
|
40079
|
+
cacheRead: number;
|
|
40080
|
+
cacheWrite: number;
|
|
40081
|
+
};
|
|
40082
|
+
contextWindow: number;
|
|
40083
|
+
maxTokens: number;
|
|
40084
|
+
};
|
|
40085
|
+
readonly "kimi-k2.5": {
|
|
40086
|
+
id: string;
|
|
40087
|
+
name: string;
|
|
40088
|
+
api: "openai-completions";
|
|
40089
|
+
provider: string;
|
|
40090
|
+
baseUrl: string;
|
|
40091
|
+
compat: {
|
|
40092
|
+
supportsDeveloperRole: false;
|
|
40093
|
+
maxTokensField: "max_tokens";
|
|
40094
|
+
supportsUsageInStreaming: true;
|
|
40095
|
+
requiresSystemMessageFirst: true;
|
|
40096
|
+
};
|
|
40097
|
+
reasoning: true;
|
|
40098
|
+
thinkingLevelMap: {
|
|
40099
|
+
off: null;
|
|
40100
|
+
minimal: null;
|
|
40101
|
+
low: null;
|
|
40102
|
+
medium: null;
|
|
40103
|
+
high: string;
|
|
40104
|
+
xhigh: null;
|
|
40105
|
+
max: null;
|
|
40106
|
+
ultra: null;
|
|
40107
|
+
};
|
|
40108
|
+
input: ("image" | "text")[];
|
|
40109
|
+
cost: {
|
|
40110
|
+
input: number;
|
|
40111
|
+
output: number;
|
|
40112
|
+
cacheRead: number;
|
|
40113
|
+
cacheWrite: number;
|
|
40114
|
+
};
|
|
40115
|
+
contextWindow: number;
|
|
40116
|
+
maxTokens: number;
|
|
40117
|
+
};
|
|
40118
|
+
readonly "kimi-k2.6": {
|
|
40119
|
+
id: string;
|
|
40120
|
+
name: string;
|
|
40121
|
+
api: "openai-completions";
|
|
40122
|
+
provider: string;
|
|
40123
|
+
baseUrl: string;
|
|
40124
|
+
compat: {
|
|
40125
|
+
supportsDeveloperRole: false;
|
|
40126
|
+
maxTokensField: "max_tokens";
|
|
40127
|
+
supportsUsageInStreaming: true;
|
|
40128
|
+
requiresSystemMessageFirst: true;
|
|
40129
|
+
};
|
|
40130
|
+
reasoning: true;
|
|
40131
|
+
thinkingLevelMap: {
|
|
40132
|
+
off: null;
|
|
40133
|
+
minimal: null;
|
|
40134
|
+
low: null;
|
|
40135
|
+
medium: string;
|
|
40136
|
+
high: null;
|
|
40137
|
+
xhigh: null;
|
|
40138
|
+
max: null;
|
|
40139
|
+
ultra: null;
|
|
40140
|
+
};
|
|
40141
|
+
input: ("image" | "text")[];
|
|
40142
|
+
cost: {
|
|
40143
|
+
input: number;
|
|
40144
|
+
output: number;
|
|
40145
|
+
cacheRead: number;
|
|
40146
|
+
cacheWrite: number;
|
|
40147
|
+
};
|
|
40148
|
+
contextWindow: number;
|
|
40149
|
+
maxTokens: number;
|
|
40150
|
+
};
|
|
40151
|
+
readonly "kimi-k3": {
|
|
40152
|
+
id: string;
|
|
40153
|
+
name: string;
|
|
40154
|
+
api: "openai-completions";
|
|
40155
|
+
provider: string;
|
|
40156
|
+
baseUrl: string;
|
|
40157
|
+
compat: {
|
|
40158
|
+
supportsDeveloperRole: false;
|
|
40159
|
+
maxTokensField: "max_tokens";
|
|
40160
|
+
supportsUsageInStreaming: true;
|
|
40161
|
+
requiresSystemMessageFirst: true;
|
|
40162
|
+
};
|
|
40163
|
+
reasoning: true;
|
|
40164
|
+
thinkingLevelMap: {
|
|
40165
|
+
off: null;
|
|
40166
|
+
minimal: null;
|
|
40167
|
+
low: null;
|
|
40168
|
+
medium: string;
|
|
40169
|
+
high: null;
|
|
40170
|
+
xhigh: null;
|
|
40171
|
+
max: null;
|
|
40172
|
+
ultra: null;
|
|
40173
|
+
};
|
|
40174
|
+
input: ("image" | "text")[];
|
|
40175
|
+
cost: {
|
|
40176
|
+
input: number;
|
|
40177
|
+
output: number;
|
|
40178
|
+
cacheRead: number;
|
|
40179
|
+
cacheWrite: number;
|
|
40180
|
+
};
|
|
40181
|
+
contextWindow: number;
|
|
40182
|
+
maxTokens: number;
|
|
40183
|
+
};
|
|
40184
|
+
readonly "minimax-m3": {
|
|
40185
|
+
id: string;
|
|
40186
|
+
name: string;
|
|
40187
|
+
api: "openai-completions";
|
|
40188
|
+
provider: string;
|
|
40189
|
+
baseUrl: string;
|
|
40190
|
+
compat: {
|
|
40191
|
+
supportsDeveloperRole: false;
|
|
40192
|
+
maxTokensField: "max_tokens";
|
|
40193
|
+
supportsUsageInStreaming: true;
|
|
40194
|
+
requiresSystemMessageFirst: true;
|
|
40195
|
+
};
|
|
40196
|
+
reasoning: true;
|
|
40197
|
+
thinkingLevelMap: {
|
|
40198
|
+
off: null;
|
|
40199
|
+
minimal: null;
|
|
40200
|
+
low: null;
|
|
40201
|
+
medium: string;
|
|
40202
|
+
high: null;
|
|
40203
|
+
xhigh: null;
|
|
40204
|
+
max: null;
|
|
40205
|
+
ultra: null;
|
|
40206
|
+
};
|
|
40207
|
+
input: ("image" | "text")[];
|
|
40208
|
+
cost: {
|
|
40209
|
+
input: number;
|
|
40210
|
+
output: number;
|
|
40211
|
+
cacheRead: number;
|
|
40212
|
+
cacheWrite: number;
|
|
40213
|
+
};
|
|
40214
|
+
contextWindow: number;
|
|
40215
|
+
maxTokens: number;
|
|
40216
|
+
};
|
|
40217
|
+
};
|
|
38369
40218
|
readonly xai: {
|
|
38370
40219
|
readonly "grok-3": {
|
|
38371
40220
|
id: string;
|
|
@@ -38489,6 +40338,26 @@ export declare const MODELS: {
|
|
|
38489
40338
|
contextWindow: number;
|
|
38490
40339
|
maxTokens: number;
|
|
38491
40340
|
};
|
|
40341
|
+
readonly "grok-4.7": {
|
|
40342
|
+
id: string;
|
|
40343
|
+
name: string;
|
|
40344
|
+
api: "openai-completions";
|
|
40345
|
+
provider: string;
|
|
40346
|
+
baseUrl: string;
|
|
40347
|
+
reasoning: true;
|
|
40348
|
+
thinkingLevelMap: {
|
|
40349
|
+
xhigh: string;
|
|
40350
|
+
};
|
|
40351
|
+
input: ("image" | "text")[];
|
|
40352
|
+
cost: {
|
|
40353
|
+
input: number;
|
|
40354
|
+
output: number;
|
|
40355
|
+
cacheRead: number;
|
|
40356
|
+
cacheWrite: number;
|
|
40357
|
+
};
|
|
40358
|
+
contextWindow: number;
|
|
40359
|
+
maxTokens: number;
|
|
40360
|
+
};
|
|
38492
40361
|
readonly "grok-build-0.1": {
|
|
38493
40362
|
id: string;
|
|
38494
40363
|
name: string;
|
|
@@ -38651,6 +40520,69 @@ export declare const MODELS: {
|
|
|
38651
40520
|
contextWindow: number;
|
|
38652
40521
|
maxTokens: number;
|
|
38653
40522
|
};
|
|
40523
|
+
readonly "mimo-v2.6-flash": {
|
|
40524
|
+
id: string;
|
|
40525
|
+
name: string;
|
|
40526
|
+
api: "openai-completions";
|
|
40527
|
+
provider: string;
|
|
40528
|
+
baseUrl: string;
|
|
40529
|
+
compat: {
|
|
40530
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40531
|
+
thinkingFormat: "deepseek";
|
|
40532
|
+
};
|
|
40533
|
+
reasoning: true;
|
|
40534
|
+
input: ("image" | "text")[];
|
|
40535
|
+
cost: {
|
|
40536
|
+
input: number;
|
|
40537
|
+
output: number;
|
|
40538
|
+
cacheRead: number;
|
|
40539
|
+
cacheWrite: number;
|
|
40540
|
+
};
|
|
40541
|
+
contextWindow: number;
|
|
40542
|
+
maxTokens: number;
|
|
40543
|
+
};
|
|
40544
|
+
readonly "mimo-v2.6-pro": {
|
|
40545
|
+
id: string;
|
|
40546
|
+
name: string;
|
|
40547
|
+
api: "openai-completions";
|
|
40548
|
+
provider: string;
|
|
40549
|
+
baseUrl: string;
|
|
40550
|
+
compat: {
|
|
40551
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40552
|
+
thinkingFormat: "deepseek";
|
|
40553
|
+
};
|
|
40554
|
+
reasoning: true;
|
|
40555
|
+
input: ("image" | "text")[];
|
|
40556
|
+
cost: {
|
|
40557
|
+
input: number;
|
|
40558
|
+
output: number;
|
|
40559
|
+
cacheRead: number;
|
|
40560
|
+
cacheWrite: number;
|
|
40561
|
+
};
|
|
40562
|
+
contextWindow: number;
|
|
40563
|
+
maxTokens: number;
|
|
40564
|
+
};
|
|
40565
|
+
readonly "mimo-v2.6-pro-ultraspeed": {
|
|
40566
|
+
id: string;
|
|
40567
|
+
name: string;
|
|
40568
|
+
api: "openai-completions";
|
|
40569
|
+
provider: string;
|
|
40570
|
+
baseUrl: string;
|
|
40571
|
+
compat: {
|
|
40572
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40573
|
+
thinkingFormat: "deepseek";
|
|
40574
|
+
};
|
|
40575
|
+
reasoning: true;
|
|
40576
|
+
input: ("image" | "text")[];
|
|
40577
|
+
cost: {
|
|
40578
|
+
input: number;
|
|
40579
|
+
output: number;
|
|
40580
|
+
cacheRead: number;
|
|
40581
|
+
cacheWrite: number;
|
|
40582
|
+
};
|
|
40583
|
+
contextWindow: number;
|
|
40584
|
+
maxTokens: number;
|
|
40585
|
+
};
|
|
38654
40586
|
};
|
|
38655
40587
|
readonly "xiaomi-token-plan-ams": {
|
|
38656
40588
|
readonly "mimo-v2-omni": {
|
|
@@ -38758,6 +40690,69 @@ export declare const MODELS: {
|
|
|
38758
40690
|
contextWindow: number;
|
|
38759
40691
|
maxTokens: number;
|
|
38760
40692
|
};
|
|
40693
|
+
readonly "mimo-v2.6-flash": {
|
|
40694
|
+
id: string;
|
|
40695
|
+
name: string;
|
|
40696
|
+
api: "openai-completions";
|
|
40697
|
+
provider: string;
|
|
40698
|
+
baseUrl: string;
|
|
40699
|
+
compat: {
|
|
40700
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40701
|
+
thinkingFormat: "deepseek";
|
|
40702
|
+
};
|
|
40703
|
+
reasoning: true;
|
|
40704
|
+
input: ("image" | "text")[];
|
|
40705
|
+
cost: {
|
|
40706
|
+
input: number;
|
|
40707
|
+
output: number;
|
|
40708
|
+
cacheRead: number;
|
|
40709
|
+
cacheWrite: number;
|
|
40710
|
+
};
|
|
40711
|
+
contextWindow: number;
|
|
40712
|
+
maxTokens: number;
|
|
40713
|
+
};
|
|
40714
|
+
readonly "mimo-v2.6-pro": {
|
|
40715
|
+
id: string;
|
|
40716
|
+
name: string;
|
|
40717
|
+
api: "openai-completions";
|
|
40718
|
+
provider: string;
|
|
40719
|
+
baseUrl: string;
|
|
40720
|
+
compat: {
|
|
40721
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40722
|
+
thinkingFormat: "deepseek";
|
|
40723
|
+
};
|
|
40724
|
+
reasoning: true;
|
|
40725
|
+
input: ("image" | "text")[];
|
|
40726
|
+
cost: {
|
|
40727
|
+
input: number;
|
|
40728
|
+
output: number;
|
|
40729
|
+
cacheRead: number;
|
|
40730
|
+
cacheWrite: number;
|
|
40731
|
+
};
|
|
40732
|
+
contextWindow: number;
|
|
40733
|
+
maxTokens: number;
|
|
40734
|
+
};
|
|
40735
|
+
readonly "mimo-v2.6-pro-ultraspeed": {
|
|
40736
|
+
id: string;
|
|
40737
|
+
name: string;
|
|
40738
|
+
api: "openai-completions";
|
|
40739
|
+
provider: string;
|
|
40740
|
+
baseUrl: string;
|
|
40741
|
+
compat: {
|
|
40742
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40743
|
+
thinkingFormat: "deepseek";
|
|
40744
|
+
};
|
|
40745
|
+
reasoning: true;
|
|
40746
|
+
input: ("image" | "text")[];
|
|
40747
|
+
cost: {
|
|
40748
|
+
input: number;
|
|
40749
|
+
output: number;
|
|
40750
|
+
cacheRead: number;
|
|
40751
|
+
cacheWrite: number;
|
|
40752
|
+
};
|
|
40753
|
+
contextWindow: number;
|
|
40754
|
+
maxTokens: number;
|
|
40755
|
+
};
|
|
38761
40756
|
};
|
|
38762
40757
|
readonly "xiaomi-token-plan-cn": {
|
|
38763
40758
|
readonly "mimo-v2-omni": {
|
|
@@ -38865,6 +40860,69 @@ export declare const MODELS: {
|
|
|
38865
40860
|
contextWindow: number;
|
|
38866
40861
|
maxTokens: number;
|
|
38867
40862
|
};
|
|
40863
|
+
readonly "mimo-v2.6-flash": {
|
|
40864
|
+
id: string;
|
|
40865
|
+
name: string;
|
|
40866
|
+
api: "openai-completions";
|
|
40867
|
+
provider: string;
|
|
40868
|
+
baseUrl: string;
|
|
40869
|
+
compat: {
|
|
40870
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40871
|
+
thinkingFormat: "deepseek";
|
|
40872
|
+
};
|
|
40873
|
+
reasoning: true;
|
|
40874
|
+
input: ("image" | "text")[];
|
|
40875
|
+
cost: {
|
|
40876
|
+
input: number;
|
|
40877
|
+
output: number;
|
|
40878
|
+
cacheRead: number;
|
|
40879
|
+
cacheWrite: number;
|
|
40880
|
+
};
|
|
40881
|
+
contextWindow: number;
|
|
40882
|
+
maxTokens: number;
|
|
40883
|
+
};
|
|
40884
|
+
readonly "mimo-v2.6-pro": {
|
|
40885
|
+
id: string;
|
|
40886
|
+
name: string;
|
|
40887
|
+
api: "openai-completions";
|
|
40888
|
+
provider: string;
|
|
40889
|
+
baseUrl: string;
|
|
40890
|
+
compat: {
|
|
40891
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40892
|
+
thinkingFormat: "deepseek";
|
|
40893
|
+
};
|
|
40894
|
+
reasoning: true;
|
|
40895
|
+
input: ("image" | "text")[];
|
|
40896
|
+
cost: {
|
|
40897
|
+
input: number;
|
|
40898
|
+
output: number;
|
|
40899
|
+
cacheRead: number;
|
|
40900
|
+
cacheWrite: number;
|
|
40901
|
+
};
|
|
40902
|
+
contextWindow: number;
|
|
40903
|
+
maxTokens: number;
|
|
40904
|
+
};
|
|
40905
|
+
readonly "mimo-v2.6-pro-ultraspeed": {
|
|
40906
|
+
id: string;
|
|
40907
|
+
name: string;
|
|
40908
|
+
api: "openai-completions";
|
|
40909
|
+
provider: string;
|
|
40910
|
+
baseUrl: string;
|
|
40911
|
+
compat: {
|
|
40912
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
40913
|
+
thinkingFormat: "deepseek";
|
|
40914
|
+
};
|
|
40915
|
+
reasoning: true;
|
|
40916
|
+
input: ("image" | "text")[];
|
|
40917
|
+
cost: {
|
|
40918
|
+
input: number;
|
|
40919
|
+
output: number;
|
|
40920
|
+
cacheRead: number;
|
|
40921
|
+
cacheWrite: number;
|
|
40922
|
+
};
|
|
40923
|
+
contextWindow: number;
|
|
40924
|
+
maxTokens: number;
|
|
40925
|
+
};
|
|
38868
40926
|
};
|
|
38869
40927
|
readonly "xiaomi-token-plan-sgp": {
|
|
38870
40928
|
readonly "mimo-v2-omni": {
|
|
@@ -38972,6 +41030,69 @@ export declare const MODELS: {
|
|
|
38972
41030
|
contextWindow: number;
|
|
38973
41031
|
maxTokens: number;
|
|
38974
41032
|
};
|
|
41033
|
+
readonly "mimo-v2.6-flash": {
|
|
41034
|
+
id: string;
|
|
41035
|
+
name: string;
|
|
41036
|
+
api: "openai-completions";
|
|
41037
|
+
provider: string;
|
|
41038
|
+
baseUrl: string;
|
|
41039
|
+
compat: {
|
|
41040
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
41041
|
+
thinkingFormat: "deepseek";
|
|
41042
|
+
};
|
|
41043
|
+
reasoning: true;
|
|
41044
|
+
input: ("image" | "text")[];
|
|
41045
|
+
cost: {
|
|
41046
|
+
input: number;
|
|
41047
|
+
output: number;
|
|
41048
|
+
cacheRead: number;
|
|
41049
|
+
cacheWrite: number;
|
|
41050
|
+
};
|
|
41051
|
+
contextWindow: number;
|
|
41052
|
+
maxTokens: number;
|
|
41053
|
+
};
|
|
41054
|
+
readonly "mimo-v2.6-pro": {
|
|
41055
|
+
id: string;
|
|
41056
|
+
name: string;
|
|
41057
|
+
api: "openai-completions";
|
|
41058
|
+
provider: string;
|
|
41059
|
+
baseUrl: string;
|
|
41060
|
+
compat: {
|
|
41061
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
41062
|
+
thinkingFormat: "deepseek";
|
|
41063
|
+
};
|
|
41064
|
+
reasoning: true;
|
|
41065
|
+
input: ("image" | "text")[];
|
|
41066
|
+
cost: {
|
|
41067
|
+
input: number;
|
|
41068
|
+
output: number;
|
|
41069
|
+
cacheRead: number;
|
|
41070
|
+
cacheWrite: number;
|
|
41071
|
+
};
|
|
41072
|
+
contextWindow: number;
|
|
41073
|
+
maxTokens: number;
|
|
41074
|
+
};
|
|
41075
|
+
readonly "mimo-v2.6-pro-ultraspeed": {
|
|
41076
|
+
id: string;
|
|
41077
|
+
name: string;
|
|
41078
|
+
api: "openai-completions";
|
|
41079
|
+
provider: string;
|
|
41080
|
+
baseUrl: string;
|
|
41081
|
+
compat: {
|
|
41082
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
41083
|
+
thinkingFormat: "deepseek";
|
|
41084
|
+
};
|
|
41085
|
+
reasoning: true;
|
|
41086
|
+
input: ("image" | "text")[];
|
|
41087
|
+
cost: {
|
|
41088
|
+
input: number;
|
|
41089
|
+
output: number;
|
|
41090
|
+
cacheRead: number;
|
|
41091
|
+
cacheWrite: number;
|
|
41092
|
+
};
|
|
41093
|
+
contextWindow: number;
|
|
41094
|
+
maxTokens: number;
|
|
41095
|
+
};
|
|
38975
41096
|
};
|
|
38976
41097
|
readonly zai: {
|
|
38977
41098
|
readonly "glm-4.7": {
|