omk-ai 1.2.0 → 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/dist/models.d.ts.map +1 -1
- package/dist/models.generated.d.ts +1463 -362
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +1299 -411
- 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.d.ts.map +1 -1
- package/dist/providers/openai-completions.js +15 -25
- 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 +4 -14
- 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/oauth/kimi.d.ts.map +1 -1
- package/dist/utils/oauth/kimi.js +3 -1
- package/dist/utils/oauth/kimi.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;
|
|
@@ -24155,6 +24487,58 @@ export declare const MODELS: {
|
|
|
24155
24487
|
contextWindow: number;
|
|
24156
24488
|
maxTokens: number;
|
|
24157
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
|
+
};
|
|
24158
24542
|
readonly "grok-4.5": {
|
|
24159
24543
|
id: string;
|
|
24160
24544
|
name: string;
|
|
@@ -24304,7 +24688,7 @@ export declare const MODELS: {
|
|
|
24304
24688
|
contextWindow: number;
|
|
24305
24689
|
maxTokens: number;
|
|
24306
24690
|
};
|
|
24307
|
-
readonly "mimo-v2.
|
|
24691
|
+
readonly "mimo-v2.6-flash-free": {
|
|
24308
24692
|
id: string;
|
|
24309
24693
|
name: string;
|
|
24310
24694
|
api: "openai-completions";
|
|
@@ -24827,6 +25211,26 @@ export declare const MODELS: {
|
|
|
24827
25211
|
contextWindow: number;
|
|
24828
25212
|
maxTokens: number;
|
|
24829
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
|
+
};
|
|
24830
25234
|
readonly hy3: {
|
|
24831
25235
|
id: string;
|
|
24832
25236
|
name: string;
|
|
@@ -24972,6 +25376,40 @@ export declare const MODELS: {
|
|
|
24972
25376
|
contextWindow: number;
|
|
24973
25377
|
maxTokens: number;
|
|
24974
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
|
+
};
|
|
24975
25413
|
readonly "minimax-m2.7": {
|
|
24976
25414
|
id: string;
|
|
24977
25415
|
name: string;
|
|
@@ -25472,7 +25910,7 @@ export declare const MODELS: {
|
|
|
25472
25910
|
contextWindow: number;
|
|
25473
25911
|
maxTokens: number;
|
|
25474
25912
|
};
|
|
25475
|
-
readonly "anthropic/claude-opus-4": {
|
|
25913
|
+
readonly "anthropic/claude-opus-4.1": {
|
|
25476
25914
|
id: string;
|
|
25477
25915
|
name: string;
|
|
25478
25916
|
api: "openai-completions";
|
|
@@ -25489,7 +25927,7 @@ export declare const MODELS: {
|
|
|
25489
25927
|
contextWindow: number;
|
|
25490
25928
|
maxTokens: number;
|
|
25491
25929
|
};
|
|
25492
|
-
readonly "anthropic/claude-opus-4.1": {
|
|
25930
|
+
readonly "anthropic/claude-opus-4.1:batch": {
|
|
25493
25931
|
id: string;
|
|
25494
25932
|
name: string;
|
|
25495
25933
|
api: "openai-completions";
|
|
@@ -25506,7 +25944,7 @@ export declare const MODELS: {
|
|
|
25506
25944
|
contextWindow: number;
|
|
25507
25945
|
maxTokens: number;
|
|
25508
25946
|
};
|
|
25509
|
-
readonly "anthropic/claude-opus-4.
|
|
25947
|
+
readonly "anthropic/claude-opus-4.5": {
|
|
25510
25948
|
id: string;
|
|
25511
25949
|
name: string;
|
|
25512
25950
|
api: "openai-completions";
|
|
@@ -25523,7 +25961,7 @@ export declare const MODELS: {
|
|
|
25523
25961
|
contextWindow: number;
|
|
25524
25962
|
maxTokens: number;
|
|
25525
25963
|
};
|
|
25526
|
-
readonly "anthropic/claude-opus-4.5": {
|
|
25964
|
+
readonly "anthropic/claude-opus-4.5:batch": {
|
|
25527
25965
|
id: string;
|
|
25528
25966
|
name: string;
|
|
25529
25967
|
api: "openai-completions";
|
|
@@ -25540,13 +25978,23 @@ export declare const MODELS: {
|
|
|
25540
25978
|
contextWindow: number;
|
|
25541
25979
|
maxTokens: number;
|
|
25542
25980
|
};
|
|
25543
|
-
readonly "anthropic/claude-opus-4.
|
|
25981
|
+
readonly "anthropic/claude-opus-4.6": {
|
|
25544
25982
|
id: string;
|
|
25545
25983
|
name: string;
|
|
25546
25984
|
api: "openai-completions";
|
|
25547
25985
|
provider: string;
|
|
25548
25986
|
baseUrl: string;
|
|
25549
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
|
+
};
|
|
25550
25998
|
input: ("image" | "text")[];
|
|
25551
25999
|
cost: {
|
|
25552
26000
|
input: number;
|
|
@@ -25557,7 +26005,7 @@ export declare const MODELS: {
|
|
|
25557
26005
|
contextWindow: number;
|
|
25558
26006
|
maxTokens: number;
|
|
25559
26007
|
};
|
|
25560
|
-
readonly "anthropic/claude-opus-4.6": {
|
|
26008
|
+
readonly "anthropic/claude-opus-4.6:batch": {
|
|
25561
26009
|
id: string;
|
|
25562
26010
|
name: string;
|
|
25563
26011
|
api: "openai-completions";
|
|
@@ -25584,7 +26032,7 @@ export declare const MODELS: {
|
|
|
25584
26032
|
contextWindow: number;
|
|
25585
26033
|
maxTokens: number;
|
|
25586
26034
|
};
|
|
25587
|
-
readonly "anthropic/claude-opus-4.
|
|
26035
|
+
readonly "anthropic/claude-opus-4.7": {
|
|
25588
26036
|
id: string;
|
|
25589
26037
|
name: string;
|
|
25590
26038
|
api: "openai-completions";
|
|
@@ -25592,13 +26040,13 @@ export declare const MODELS: {
|
|
|
25592
26040
|
baseUrl: string;
|
|
25593
26041
|
reasoning: true;
|
|
25594
26042
|
thinkingLevelMap: {
|
|
25595
|
-
xhigh:
|
|
26043
|
+
xhigh: string;
|
|
26044
|
+
max: string;
|
|
25596
26045
|
off: string;
|
|
25597
26046
|
minimal: null;
|
|
25598
26047
|
low: string;
|
|
25599
26048
|
medium: string;
|
|
25600
26049
|
high: string;
|
|
25601
|
-
max: string;
|
|
25602
26050
|
ultra: null;
|
|
25603
26051
|
};
|
|
25604
26052
|
input: ("image" | "text")[];
|
|
@@ -25611,7 +26059,7 @@ export declare const MODELS: {
|
|
|
25611
26059
|
contextWindow: number;
|
|
25612
26060
|
maxTokens: number;
|
|
25613
26061
|
};
|
|
25614
|
-
readonly "anthropic/claude-opus-4.7": {
|
|
26062
|
+
readonly "anthropic/claude-opus-4.7:batch": {
|
|
25615
26063
|
id: string;
|
|
25616
26064
|
name: string;
|
|
25617
26065
|
api: "openai-completions";
|
|
@@ -25638,7 +26086,7 @@ export declare const MODELS: {
|
|
|
25638
26086
|
contextWindow: number;
|
|
25639
26087
|
maxTokens: number;
|
|
25640
26088
|
};
|
|
25641
|
-
readonly "anthropic/claude-opus-4.
|
|
26089
|
+
readonly "anthropic/claude-opus-4.8": {
|
|
25642
26090
|
id: string;
|
|
25643
26091
|
name: string;
|
|
25644
26092
|
api: "openai-completions";
|
|
@@ -25665,7 +26113,7 @@ export declare const MODELS: {
|
|
|
25665
26113
|
contextWindow: number;
|
|
25666
26114
|
maxTokens: number;
|
|
25667
26115
|
};
|
|
25668
|
-
readonly "anthropic/claude-opus-4.8": {
|
|
26116
|
+
readonly "anthropic/claude-opus-4.8:batch": {
|
|
25669
26117
|
id: string;
|
|
25670
26118
|
name: string;
|
|
25671
26119
|
api: "openai-completions";
|
|
@@ -25692,7 +26140,7 @@ export declare const MODELS: {
|
|
|
25692
26140
|
contextWindow: number;
|
|
25693
26141
|
maxTokens: number;
|
|
25694
26142
|
};
|
|
25695
|
-
readonly "anthropic/claude-opus-
|
|
26143
|
+
readonly "anthropic/claude-opus-5": {
|
|
25696
26144
|
id: string;
|
|
25697
26145
|
name: string;
|
|
25698
26146
|
api: "openai-completions";
|
|
@@ -25700,13 +26148,40 @@ export declare const MODELS: {
|
|
|
25700
26148
|
baseUrl: string;
|
|
25701
26149
|
reasoning: true;
|
|
25702
26150
|
thinkingLevelMap: {
|
|
26151
|
+
off: string;
|
|
26152
|
+
minimal: null;
|
|
26153
|
+
low: string;
|
|
26154
|
+
medium: string;
|
|
26155
|
+
high: string;
|
|
25703
26156
|
xhigh: string;
|
|
25704
26157
|
max: string;
|
|
25705
|
-
|
|
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;
|
|
25706
26179
|
minimal: null;
|
|
25707
26180
|
low: string;
|
|
25708
26181
|
medium: string;
|
|
25709
26182
|
high: string;
|
|
26183
|
+
xhigh: string;
|
|
26184
|
+
max: string;
|
|
25710
26185
|
ultra: null;
|
|
25711
26186
|
};
|
|
25712
26187
|
input: ("image" | "text")[];
|
|
@@ -25719,7 +26194,7 @@ export declare const MODELS: {
|
|
|
25719
26194
|
contextWindow: number;
|
|
25720
26195
|
maxTokens: number;
|
|
25721
26196
|
};
|
|
25722
|
-
readonly "anthropic/claude-opus-5": {
|
|
26197
|
+
readonly "anthropic/claude-opus-5.5:batch": {
|
|
25723
26198
|
id: string;
|
|
25724
26199
|
name: string;
|
|
25725
26200
|
api: "openai-completions";
|
|
@@ -25727,7 +26202,7 @@ export declare const MODELS: {
|
|
|
25727
26202
|
baseUrl: string;
|
|
25728
26203
|
reasoning: true;
|
|
25729
26204
|
thinkingLevelMap: {
|
|
25730
|
-
off:
|
|
26205
|
+
off: null;
|
|
25731
26206
|
minimal: null;
|
|
25732
26207
|
low: string;
|
|
25733
26208
|
medium: string;
|
|
@@ -26354,66 +26829,6 @@ export declare const MODELS: {
|
|
|
26354
26829
|
contextWindow: number;
|
|
26355
26830
|
maxTokens: number;
|
|
26356
26831
|
};
|
|
26357
|
-
readonly "deepseek/deepseek-v4-flash-0731:batch": {
|
|
26358
|
-
id: string;
|
|
26359
|
-
name: string;
|
|
26360
|
-
api: "openai-completions";
|
|
26361
|
-
provider: string;
|
|
26362
|
-
baseUrl: string;
|
|
26363
|
-
compat: {
|
|
26364
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
26365
|
-
};
|
|
26366
|
-
reasoning: true;
|
|
26367
|
-
thinkingLevelMap: {
|
|
26368
|
-
minimal: null;
|
|
26369
|
-
low: string;
|
|
26370
|
-
medium: null;
|
|
26371
|
-
high: string;
|
|
26372
|
-
xhigh: null;
|
|
26373
|
-
off: string;
|
|
26374
|
-
max: string;
|
|
26375
|
-
ultra: null;
|
|
26376
|
-
};
|
|
26377
|
-
input: "text"[];
|
|
26378
|
-
cost: {
|
|
26379
|
-
input: number;
|
|
26380
|
-
output: number;
|
|
26381
|
-
cacheRead: number;
|
|
26382
|
-
cacheWrite: number;
|
|
26383
|
-
};
|
|
26384
|
-
contextWindow: number;
|
|
26385
|
-
maxTokens: number;
|
|
26386
|
-
};
|
|
26387
|
-
readonly "deepseek/deepseek-v4-flash-0731:free": {
|
|
26388
|
-
id: string;
|
|
26389
|
-
name: string;
|
|
26390
|
-
api: "openai-completions";
|
|
26391
|
-
provider: string;
|
|
26392
|
-
baseUrl: string;
|
|
26393
|
-
compat: {
|
|
26394
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
26395
|
-
};
|
|
26396
|
-
reasoning: true;
|
|
26397
|
-
thinkingLevelMap: {
|
|
26398
|
-
minimal: null;
|
|
26399
|
-
low: string;
|
|
26400
|
-
medium: null;
|
|
26401
|
-
high: string;
|
|
26402
|
-
xhigh: null;
|
|
26403
|
-
off: string;
|
|
26404
|
-
max: string;
|
|
26405
|
-
ultra: null;
|
|
26406
|
-
};
|
|
26407
|
-
input: "text"[];
|
|
26408
|
-
cost: {
|
|
26409
|
-
input: number;
|
|
26410
|
-
output: number;
|
|
26411
|
-
cacheRead: number;
|
|
26412
|
-
cacheWrite: number;
|
|
26413
|
-
};
|
|
26414
|
-
contextWindow: number;
|
|
26415
|
-
maxTokens: number;
|
|
26416
|
-
};
|
|
26417
26832
|
readonly "deepseek/deepseek-v4-flash-vision-exp": {
|
|
26418
26833
|
id: string;
|
|
26419
26834
|
name: string;
|
|
@@ -26444,36 +26859,6 @@ export declare const MODELS: {
|
|
|
26444
26859
|
contextWindow: number;
|
|
26445
26860
|
maxTokens: number;
|
|
26446
26861
|
};
|
|
26447
|
-
readonly "deepseek/deepseek-v4-flash-vision-exp:batch": {
|
|
26448
|
-
id: string;
|
|
26449
|
-
name: string;
|
|
26450
|
-
api: "openai-completions";
|
|
26451
|
-
provider: string;
|
|
26452
|
-
baseUrl: string;
|
|
26453
|
-
compat: {
|
|
26454
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
26455
|
-
};
|
|
26456
|
-
reasoning: true;
|
|
26457
|
-
thinkingLevelMap: {
|
|
26458
|
-
minimal: null;
|
|
26459
|
-
low: string;
|
|
26460
|
-
medium: null;
|
|
26461
|
-
high: string;
|
|
26462
|
-
xhigh: null;
|
|
26463
|
-
off: string;
|
|
26464
|
-
max: string;
|
|
26465
|
-
ultra: null;
|
|
26466
|
-
};
|
|
26467
|
-
input: ("image" | "text")[];
|
|
26468
|
-
cost: {
|
|
26469
|
-
input: number;
|
|
26470
|
-
output: number;
|
|
26471
|
-
cacheRead: number;
|
|
26472
|
-
cacheWrite: number;
|
|
26473
|
-
};
|
|
26474
|
-
contextWindow: number;
|
|
26475
|
-
maxTokens: number;
|
|
26476
|
-
};
|
|
26477
26862
|
readonly "deepseek/deepseek-v4-pro": {
|
|
26478
26863
|
id: string;
|
|
26479
26864
|
name: string;
|
|
@@ -26534,7 +26919,7 @@ export declare const MODELS: {
|
|
|
26534
26919
|
contextWindow: number;
|
|
26535
26920
|
maxTokens: number;
|
|
26536
26921
|
};
|
|
26537
|
-
readonly "deepseek/deepseek-v4-
|
|
26922
|
+
readonly "deepseek/deepseek-v4.1-flash": {
|
|
26538
26923
|
id: string;
|
|
26539
26924
|
name: string;
|
|
26540
26925
|
api: "openai-completions";
|
|
@@ -26554,7 +26939,7 @@ export declare const MODELS: {
|
|
|
26554
26939
|
max: string;
|
|
26555
26940
|
ultra: null;
|
|
26556
26941
|
};
|
|
26557
|
-
input: "text"[];
|
|
26942
|
+
input: ("image" | "text")[];
|
|
26558
26943
|
cost: {
|
|
26559
26944
|
input: number;
|
|
26560
26945
|
output: number;
|
|
@@ -26564,7 +26949,7 @@ export declare const MODELS: {
|
|
|
26564
26949
|
contextWindow: number;
|
|
26565
26950
|
maxTokens: number;
|
|
26566
26951
|
};
|
|
26567
|
-
readonly "deepseek/deepseek-v4.1-flash": {
|
|
26952
|
+
readonly "deepseek/deepseek-v4.1-flash:batch": {
|
|
26568
26953
|
id: string;
|
|
26569
26954
|
name: string;
|
|
26570
26955
|
api: "openai-completions";
|
|
@@ -27530,23 +27915,6 @@ export declare const MODELS: {
|
|
|
27530
27915
|
contextWindow: number;
|
|
27531
27916
|
maxTokens: number;
|
|
27532
27917
|
};
|
|
27533
|
-
readonly "kwaipilot/kat-coder-pro-v2": {
|
|
27534
|
-
id: string;
|
|
27535
|
-
name: string;
|
|
27536
|
-
api: "openai-completions";
|
|
27537
|
-
provider: string;
|
|
27538
|
-
baseUrl: string;
|
|
27539
|
-
reasoning: false;
|
|
27540
|
-
input: "text"[];
|
|
27541
|
-
cost: {
|
|
27542
|
-
input: number;
|
|
27543
|
-
output: number;
|
|
27544
|
-
cacheRead: number;
|
|
27545
|
-
cacheWrite: number;
|
|
27546
|
-
};
|
|
27547
|
-
contextWindow: number;
|
|
27548
|
-
maxTokens: number;
|
|
27549
|
-
};
|
|
27550
27918
|
readonly "kwaipilot/kat-coder-pro-v2.5": {
|
|
27551
27919
|
id: string;
|
|
27552
27920
|
name: string;
|
|
@@ -27713,33 +28081,6 @@ export declare const MODELS: {
|
|
|
27713
28081
|
contextWindow: number;
|
|
27714
28082
|
maxTokens: number;
|
|
27715
28083
|
};
|
|
27716
|
-
readonly "meta/muse-glimmer-30b:batch": {
|
|
27717
|
-
id: string;
|
|
27718
|
-
name: string;
|
|
27719
|
-
api: "openai-completions";
|
|
27720
|
-
provider: string;
|
|
27721
|
-
baseUrl: string;
|
|
27722
|
-
reasoning: true;
|
|
27723
|
-
thinkingLevelMap: {
|
|
27724
|
-
off: null;
|
|
27725
|
-
minimal: null;
|
|
27726
|
-
low: string;
|
|
27727
|
-
medium: string;
|
|
27728
|
-
high: string;
|
|
27729
|
-
xhigh: string;
|
|
27730
|
-
max: null;
|
|
27731
|
-
ultra: null;
|
|
27732
|
-
};
|
|
27733
|
-
input: ("image" | "text")[];
|
|
27734
|
-
cost: {
|
|
27735
|
-
input: number;
|
|
27736
|
-
output: number;
|
|
27737
|
-
cacheRead: number;
|
|
27738
|
-
cacheWrite: number;
|
|
27739
|
-
};
|
|
27740
|
-
contextWindow: number;
|
|
27741
|
-
maxTokens: number;
|
|
27742
|
-
};
|
|
27743
28084
|
readonly "meta/muse-spark-1.1": {
|
|
27744
28085
|
id: string;
|
|
27745
28086
|
name: string;
|
|
@@ -27989,23 +28330,6 @@ export declare const MODELS: {
|
|
|
27989
28330
|
contextWindow: number;
|
|
27990
28331
|
maxTokens: number;
|
|
27991
28332
|
};
|
|
27992
|
-
readonly "minimax/minimax-m3:batch": {
|
|
27993
|
-
id: string;
|
|
27994
|
-
name: string;
|
|
27995
|
-
api: "openai-completions";
|
|
27996
|
-
provider: string;
|
|
27997
|
-
baseUrl: string;
|
|
27998
|
-
reasoning: true;
|
|
27999
|
-
input: ("image" | "text")[];
|
|
28000
|
-
cost: {
|
|
28001
|
-
input: number;
|
|
28002
|
-
output: number;
|
|
28003
|
-
cacheRead: number;
|
|
28004
|
-
cacheWrite: number;
|
|
28005
|
-
};
|
|
28006
|
-
contextWindow: number;
|
|
28007
|
-
maxTokens: number;
|
|
28008
|
-
};
|
|
28009
28333
|
readonly "mistralai/codestral-2508": {
|
|
28010
28334
|
id: string;
|
|
28011
28335
|
name: string;
|
|
@@ -28369,6 +28693,23 @@ export declare const MODELS: {
|
|
|
28369
28693
|
contextWindow: number;
|
|
28370
28694
|
maxTokens: number;
|
|
28371
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
|
+
};
|
|
28372
28713
|
readonly "mistralai/mistral-small-3.2-24b-instruct": {
|
|
28373
28714
|
id: string;
|
|
28374
28715
|
name: string;
|
|
@@ -28613,6 +28954,33 @@ export declare const MODELS: {
|
|
|
28613
28954
|
contextWindow: number;
|
|
28614
28955
|
maxTokens: number;
|
|
28615
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
|
+
};
|
|
28616
28984
|
readonly "nex-agi/nex-n2.5-pro:free": {
|
|
28617
28985
|
id: string;
|
|
28618
28986
|
name: string;
|
|
@@ -30030,7 +30398,223 @@ export declare const MODELS: {
|
|
|
30030
30398
|
contextWindow: number;
|
|
30031
30399
|
maxTokens: number;
|
|
30032
30400
|
};
|
|
30033
|
-
readonly "openai/gpt-5.6-luna-pro": {
|
|
30401
|
+
readonly "openai/gpt-5.6-luna-pro": {
|
|
30402
|
+
id: string;
|
|
30403
|
+
name: string;
|
|
30404
|
+
api: "openai-completions";
|
|
30405
|
+
provider: string;
|
|
30406
|
+
baseUrl: string;
|
|
30407
|
+
reasoning: true;
|
|
30408
|
+
thinkingLevelMap: {
|
|
30409
|
+
xhigh: string;
|
|
30410
|
+
max: string;
|
|
30411
|
+
off: string;
|
|
30412
|
+
minimal: null;
|
|
30413
|
+
low: string;
|
|
30414
|
+
medium: string;
|
|
30415
|
+
high: string;
|
|
30416
|
+
ultra: null;
|
|
30417
|
+
};
|
|
30418
|
+
input: ("image" | "text")[];
|
|
30419
|
+
cost: {
|
|
30420
|
+
input: number;
|
|
30421
|
+
output: number;
|
|
30422
|
+
cacheRead: number;
|
|
30423
|
+
cacheWrite: number;
|
|
30424
|
+
};
|
|
30425
|
+
contextWindow: number;
|
|
30426
|
+
maxTokens: number;
|
|
30427
|
+
};
|
|
30428
|
+
readonly "openai/gpt-5.6-luna-pro:batch": {
|
|
30429
|
+
id: string;
|
|
30430
|
+
name: string;
|
|
30431
|
+
api: "openai-completions";
|
|
30432
|
+
provider: string;
|
|
30433
|
+
baseUrl: string;
|
|
30434
|
+
reasoning: true;
|
|
30435
|
+
thinkingLevelMap: {
|
|
30436
|
+
xhigh: string;
|
|
30437
|
+
max: string;
|
|
30438
|
+
off: string;
|
|
30439
|
+
minimal: null;
|
|
30440
|
+
low: string;
|
|
30441
|
+
medium: string;
|
|
30442
|
+
high: string;
|
|
30443
|
+
ultra: null;
|
|
30444
|
+
};
|
|
30445
|
+
input: ("image" | "text")[];
|
|
30446
|
+
cost: {
|
|
30447
|
+
input: number;
|
|
30448
|
+
output: number;
|
|
30449
|
+
cacheRead: number;
|
|
30450
|
+
cacheWrite: number;
|
|
30451
|
+
};
|
|
30452
|
+
contextWindow: number;
|
|
30453
|
+
maxTokens: number;
|
|
30454
|
+
};
|
|
30455
|
+
readonly "openai/gpt-5.6-luna:batch": {
|
|
30456
|
+
id: string;
|
|
30457
|
+
name: string;
|
|
30458
|
+
api: "openai-completions";
|
|
30459
|
+
provider: string;
|
|
30460
|
+
baseUrl: string;
|
|
30461
|
+
reasoning: true;
|
|
30462
|
+
thinkingLevelMap: {
|
|
30463
|
+
xhigh: string;
|
|
30464
|
+
max: string;
|
|
30465
|
+
off: string;
|
|
30466
|
+
minimal: null;
|
|
30467
|
+
low: string;
|
|
30468
|
+
medium: string;
|
|
30469
|
+
high: string;
|
|
30470
|
+
ultra: null;
|
|
30471
|
+
};
|
|
30472
|
+
input: ("image" | "text")[];
|
|
30473
|
+
cost: {
|
|
30474
|
+
input: number;
|
|
30475
|
+
output: number;
|
|
30476
|
+
cacheRead: number;
|
|
30477
|
+
cacheWrite: number;
|
|
30478
|
+
};
|
|
30479
|
+
contextWindow: number;
|
|
30480
|
+
maxTokens: number;
|
|
30481
|
+
};
|
|
30482
|
+
readonly "openai/gpt-5.6-sol": {
|
|
30483
|
+
id: string;
|
|
30484
|
+
name: string;
|
|
30485
|
+
api: "openai-completions";
|
|
30486
|
+
provider: string;
|
|
30487
|
+
baseUrl: string;
|
|
30488
|
+
reasoning: true;
|
|
30489
|
+
thinkingLevelMap: {
|
|
30490
|
+
xhigh: string;
|
|
30491
|
+
max: string;
|
|
30492
|
+
off: string;
|
|
30493
|
+
minimal: null;
|
|
30494
|
+
low: string;
|
|
30495
|
+
medium: string;
|
|
30496
|
+
high: string;
|
|
30497
|
+
ultra: null;
|
|
30498
|
+
};
|
|
30499
|
+
input: ("image" | "text")[];
|
|
30500
|
+
cost: {
|
|
30501
|
+
input: number;
|
|
30502
|
+
output: number;
|
|
30503
|
+
cacheRead: number;
|
|
30504
|
+
cacheWrite: number;
|
|
30505
|
+
};
|
|
30506
|
+
contextWindow: number;
|
|
30507
|
+
maxTokens: number;
|
|
30508
|
+
};
|
|
30509
|
+
readonly "openai/gpt-5.6-sol-pro": {
|
|
30510
|
+
id: string;
|
|
30511
|
+
name: string;
|
|
30512
|
+
api: "openai-completions";
|
|
30513
|
+
provider: string;
|
|
30514
|
+
baseUrl: string;
|
|
30515
|
+
reasoning: true;
|
|
30516
|
+
thinkingLevelMap: {
|
|
30517
|
+
xhigh: string;
|
|
30518
|
+
max: string;
|
|
30519
|
+
off: string;
|
|
30520
|
+
minimal: null;
|
|
30521
|
+
low: string;
|
|
30522
|
+
medium: string;
|
|
30523
|
+
high: string;
|
|
30524
|
+
ultra: null;
|
|
30525
|
+
};
|
|
30526
|
+
input: ("image" | "text")[];
|
|
30527
|
+
cost: {
|
|
30528
|
+
input: number;
|
|
30529
|
+
output: number;
|
|
30530
|
+
cacheRead: number;
|
|
30531
|
+
cacheWrite: number;
|
|
30532
|
+
};
|
|
30533
|
+
contextWindow: number;
|
|
30534
|
+
maxTokens: number;
|
|
30535
|
+
};
|
|
30536
|
+
readonly "openai/gpt-5.6-sol-pro:batch": {
|
|
30537
|
+
id: string;
|
|
30538
|
+
name: string;
|
|
30539
|
+
api: "openai-completions";
|
|
30540
|
+
provider: string;
|
|
30541
|
+
baseUrl: string;
|
|
30542
|
+
reasoning: true;
|
|
30543
|
+
thinkingLevelMap: {
|
|
30544
|
+
xhigh: string;
|
|
30545
|
+
max: string;
|
|
30546
|
+
off: string;
|
|
30547
|
+
minimal: null;
|
|
30548
|
+
low: string;
|
|
30549
|
+
medium: string;
|
|
30550
|
+
high: string;
|
|
30551
|
+
ultra: null;
|
|
30552
|
+
};
|
|
30553
|
+
input: ("image" | "text")[];
|
|
30554
|
+
cost: {
|
|
30555
|
+
input: number;
|
|
30556
|
+
output: number;
|
|
30557
|
+
cacheRead: number;
|
|
30558
|
+
cacheWrite: number;
|
|
30559
|
+
};
|
|
30560
|
+
contextWindow: number;
|
|
30561
|
+
maxTokens: number;
|
|
30562
|
+
};
|
|
30563
|
+
readonly "openai/gpt-5.6-sol:batch": {
|
|
30564
|
+
id: string;
|
|
30565
|
+
name: string;
|
|
30566
|
+
api: "openai-completions";
|
|
30567
|
+
provider: string;
|
|
30568
|
+
baseUrl: string;
|
|
30569
|
+
reasoning: true;
|
|
30570
|
+
thinkingLevelMap: {
|
|
30571
|
+
xhigh: string;
|
|
30572
|
+
max: string;
|
|
30573
|
+
off: string;
|
|
30574
|
+
minimal: null;
|
|
30575
|
+
low: string;
|
|
30576
|
+
medium: string;
|
|
30577
|
+
high: string;
|
|
30578
|
+
ultra: null;
|
|
30579
|
+
};
|
|
30580
|
+
input: ("image" | "text")[];
|
|
30581
|
+
cost: {
|
|
30582
|
+
input: number;
|
|
30583
|
+
output: number;
|
|
30584
|
+
cacheRead: number;
|
|
30585
|
+
cacheWrite: number;
|
|
30586
|
+
};
|
|
30587
|
+
contextWindow: number;
|
|
30588
|
+
maxTokens: number;
|
|
30589
|
+
};
|
|
30590
|
+
readonly "openai/gpt-5.6-terra": {
|
|
30591
|
+
id: string;
|
|
30592
|
+
name: string;
|
|
30593
|
+
api: "openai-completions";
|
|
30594
|
+
provider: string;
|
|
30595
|
+
baseUrl: string;
|
|
30596
|
+
reasoning: true;
|
|
30597
|
+
thinkingLevelMap: {
|
|
30598
|
+
xhigh: string;
|
|
30599
|
+
max: string;
|
|
30600
|
+
off: string;
|
|
30601
|
+
minimal: null;
|
|
30602
|
+
low: string;
|
|
30603
|
+
medium: string;
|
|
30604
|
+
high: string;
|
|
30605
|
+
ultra: null;
|
|
30606
|
+
};
|
|
30607
|
+
input: ("image" | "text")[];
|
|
30608
|
+
cost: {
|
|
30609
|
+
input: number;
|
|
30610
|
+
output: number;
|
|
30611
|
+
cacheRead: number;
|
|
30612
|
+
cacheWrite: number;
|
|
30613
|
+
};
|
|
30614
|
+
contextWindow: number;
|
|
30615
|
+
maxTokens: number;
|
|
30616
|
+
};
|
|
30617
|
+
readonly "openai/gpt-5.6-terra-pro": {
|
|
30034
30618
|
id: string;
|
|
30035
30619
|
name: string;
|
|
30036
30620
|
api: "openai-completions";
|
|
@@ -30057,7 +30641,7 @@ export declare const MODELS: {
|
|
|
30057
30641
|
contextWindow: number;
|
|
30058
30642
|
maxTokens: number;
|
|
30059
30643
|
};
|
|
30060
|
-
readonly "openai/gpt-5.6-
|
|
30644
|
+
readonly "openai/gpt-5.6-terra-pro:batch": {
|
|
30061
30645
|
id: string;
|
|
30062
30646
|
name: string;
|
|
30063
30647
|
api: "openai-completions";
|
|
@@ -30084,7 +30668,7 @@ export declare const MODELS: {
|
|
|
30084
30668
|
contextWindow: number;
|
|
30085
30669
|
maxTokens: number;
|
|
30086
30670
|
};
|
|
30087
|
-
readonly "openai/gpt-5.6-
|
|
30671
|
+
readonly "openai/gpt-5.6-terra:batch": {
|
|
30088
30672
|
id: string;
|
|
30089
30673
|
name: string;
|
|
30090
30674
|
api: "openai-completions";
|
|
@@ -30111,7 +30695,7 @@ export declare const MODELS: {
|
|
|
30111
30695
|
contextWindow: number;
|
|
30112
30696
|
maxTokens: number;
|
|
30113
30697
|
};
|
|
30114
|
-
readonly "openai/gpt-5
|
|
30698
|
+
readonly "openai/gpt-5:batch": {
|
|
30115
30699
|
id: string;
|
|
30116
30700
|
name: string;
|
|
30117
30701
|
api: "openai-completions";
|
|
@@ -30119,13 +30703,13 @@ export declare const MODELS: {
|
|
|
30119
30703
|
baseUrl: string;
|
|
30120
30704
|
reasoning: true;
|
|
30121
30705
|
thinkingLevelMap: {
|
|
30122
|
-
|
|
30123
|
-
|
|
30124
|
-
off: string;
|
|
30125
|
-
minimal: null;
|
|
30706
|
+
off: null;
|
|
30707
|
+
minimal: string;
|
|
30126
30708
|
low: string;
|
|
30127
30709
|
medium: string;
|
|
30128
30710
|
high: string;
|
|
30711
|
+
xhigh: null;
|
|
30712
|
+
max: null;
|
|
30129
30713
|
ultra: null;
|
|
30130
30714
|
};
|
|
30131
30715
|
input: ("image" | "text")[];
|
|
@@ -30138,7 +30722,7 @@ export declare const MODELS: {
|
|
|
30138
30722
|
contextWindow: number;
|
|
30139
30723
|
maxTokens: number;
|
|
30140
30724
|
};
|
|
30141
|
-
readonly "openai/gpt-
|
|
30725
|
+
readonly "openai/gpt-6-astra": {
|
|
30142
30726
|
id: string;
|
|
30143
30727
|
name: string;
|
|
30144
30728
|
api: "openai-completions";
|
|
@@ -30146,14 +30730,14 @@ export declare const MODELS: {
|
|
|
30146
30730
|
baseUrl: string;
|
|
30147
30731
|
reasoning: true;
|
|
30148
30732
|
thinkingLevelMap: {
|
|
30149
|
-
|
|
30150
|
-
max: string;
|
|
30151
|
-
off: string;
|
|
30733
|
+
off: null;
|
|
30152
30734
|
minimal: null;
|
|
30153
30735
|
low: string;
|
|
30154
30736
|
medium: string;
|
|
30155
30737
|
high: string;
|
|
30156
|
-
|
|
30738
|
+
xhigh: string;
|
|
30739
|
+
max: string;
|
|
30740
|
+
ultra: string;
|
|
30157
30741
|
};
|
|
30158
30742
|
input: ("image" | "text")[];
|
|
30159
30743
|
cost: {
|
|
@@ -30165,7 +30749,7 @@ export declare const MODELS: {
|
|
|
30165
30749
|
contextWindow: number;
|
|
30166
30750
|
maxTokens: number;
|
|
30167
30751
|
};
|
|
30168
|
-
readonly "openai/gpt-
|
|
30752
|
+
readonly "openai/gpt-6-astra-pro": {
|
|
30169
30753
|
id: string;
|
|
30170
30754
|
name: string;
|
|
30171
30755
|
api: "openai-completions";
|
|
@@ -30173,14 +30757,14 @@ export declare const MODELS: {
|
|
|
30173
30757
|
baseUrl: string;
|
|
30174
30758
|
reasoning: true;
|
|
30175
30759
|
thinkingLevelMap: {
|
|
30176
|
-
|
|
30177
|
-
max: string;
|
|
30178
|
-
off: string;
|
|
30760
|
+
off: null;
|
|
30179
30761
|
minimal: null;
|
|
30180
30762
|
low: string;
|
|
30181
30763
|
medium: string;
|
|
30182
30764
|
high: string;
|
|
30183
|
-
|
|
30765
|
+
xhigh: string;
|
|
30766
|
+
max: string;
|
|
30767
|
+
ultra: string;
|
|
30184
30768
|
};
|
|
30185
30769
|
input: ("image" | "text")[];
|
|
30186
30770
|
cost: {
|
|
@@ -30192,7 +30776,7 @@ export declare const MODELS: {
|
|
|
30192
30776
|
contextWindow: number;
|
|
30193
30777
|
maxTokens: number;
|
|
30194
30778
|
};
|
|
30195
|
-
readonly "openai/gpt-
|
|
30779
|
+
readonly "openai/gpt-6-astra-pro:batch": {
|
|
30196
30780
|
id: string;
|
|
30197
30781
|
name: string;
|
|
30198
30782
|
api: "openai-completions";
|
|
@@ -30200,14 +30784,14 @@ export declare const MODELS: {
|
|
|
30200
30784
|
baseUrl: string;
|
|
30201
30785
|
reasoning: true;
|
|
30202
30786
|
thinkingLevelMap: {
|
|
30203
|
-
|
|
30204
|
-
max: string;
|
|
30205
|
-
off: string;
|
|
30787
|
+
off: null;
|
|
30206
30788
|
minimal: null;
|
|
30207
30789
|
low: string;
|
|
30208
30790
|
medium: string;
|
|
30209
30791
|
high: string;
|
|
30210
|
-
|
|
30792
|
+
xhigh: string;
|
|
30793
|
+
max: string;
|
|
30794
|
+
ultra: string;
|
|
30211
30795
|
};
|
|
30212
30796
|
input: ("image" | "text")[];
|
|
30213
30797
|
cost: {
|
|
@@ -30219,7 +30803,7 @@ export declare const MODELS: {
|
|
|
30219
30803
|
contextWindow: number;
|
|
30220
30804
|
maxTokens: number;
|
|
30221
30805
|
};
|
|
30222
|
-
readonly "openai/gpt-
|
|
30806
|
+
readonly "openai/gpt-6-astra:batch": {
|
|
30223
30807
|
id: string;
|
|
30224
30808
|
name: string;
|
|
30225
30809
|
api: "openai-completions";
|
|
@@ -30227,14 +30811,14 @@ export declare const MODELS: {
|
|
|
30227
30811
|
baseUrl: string;
|
|
30228
30812
|
reasoning: true;
|
|
30229
30813
|
thinkingLevelMap: {
|
|
30230
|
-
|
|
30231
|
-
max: string;
|
|
30232
|
-
off: string;
|
|
30814
|
+
off: null;
|
|
30233
30815
|
minimal: null;
|
|
30234
30816
|
low: string;
|
|
30235
30817
|
medium: string;
|
|
30236
30818
|
high: string;
|
|
30237
|
-
|
|
30819
|
+
xhigh: string;
|
|
30820
|
+
max: string;
|
|
30821
|
+
ultra: string;
|
|
30238
30822
|
};
|
|
30239
30823
|
input: ("image" | "text")[];
|
|
30240
30824
|
cost: {
|
|
@@ -30246,7 +30830,7 @@ export declare const MODELS: {
|
|
|
30246
30830
|
contextWindow: number;
|
|
30247
30831
|
maxTokens: number;
|
|
30248
30832
|
};
|
|
30249
|
-
readonly "openai/gpt-
|
|
30833
|
+
readonly "openai/gpt-6-luna": {
|
|
30250
30834
|
id: string;
|
|
30251
30835
|
name: string;
|
|
30252
30836
|
api: "openai-completions";
|
|
@@ -30254,13 +30838,13 @@ export declare const MODELS: {
|
|
|
30254
30838
|
baseUrl: string;
|
|
30255
30839
|
reasoning: true;
|
|
30256
30840
|
thinkingLevelMap: {
|
|
30257
|
-
xhigh: string;
|
|
30258
|
-
max: string;
|
|
30259
30841
|
off: string;
|
|
30260
30842
|
minimal: null;
|
|
30261
30843
|
low: string;
|
|
30262
30844
|
medium: string;
|
|
30263
30845
|
high: string;
|
|
30846
|
+
xhigh: string;
|
|
30847
|
+
max: string;
|
|
30264
30848
|
ultra: null;
|
|
30265
30849
|
};
|
|
30266
30850
|
input: ("image" | "text")[];
|
|
@@ -30273,7 +30857,7 @@ export declare const MODELS: {
|
|
|
30273
30857
|
contextWindow: number;
|
|
30274
30858
|
maxTokens: number;
|
|
30275
30859
|
};
|
|
30276
|
-
readonly "openai/gpt-
|
|
30860
|
+
readonly "openai/gpt-6-luna-pro": {
|
|
30277
30861
|
id: string;
|
|
30278
30862
|
name: string;
|
|
30279
30863
|
api: "openai-completions";
|
|
@@ -30281,13 +30865,13 @@ export declare const MODELS: {
|
|
|
30281
30865
|
baseUrl: string;
|
|
30282
30866
|
reasoning: true;
|
|
30283
30867
|
thinkingLevelMap: {
|
|
30284
|
-
xhigh: string;
|
|
30285
|
-
max: string;
|
|
30286
30868
|
off: string;
|
|
30287
30869
|
minimal: null;
|
|
30288
30870
|
low: string;
|
|
30289
30871
|
medium: string;
|
|
30290
30872
|
high: string;
|
|
30873
|
+
xhigh: string;
|
|
30874
|
+
max: string;
|
|
30291
30875
|
ultra: null;
|
|
30292
30876
|
};
|
|
30293
30877
|
input: ("image" | "text")[];
|
|
@@ -30300,7 +30884,7 @@ export declare const MODELS: {
|
|
|
30300
30884
|
contextWindow: number;
|
|
30301
30885
|
maxTokens: number;
|
|
30302
30886
|
};
|
|
30303
|
-
readonly "openai/gpt-
|
|
30887
|
+
readonly "openai/gpt-6-luna-pro:batch": {
|
|
30304
30888
|
id: string;
|
|
30305
30889
|
name: string;
|
|
30306
30890
|
api: "openai-completions";
|
|
@@ -30308,13 +30892,13 @@ export declare const MODELS: {
|
|
|
30308
30892
|
baseUrl: string;
|
|
30309
30893
|
reasoning: true;
|
|
30310
30894
|
thinkingLevelMap: {
|
|
30311
|
-
xhigh: string;
|
|
30312
|
-
max: string;
|
|
30313
30895
|
off: string;
|
|
30314
30896
|
minimal: null;
|
|
30315
30897
|
low: string;
|
|
30316
30898
|
medium: string;
|
|
30317
30899
|
high: string;
|
|
30900
|
+
xhigh: string;
|
|
30901
|
+
max: string;
|
|
30318
30902
|
ultra: null;
|
|
30319
30903
|
};
|
|
30320
30904
|
input: ("image" | "text")[];
|
|
@@ -30327,7 +30911,7 @@ export declare const MODELS: {
|
|
|
30327
30911
|
contextWindow: number;
|
|
30328
30912
|
maxTokens: number;
|
|
30329
30913
|
};
|
|
30330
|
-
readonly "openai/gpt-
|
|
30914
|
+
readonly "openai/gpt-6-luna:batch": {
|
|
30331
30915
|
id: string;
|
|
30332
30916
|
name: string;
|
|
30333
30917
|
api: "openai-completions";
|
|
@@ -30335,13 +30919,13 @@ export declare const MODELS: {
|
|
|
30335
30919
|
baseUrl: string;
|
|
30336
30920
|
reasoning: true;
|
|
30337
30921
|
thinkingLevelMap: {
|
|
30338
|
-
off:
|
|
30339
|
-
minimal:
|
|
30922
|
+
off: string;
|
|
30923
|
+
minimal: null;
|
|
30340
30924
|
low: string;
|
|
30341
30925
|
medium: string;
|
|
30342
30926
|
high: string;
|
|
30343
|
-
xhigh:
|
|
30344
|
-
max:
|
|
30927
|
+
xhigh: string;
|
|
30928
|
+
max: string;
|
|
30345
30929
|
ultra: null;
|
|
30346
30930
|
};
|
|
30347
30931
|
input: ("image" | "text")[];
|
|
@@ -30354,7 +30938,7 @@ export declare const MODELS: {
|
|
|
30354
30938
|
contextWindow: number;
|
|
30355
30939
|
maxTokens: number;
|
|
30356
30940
|
};
|
|
30357
|
-
readonly "openai/gpt-6-
|
|
30941
|
+
readonly "openai/gpt-6-sol": {
|
|
30358
30942
|
id: string;
|
|
30359
30943
|
name: string;
|
|
30360
30944
|
api: "openai-completions";
|
|
@@ -30362,14 +30946,14 @@ export declare const MODELS: {
|
|
|
30362
30946
|
baseUrl: string;
|
|
30363
30947
|
reasoning: true;
|
|
30364
30948
|
thinkingLevelMap: {
|
|
30365
|
-
off:
|
|
30949
|
+
off: string;
|
|
30366
30950
|
minimal: null;
|
|
30367
30951
|
low: string;
|
|
30368
30952
|
medium: string;
|
|
30369
30953
|
high: string;
|
|
30370
30954
|
xhigh: string;
|
|
30371
30955
|
max: string;
|
|
30372
|
-
ultra:
|
|
30956
|
+
ultra: null;
|
|
30373
30957
|
};
|
|
30374
30958
|
input: ("image" | "text")[];
|
|
30375
30959
|
cost: {
|
|
@@ -30381,7 +30965,7 @@ export declare const MODELS: {
|
|
|
30381
30965
|
contextWindow: number;
|
|
30382
30966
|
maxTokens: number;
|
|
30383
30967
|
};
|
|
30384
|
-
readonly "openai/gpt-6-
|
|
30968
|
+
readonly "openai/gpt-6-sol-pro": {
|
|
30385
30969
|
id: string;
|
|
30386
30970
|
name: string;
|
|
30387
30971
|
api: "openai-completions";
|
|
@@ -30389,14 +30973,14 @@ export declare const MODELS: {
|
|
|
30389
30973
|
baseUrl: string;
|
|
30390
30974
|
reasoning: true;
|
|
30391
30975
|
thinkingLevelMap: {
|
|
30392
|
-
off:
|
|
30976
|
+
off: string;
|
|
30393
30977
|
minimal: null;
|
|
30394
30978
|
low: string;
|
|
30395
30979
|
medium: string;
|
|
30396
30980
|
high: string;
|
|
30397
30981
|
xhigh: string;
|
|
30398
30982
|
max: string;
|
|
30399
|
-
ultra:
|
|
30983
|
+
ultra: null;
|
|
30400
30984
|
};
|
|
30401
30985
|
input: ("image" | "text")[];
|
|
30402
30986
|
cost: {
|
|
@@ -30408,7 +30992,7 @@ export declare const MODELS: {
|
|
|
30408
30992
|
contextWindow: number;
|
|
30409
30993
|
maxTokens: number;
|
|
30410
30994
|
};
|
|
30411
|
-
readonly "openai/gpt-6-
|
|
30995
|
+
readonly "openai/gpt-6-sol-pro:batch": {
|
|
30412
30996
|
id: string;
|
|
30413
30997
|
name: string;
|
|
30414
30998
|
api: "openai-completions";
|
|
@@ -30416,14 +31000,14 @@ export declare const MODELS: {
|
|
|
30416
31000
|
baseUrl: string;
|
|
30417
31001
|
reasoning: true;
|
|
30418
31002
|
thinkingLevelMap: {
|
|
30419
|
-
off:
|
|
31003
|
+
off: string;
|
|
30420
31004
|
minimal: null;
|
|
30421
31005
|
low: string;
|
|
30422
31006
|
medium: string;
|
|
30423
31007
|
high: string;
|
|
30424
31008
|
xhigh: string;
|
|
30425
31009
|
max: string;
|
|
30426
|
-
ultra:
|
|
31010
|
+
ultra: null;
|
|
30427
31011
|
};
|
|
30428
31012
|
input: ("image" | "text")[];
|
|
30429
31013
|
cost: {
|
|
@@ -30435,7 +31019,7 @@ export declare const MODELS: {
|
|
|
30435
31019
|
contextWindow: number;
|
|
30436
31020
|
maxTokens: number;
|
|
30437
31021
|
};
|
|
30438
|
-
readonly "openai/gpt-6-
|
|
31022
|
+
readonly "openai/gpt-6-sol:batch": {
|
|
30439
31023
|
id: string;
|
|
30440
31024
|
name: string;
|
|
30441
31025
|
api: "openai-completions";
|
|
@@ -30443,14 +31027,14 @@ export declare const MODELS: {
|
|
|
30443
31027
|
baseUrl: string;
|
|
30444
31028
|
reasoning: true;
|
|
30445
31029
|
thinkingLevelMap: {
|
|
30446
|
-
off:
|
|
31030
|
+
off: string;
|
|
30447
31031
|
minimal: null;
|
|
30448
31032
|
low: string;
|
|
30449
31033
|
medium: string;
|
|
30450
31034
|
high: string;
|
|
30451
31035
|
xhigh: string;
|
|
30452
31036
|
max: string;
|
|
30453
|
-
ultra:
|
|
31037
|
+
ultra: null;
|
|
30454
31038
|
};
|
|
30455
31039
|
input: ("image" | "text")[];
|
|
30456
31040
|
cost: {
|
|
@@ -30540,7 +31124,7 @@ export declare const MODELS: {
|
|
|
30540
31124
|
contextWindow: number;
|
|
30541
31125
|
maxTokens: number;
|
|
30542
31126
|
};
|
|
30543
|
-
readonly "openai/gpt-oss-
|
|
31127
|
+
readonly "openai/gpt-oss-20b": {
|
|
30544
31128
|
id: string;
|
|
30545
31129
|
name: string;
|
|
30546
31130
|
api: "openai-completions";
|
|
@@ -30567,7 +31151,7 @@ export declare const MODELS: {
|
|
|
30567
31151
|
contextWindow: number;
|
|
30568
31152
|
maxTokens: number;
|
|
30569
31153
|
};
|
|
30570
|
-
readonly "openai/gpt-oss-20b": {
|
|
31154
|
+
readonly "openai/gpt-oss-20b:batch": {
|
|
30571
31155
|
id: string;
|
|
30572
31156
|
name: string;
|
|
30573
31157
|
api: "openai-completions";
|
|
@@ -31602,27 +32186,6 @@ export declare const MODELS: {
|
|
|
31602
32186
|
contextWindow: number;
|
|
31603
32187
|
maxTokens: number;
|
|
31604
32188
|
};
|
|
31605
|
-
readonly "qwen/qwen3.5-9b:batch": {
|
|
31606
|
-
id: string;
|
|
31607
|
-
name: string;
|
|
31608
|
-
api: "openai-completions";
|
|
31609
|
-
provider: string;
|
|
31610
|
-
baseUrl: string;
|
|
31611
|
-
reasoning: true;
|
|
31612
|
-
thinkingLevelMap: {
|
|
31613
|
-
xhigh: string;
|
|
31614
|
-
max: string;
|
|
31615
|
-
};
|
|
31616
|
-
input: ("image" | "text")[];
|
|
31617
|
-
cost: {
|
|
31618
|
-
input: number;
|
|
31619
|
-
output: number;
|
|
31620
|
-
cacheRead: number;
|
|
31621
|
-
cacheWrite: number;
|
|
31622
|
-
};
|
|
31623
|
-
contextWindow: number;
|
|
31624
|
-
maxTokens: number;
|
|
31625
|
-
};
|
|
31626
32189
|
readonly "qwen/qwen3.5-flash-02-23": {
|
|
31627
32190
|
id: string;
|
|
31628
32191
|
name: string;
|
|
@@ -31881,7 +32444,7 @@ export declare const MODELS: {
|
|
|
31881
32444
|
contextWindow: number;
|
|
31882
32445
|
maxTokens: number;
|
|
31883
32446
|
};
|
|
31884
|
-
readonly "qwen/qwen3.8-
|
|
32447
|
+
readonly "qwen/qwen3.8-27b": {
|
|
31885
32448
|
id: string;
|
|
31886
32449
|
name: string;
|
|
31887
32450
|
api: "openai-completions";
|
|
@@ -31891,14 +32454,14 @@ export declare const MODELS: {
|
|
|
31891
32454
|
thinkingLevelMap: {
|
|
31892
32455
|
xhigh: string;
|
|
31893
32456
|
max: null;
|
|
31894
|
-
off:
|
|
32457
|
+
off: string;
|
|
31895
32458
|
minimal: null;
|
|
31896
32459
|
low: string;
|
|
31897
32460
|
medium: string;
|
|
31898
32461
|
high: null;
|
|
31899
32462
|
ultra: null;
|
|
31900
32463
|
};
|
|
31901
|
-
input: "text"[];
|
|
32464
|
+
input: ("image" | "text")[];
|
|
31902
32465
|
cost: {
|
|
31903
32466
|
input: number;
|
|
31904
32467
|
output: number;
|
|
@@ -31908,7 +32471,7 @@ export declare const MODELS: {
|
|
|
31908
32471
|
contextWindow: number;
|
|
31909
32472
|
maxTokens: number;
|
|
31910
32473
|
};
|
|
31911
|
-
readonly "qwen/qwen3.8-27b": {
|
|
32474
|
+
readonly "qwen/qwen3.8-27b:free": {
|
|
31912
32475
|
id: string;
|
|
31913
32476
|
name: string;
|
|
31914
32477
|
api: "openai-completions";
|
|
@@ -31935,7 +32498,7 @@ export declare const MODELS: {
|
|
|
31935
32498
|
contextWindow: number;
|
|
31936
32499
|
maxTokens: number;
|
|
31937
32500
|
};
|
|
31938
|
-
readonly "qwen/qwen3.8-
|
|
32501
|
+
readonly "qwen/qwen3.8-flash": {
|
|
31939
32502
|
id: string;
|
|
31940
32503
|
name: string;
|
|
31941
32504
|
api: "openai-completions";
|
|
@@ -31944,13 +32507,7 @@ export declare const MODELS: {
|
|
|
31944
32507
|
reasoning: true;
|
|
31945
32508
|
thinkingLevelMap: {
|
|
31946
32509
|
xhigh: string;
|
|
31947
|
-
max:
|
|
31948
|
-
off: string;
|
|
31949
|
-
minimal: null;
|
|
31950
|
-
low: string;
|
|
31951
|
-
medium: string;
|
|
31952
|
-
high: null;
|
|
31953
|
-
ultra: null;
|
|
32510
|
+
max: string;
|
|
31954
32511
|
};
|
|
31955
32512
|
input: ("image" | "text")[];
|
|
31956
32513
|
cost: {
|
|
@@ -31962,7 +32519,7 @@ export declare const MODELS: {
|
|
|
31962
32519
|
contextWindow: number;
|
|
31963
32520
|
maxTokens: number;
|
|
31964
32521
|
};
|
|
31965
|
-
readonly "qwen/qwen3.8-
|
|
32522
|
+
readonly "qwen/qwen3.8-max-0902": {
|
|
31966
32523
|
id: string;
|
|
31967
32524
|
name: string;
|
|
31968
32525
|
api: "openai-completions";
|
|
@@ -31971,7 +32528,13 @@ export declare const MODELS: {
|
|
|
31971
32528
|
reasoning: true;
|
|
31972
32529
|
thinkingLevelMap: {
|
|
31973
32530
|
xhigh: string;
|
|
31974
|
-
max:
|
|
32531
|
+
max: null;
|
|
32532
|
+
off: null;
|
|
32533
|
+
minimal: string;
|
|
32534
|
+
low: string;
|
|
32535
|
+
medium: string;
|
|
32536
|
+
high: string;
|
|
32537
|
+
ultra: null;
|
|
31975
32538
|
};
|
|
31976
32539
|
input: ("image" | "text")[];
|
|
31977
32540
|
cost: {
|
|
@@ -31983,7 +32546,7 @@ export declare const MODELS: {
|
|
|
31983
32546
|
contextWindow: number;
|
|
31984
32547
|
maxTokens: number;
|
|
31985
32548
|
};
|
|
31986
|
-
readonly "qwen/qwen3.8-
|
|
32549
|
+
readonly "qwen/qwen3.8-omni-flash": {
|
|
31987
32550
|
id: string;
|
|
31988
32551
|
name: string;
|
|
31989
32552
|
api: "openai-completions";
|
|
@@ -31992,13 +32555,7 @@ export declare const MODELS: {
|
|
|
31992
32555
|
reasoning: true;
|
|
31993
32556
|
thinkingLevelMap: {
|
|
31994
32557
|
xhigh: string;
|
|
31995
|
-
max:
|
|
31996
|
-
off: null;
|
|
31997
|
-
minimal: string;
|
|
31998
|
-
low: string;
|
|
31999
|
-
medium: string;
|
|
32000
|
-
high: string;
|
|
32001
|
-
ultra: null;
|
|
32558
|
+
max: string;
|
|
32002
32559
|
};
|
|
32003
32560
|
input: ("image" | "text")[];
|
|
32004
32561
|
cost: {
|
|
@@ -32378,33 +32935,6 @@ export declare const MODELS: {
|
|
|
32378
32935
|
contextWindow: number;
|
|
32379
32936
|
maxTokens: number;
|
|
32380
32937
|
};
|
|
32381
|
-
readonly "thinkingmachines/inkling:batch": {
|
|
32382
|
-
id: string;
|
|
32383
|
-
name: string;
|
|
32384
|
-
api: "openai-completions";
|
|
32385
|
-
provider: string;
|
|
32386
|
-
baseUrl: string;
|
|
32387
|
-
reasoning: true;
|
|
32388
|
-
thinkingLevelMap: {
|
|
32389
|
-
off: string;
|
|
32390
|
-
minimal: string;
|
|
32391
|
-
low: string;
|
|
32392
|
-
medium: string;
|
|
32393
|
-
high: string;
|
|
32394
|
-
xhigh: null;
|
|
32395
|
-
max: string;
|
|
32396
|
-
ultra: null;
|
|
32397
|
-
};
|
|
32398
|
-
input: ("image" | "text")[];
|
|
32399
|
-
cost: {
|
|
32400
|
-
input: number;
|
|
32401
|
-
output: number;
|
|
32402
|
-
cacheRead: number;
|
|
32403
|
-
cacheWrite: number;
|
|
32404
|
-
};
|
|
32405
|
-
contextWindow: number;
|
|
32406
|
-
maxTokens: number;
|
|
32407
|
-
};
|
|
32408
32938
|
readonly "thinkingmachines/inkling:free": {
|
|
32409
32939
|
id: string;
|
|
32410
32940
|
name: string;
|
|
@@ -32628,6 +33158,33 @@ export declare const MODELS: {
|
|
|
32628
33158
|
contextWindow: number;
|
|
32629
33159
|
maxTokens: number;
|
|
32630
33160
|
};
|
|
33161
|
+
readonly "x-ai/grok-4.7": {
|
|
33162
|
+
id: string;
|
|
33163
|
+
name: string;
|
|
33164
|
+
api: "openai-completions";
|
|
33165
|
+
provider: string;
|
|
33166
|
+
baseUrl: string;
|
|
33167
|
+
reasoning: true;
|
|
33168
|
+
thinkingLevelMap: {
|
|
33169
|
+
xhigh: string;
|
|
33170
|
+
off: null;
|
|
33171
|
+
minimal: null;
|
|
33172
|
+
low: string;
|
|
33173
|
+
medium: string;
|
|
33174
|
+
high: string;
|
|
33175
|
+
max: null;
|
|
33176
|
+
ultra: null;
|
|
33177
|
+
};
|
|
33178
|
+
input: ("image" | "text")[];
|
|
33179
|
+
cost: {
|
|
33180
|
+
input: number;
|
|
33181
|
+
output: number;
|
|
33182
|
+
cacheRead: number;
|
|
33183
|
+
cacheWrite: number;
|
|
33184
|
+
};
|
|
33185
|
+
contextWindow: number;
|
|
33186
|
+
maxTokens: number;
|
|
33187
|
+
};
|
|
32631
33188
|
readonly "x-ai/grok-build-0.1": {
|
|
32632
33189
|
id: string;
|
|
32633
33190
|
name: string;
|
|
@@ -32682,6 +33239,57 @@ export declare const MODELS: {
|
|
|
32682
33239
|
contextWindow: number;
|
|
32683
33240
|
maxTokens: number;
|
|
32684
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
|
+
};
|
|
32685
33293
|
readonly "z-ai/glm-4.5": {
|
|
32686
33294
|
id: string;
|
|
32687
33295
|
name: string;
|
|
@@ -32879,33 +33487,6 @@ export declare const MODELS: {
|
|
|
32879
33487
|
contextWindow: number;
|
|
32880
33488
|
maxTokens: number;
|
|
32881
33489
|
};
|
|
32882
|
-
readonly "z-ai/glm-5.2:batch": {
|
|
32883
|
-
id: string;
|
|
32884
|
-
name: string;
|
|
32885
|
-
api: "openai-completions";
|
|
32886
|
-
provider: string;
|
|
32887
|
-
baseUrl: string;
|
|
32888
|
-
reasoning: true;
|
|
32889
|
-
thinkingLevelMap: {
|
|
32890
|
-
off: string;
|
|
32891
|
-
minimal: null;
|
|
32892
|
-
low: null;
|
|
32893
|
-
medium: null;
|
|
32894
|
-
high: string;
|
|
32895
|
-
xhigh: string;
|
|
32896
|
-
max: null;
|
|
32897
|
-
ultra: null;
|
|
32898
|
-
};
|
|
32899
|
-
input: "text"[];
|
|
32900
|
-
cost: {
|
|
32901
|
-
input: number;
|
|
32902
|
-
output: number;
|
|
32903
|
-
cacheRead: number;
|
|
32904
|
-
cacheWrite: number;
|
|
32905
|
-
};
|
|
32906
|
-
contextWindow: number;
|
|
32907
|
-
maxTokens: number;
|
|
32908
|
-
};
|
|
32909
33490
|
readonly "z-ai/glm-5.3": {
|
|
32910
33491
|
id: string;
|
|
32911
33492
|
name: string;
|
|
@@ -33110,7 +33691,7 @@ export declare const MODELS: {
|
|
|
33110
33691
|
baseUrl: string;
|
|
33111
33692
|
reasoning: true;
|
|
33112
33693
|
thinkingLevelMap: {
|
|
33113
|
-
off:
|
|
33694
|
+
off: null;
|
|
33114
33695
|
minimal: null;
|
|
33115
33696
|
low: string;
|
|
33116
33697
|
medium: string;
|
|
@@ -35176,6 +35757,64 @@ export declare const MODELS: {
|
|
|
35176
35757
|
contextWindow: number;
|
|
35177
35758
|
maxTokens: number;
|
|
35178
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
|
+
};
|
|
35179
35818
|
readonly "anthropic/claude-sonnet-4": {
|
|
35180
35819
|
id: string;
|
|
35181
35820
|
name: string;
|
|
@@ -36404,6 +37043,23 @@ export declare const MODELS: {
|
|
|
36404
37043
|
contextWindow: number;
|
|
36405
37044
|
maxTokens: number;
|
|
36406
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
|
+
};
|
|
36407
37063
|
readonly "moonshotai/kimi-k2": {
|
|
36408
37064
|
id: string;
|
|
36409
37065
|
name: string;
|
|
@@ -37513,6 +38169,74 @@ export declare const MODELS: {
|
|
|
37513
38169
|
contextWindow: number;
|
|
37514
38170
|
maxTokens: number;
|
|
37515
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
|
+
};
|
|
37516
38240
|
readonly "openai/gpt-oss-120b": {
|
|
37517
38241
|
id: string;
|
|
37518
38242
|
name: string;
|
|
@@ -37734,6 +38458,40 @@ export declare const MODELS: {
|
|
|
37734
38458
|
contextWindow: number;
|
|
37735
38459
|
maxTokens: number;
|
|
37736
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
|
+
};
|
|
37737
38495
|
readonly "sakana/fugu-max": {
|
|
37738
38496
|
id: string;
|
|
37739
38497
|
name: string;
|
|
@@ -37995,6 +38753,26 @@ export declare const MODELS: {
|
|
|
37995
38753
|
contextWindow: number;
|
|
37996
38754
|
maxTokens: number;
|
|
37997
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
|
+
};
|
|
37998
38776
|
readonly "spacexai/grok-build-0.1": {
|
|
37999
38777
|
id: string;
|
|
38000
38778
|
name: string;
|
|
@@ -38148,6 +38926,57 @@ export declare const MODELS: {
|
|
|
38148
38926
|
contextWindow: number;
|
|
38149
38927
|
maxTokens: number;
|
|
38150
38928
|
};
|
|
38929
|
+
readonly "xiaomi/mimo-v2.6-flash": {
|
|
38930
|
+
id: string;
|
|
38931
|
+
name: string;
|
|
38932
|
+
api: "anthropic-messages";
|
|
38933
|
+
provider: string;
|
|
38934
|
+
baseUrl: string;
|
|
38935
|
+
reasoning: true;
|
|
38936
|
+
input: ("image" | "text")[];
|
|
38937
|
+
cost: {
|
|
38938
|
+
input: number;
|
|
38939
|
+
output: number;
|
|
38940
|
+
cacheRead: number;
|
|
38941
|
+
cacheWrite: number;
|
|
38942
|
+
};
|
|
38943
|
+
contextWindow: number;
|
|
38944
|
+
maxTokens: number;
|
|
38945
|
+
};
|
|
38946
|
+
readonly "xiaomi/mimo-v2.6-pro": {
|
|
38947
|
+
id: string;
|
|
38948
|
+
name: string;
|
|
38949
|
+
api: "anthropic-messages";
|
|
38950
|
+
provider: string;
|
|
38951
|
+
baseUrl: string;
|
|
38952
|
+
reasoning: true;
|
|
38953
|
+
input: ("image" | "text")[];
|
|
38954
|
+
cost: {
|
|
38955
|
+
input: number;
|
|
38956
|
+
output: number;
|
|
38957
|
+
cacheRead: number;
|
|
38958
|
+
cacheWrite: number;
|
|
38959
|
+
};
|
|
38960
|
+
contextWindow: number;
|
|
38961
|
+
maxTokens: number;
|
|
38962
|
+
};
|
|
38963
|
+
readonly "xiaomi/mimo-v2.6-pro-ultraspeed": {
|
|
38964
|
+
id: string;
|
|
38965
|
+
name: string;
|
|
38966
|
+
api: "anthropic-messages";
|
|
38967
|
+
provider: string;
|
|
38968
|
+
baseUrl: string;
|
|
38969
|
+
reasoning: true;
|
|
38970
|
+
input: ("image" | "text")[];
|
|
38971
|
+
cost: {
|
|
38972
|
+
input: number;
|
|
38973
|
+
output: number;
|
|
38974
|
+
cacheRead: number;
|
|
38975
|
+
cacheWrite: number;
|
|
38976
|
+
};
|
|
38977
|
+
contextWindow: number;
|
|
38978
|
+
maxTokens: number;
|
|
38979
|
+
};
|
|
38151
38980
|
readonly "zai/glm-4.5": {
|
|
38152
38981
|
id: string;
|
|
38153
38982
|
name: string;
|
|
@@ -39509,6 +40338,26 @@ export declare const MODELS: {
|
|
|
39509
40338
|
contextWindow: number;
|
|
39510
40339
|
maxTokens: number;
|
|
39511
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
|
+
};
|
|
39512
40361
|
readonly "grok-build-0.1": {
|
|
39513
40362
|
id: string;
|
|
39514
40363
|
name: string;
|
|
@@ -39671,6 +40520,69 @@ export declare const MODELS: {
|
|
|
39671
40520
|
contextWindow: number;
|
|
39672
40521
|
maxTokens: number;
|
|
39673
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
|
+
};
|
|
39674
40586
|
};
|
|
39675
40587
|
readonly "xiaomi-token-plan-ams": {
|
|
39676
40588
|
readonly "mimo-v2-omni": {
|
|
@@ -39778,6 +40690,69 @@ export declare const MODELS: {
|
|
|
39778
40690
|
contextWindow: number;
|
|
39779
40691
|
maxTokens: number;
|
|
39780
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
|
+
};
|
|
39781
40756
|
};
|
|
39782
40757
|
readonly "xiaomi-token-plan-cn": {
|
|
39783
40758
|
readonly "mimo-v2-omni": {
|
|
@@ -39885,6 +40860,69 @@ export declare const MODELS: {
|
|
|
39885
40860
|
contextWindow: number;
|
|
39886
40861
|
maxTokens: number;
|
|
39887
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
|
+
};
|
|
39888
40926
|
};
|
|
39889
40927
|
readonly "xiaomi-token-plan-sgp": {
|
|
39890
40928
|
readonly "mimo-v2-omni": {
|
|
@@ -39992,6 +41030,69 @@ export declare const MODELS: {
|
|
|
39992
41030
|
contextWindow: number;
|
|
39993
41031
|
maxTokens: number;
|
|
39994
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
|
+
};
|
|
39995
41096
|
};
|
|
39996
41097
|
readonly zai: {
|
|
39997
41098
|
readonly "glm-4.7": {
|