@caupulican/pi-ai 0.75.6 → 0.78.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/README.md +1 -1
- package/dist/image-models.generated.d.ts.map +1 -1
- package/dist/image-models.generated.js +146 -146
- package/dist/image-models.generated.js.map +1 -1
- package/dist/models.generated.d.ts +500 -298
- package/dist/models.generated.d.ts.map +1 -1
- package/dist/models.generated.js +617 -491
- package/dist/models.generated.js.map +1 -1
- package/dist/providers/amazon-bedrock.d.ts +1 -1
- package/dist/providers/amazon-bedrock.d.ts.map +1 -1
- package/dist/providers/amazon-bedrock.js +48 -5
- package/dist/providers/amazon-bedrock.js.map +1 -1
- package/dist/providers/anthropic.d.ts.map +1 -1
- package/dist/providers/anthropic.js +51 -15
- package/dist/providers/anthropic.js.map +1 -1
- package/dist/providers/azure-openai-responses.d.ts.map +1 -1
- package/dist/providers/azure-openai-responses.js +6 -10
- package/dist/providers/azure-openai-responses.js.map +1 -1
- package/dist/providers/google-vertex.d.ts.map +1 -1
- package/dist/providers/google-vertex.js +1 -1
- package/dist/providers/google-vertex.js.map +1 -1
- package/dist/providers/google.d.ts.map +1 -1
- package/dist/providers/google.js +5 -3
- package/dist/providers/google.js.map +1 -1
- package/dist/providers/images/openrouter.d.ts.map +1 -1
- package/dist/providers/images/openrouter.js +3 -4
- package/dist/providers/images/openrouter.js.map +1 -1
- package/dist/providers/mistral.d.ts.map +1 -1
- package/dist/providers/mistral.js +2 -3
- package/dist/providers/mistral.js.map +1 -1
- package/dist/providers/openai-codex-responses.d.ts.map +1 -1
- package/dist/providers/openai-codex-responses.js +159 -78
- package/dist/providers/openai-codex-responses.js.map +1 -1
- package/dist/providers/openai-completions.d.ts.map +1 -1
- package/dist/providers/openai-completions.js +44 -18
- 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 +4 -1
- package/dist/providers/openai-responses-shared.js.map +1 -1
- package/dist/providers/openai-responses.d.ts.map +1 -1
- package/dist/providers/openai-responses.js +6 -10
- package/dist/providers/openai-responses.js.map +1 -1
- package/dist/providers/simple-options.d.ts.map +1 -1
- package/dist/providers/simple-options.js +1 -0
- package/dist/providers/simple-options.js.map +1 -1
- package/dist/stream.d.ts.map +1 -1
- package/dist/stream.js +14 -2
- package/dist/stream.js.map +1 -1
- package/dist/types.d.ts +21 -5
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/dist/utils/abort-signals.d.ts +6 -0
- package/dist/utils/abort-signals.d.ts.map +1 -0
- package/dist/utils/abort-signals.js +34 -0
- package/dist/utils/abort-signals.js.map +1 -0
- package/dist/utils/oauth/device-code.d.ts +9 -7
- package/dist/utils/oauth/device-code.d.ts.map +1 -1
- package/dist/utils/oauth/device-code.js +8 -7
- package/dist/utils/oauth/device-code.js.map +1 -1
- package/dist/utils/oauth/github-copilot.d.ts.map +1 -1
- package/dist/utils/oauth/github-copilot.js +1 -1
- package/dist/utils/oauth/github-copilot.js.map +1 -1
- package/dist/utils/oauth/index.d.ts +1 -1
- package/dist/utils/oauth/index.d.ts.map +1 -1
- package/dist/utils/oauth/index.js +1 -1
- package/dist/utils/oauth/index.js.map +1 -1
- package/dist/utils/oauth/openai-codex.d.ts +10 -1
- package/dist/utils/oauth/openai-codex.d.ts.map +1 -1
- package/dist/utils/oauth/openai-codex.js +179 -79
- package/dist/utils/oauth/openai-codex.js.map +1 -1
- package/package.json +104 -91
|
@@ -159,6 +159,26 @@ export declare const MODELS: {
|
|
|
159
159
|
contextWindow: number;
|
|
160
160
|
maxTokens: number;
|
|
161
161
|
};
|
|
162
|
+
readonly "anthropic.claude-opus-4-8": {
|
|
163
|
+
id: string;
|
|
164
|
+
name: string;
|
|
165
|
+
api: "bedrock-converse-stream";
|
|
166
|
+
provider: string;
|
|
167
|
+
baseUrl: string;
|
|
168
|
+
reasoning: true;
|
|
169
|
+
thinkingLevelMap: {
|
|
170
|
+
xhigh: string;
|
|
171
|
+
};
|
|
172
|
+
input: ("image" | "text")[];
|
|
173
|
+
cost: {
|
|
174
|
+
input: number;
|
|
175
|
+
output: number;
|
|
176
|
+
cacheRead: number;
|
|
177
|
+
cacheWrite: number;
|
|
178
|
+
};
|
|
179
|
+
contextWindow: number;
|
|
180
|
+
maxTokens: number;
|
|
181
|
+
};
|
|
162
182
|
readonly "anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
163
183
|
id: string;
|
|
164
184
|
name: string;
|
|
@@ -230,6 +250,26 @@ export declare const MODELS: {
|
|
|
230
250
|
contextWindow: number;
|
|
231
251
|
maxTokens: number;
|
|
232
252
|
};
|
|
253
|
+
readonly "au.anthropic.claude-opus-4-8": {
|
|
254
|
+
id: string;
|
|
255
|
+
name: string;
|
|
256
|
+
api: "bedrock-converse-stream";
|
|
257
|
+
provider: string;
|
|
258
|
+
baseUrl: string;
|
|
259
|
+
reasoning: true;
|
|
260
|
+
thinkingLevelMap: {
|
|
261
|
+
xhigh: string;
|
|
262
|
+
};
|
|
263
|
+
input: ("image" | "text")[];
|
|
264
|
+
cost: {
|
|
265
|
+
input: number;
|
|
266
|
+
output: number;
|
|
267
|
+
cacheRead: number;
|
|
268
|
+
cacheWrite: number;
|
|
269
|
+
};
|
|
270
|
+
contextWindow: number;
|
|
271
|
+
maxTokens: number;
|
|
272
|
+
};
|
|
233
273
|
readonly "au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
234
274
|
id: string;
|
|
235
275
|
name: string;
|
|
@@ -389,6 +429,26 @@ export declare const MODELS: {
|
|
|
389
429
|
contextWindow: number;
|
|
390
430
|
maxTokens: number;
|
|
391
431
|
};
|
|
432
|
+
readonly "eu.anthropic.claude-opus-4-8": {
|
|
433
|
+
id: string;
|
|
434
|
+
name: string;
|
|
435
|
+
api: "bedrock-converse-stream";
|
|
436
|
+
provider: string;
|
|
437
|
+
baseUrl: string;
|
|
438
|
+
reasoning: true;
|
|
439
|
+
thinkingLevelMap: {
|
|
440
|
+
xhigh: string;
|
|
441
|
+
};
|
|
442
|
+
input: ("image" | "text")[];
|
|
443
|
+
cost: {
|
|
444
|
+
input: number;
|
|
445
|
+
output: number;
|
|
446
|
+
cacheRead: number;
|
|
447
|
+
cacheWrite: number;
|
|
448
|
+
};
|
|
449
|
+
contextWindow: number;
|
|
450
|
+
maxTokens: number;
|
|
451
|
+
};
|
|
392
452
|
readonly "eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
393
453
|
id: string;
|
|
394
454
|
name: string;
|
|
@@ -497,6 +557,26 @@ export declare const MODELS: {
|
|
|
497
557
|
contextWindow: number;
|
|
498
558
|
maxTokens: number;
|
|
499
559
|
};
|
|
560
|
+
readonly "global.anthropic.claude-opus-4-8": {
|
|
561
|
+
id: string;
|
|
562
|
+
name: string;
|
|
563
|
+
api: "bedrock-converse-stream";
|
|
564
|
+
provider: string;
|
|
565
|
+
baseUrl: string;
|
|
566
|
+
reasoning: true;
|
|
567
|
+
thinkingLevelMap: {
|
|
568
|
+
xhigh: string;
|
|
569
|
+
};
|
|
570
|
+
input: ("image" | "text")[];
|
|
571
|
+
cost: {
|
|
572
|
+
input: number;
|
|
573
|
+
output: number;
|
|
574
|
+
cacheRead: number;
|
|
575
|
+
cacheWrite: number;
|
|
576
|
+
};
|
|
577
|
+
contextWindow: number;
|
|
578
|
+
maxTokens: number;
|
|
579
|
+
};
|
|
500
580
|
readonly "global.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
501
581
|
id: string;
|
|
502
582
|
name: string;
|
|
@@ -585,6 +665,26 @@ export declare const MODELS: {
|
|
|
585
665
|
contextWindow: number;
|
|
586
666
|
maxTokens: number;
|
|
587
667
|
};
|
|
668
|
+
readonly "jp.anthropic.claude-opus-4-8": {
|
|
669
|
+
id: string;
|
|
670
|
+
name: string;
|
|
671
|
+
api: "bedrock-converse-stream";
|
|
672
|
+
provider: string;
|
|
673
|
+
baseUrl: string;
|
|
674
|
+
reasoning: true;
|
|
675
|
+
thinkingLevelMap: {
|
|
676
|
+
xhigh: string;
|
|
677
|
+
};
|
|
678
|
+
input: ("image" | "text")[];
|
|
679
|
+
cost: {
|
|
680
|
+
input: number;
|
|
681
|
+
output: number;
|
|
682
|
+
cacheRead: number;
|
|
683
|
+
cacheWrite: number;
|
|
684
|
+
};
|
|
685
|
+
contextWindow: number;
|
|
686
|
+
maxTokens: number;
|
|
687
|
+
};
|
|
588
688
|
readonly "jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
589
689
|
id: string;
|
|
590
690
|
name: string;
|
|
@@ -1288,6 +1388,26 @@ export declare const MODELS: {
|
|
|
1288
1388
|
contextWindow: number;
|
|
1289
1389
|
maxTokens: number;
|
|
1290
1390
|
};
|
|
1391
|
+
readonly "us.anthropic.claude-opus-4-8": {
|
|
1392
|
+
id: string;
|
|
1393
|
+
name: string;
|
|
1394
|
+
api: "bedrock-converse-stream";
|
|
1395
|
+
provider: string;
|
|
1396
|
+
baseUrl: string;
|
|
1397
|
+
reasoning: true;
|
|
1398
|
+
thinkingLevelMap: {
|
|
1399
|
+
xhigh: string;
|
|
1400
|
+
};
|
|
1401
|
+
input: ("image" | "text")[];
|
|
1402
|
+
cost: {
|
|
1403
|
+
input: number;
|
|
1404
|
+
output: number;
|
|
1405
|
+
cacheRead: number;
|
|
1406
|
+
cacheWrite: number;
|
|
1407
|
+
};
|
|
1408
|
+
contextWindow: number;
|
|
1409
|
+
maxTokens: number;
|
|
1410
|
+
};
|
|
1291
1411
|
readonly "us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
1292
1412
|
id: string;
|
|
1293
1413
|
name: string;
|
|
@@ -1763,6 +1883,31 @@ export declare const MODELS: {
|
|
|
1763
1883
|
baseUrl: string;
|
|
1764
1884
|
compat: {
|
|
1765
1885
|
forceAdaptiveThinking: true;
|
|
1886
|
+
supportsTemperature: false;
|
|
1887
|
+
};
|
|
1888
|
+
reasoning: true;
|
|
1889
|
+
thinkingLevelMap: {
|
|
1890
|
+
xhigh: string;
|
|
1891
|
+
};
|
|
1892
|
+
input: ("image" | "text")[];
|
|
1893
|
+
cost: {
|
|
1894
|
+
input: number;
|
|
1895
|
+
output: number;
|
|
1896
|
+
cacheRead: number;
|
|
1897
|
+
cacheWrite: number;
|
|
1898
|
+
};
|
|
1899
|
+
contextWindow: number;
|
|
1900
|
+
maxTokens: number;
|
|
1901
|
+
};
|
|
1902
|
+
readonly "claude-opus-4-8": {
|
|
1903
|
+
id: string;
|
|
1904
|
+
name: string;
|
|
1905
|
+
api: "anthropic-messages";
|
|
1906
|
+
provider: string;
|
|
1907
|
+
baseUrl: string;
|
|
1908
|
+
compat: {
|
|
1909
|
+
forceAdaptiveThinking: true;
|
|
1910
|
+
supportsTemperature: false;
|
|
1766
1911
|
};
|
|
1767
1912
|
reasoning: true;
|
|
1768
1913
|
thinkingLevelMap: {
|
|
@@ -2520,6 +2665,8 @@ export declare const MODELS: {
|
|
|
2520
2665
|
thinkingLevelMap: {
|
|
2521
2666
|
off: null;
|
|
2522
2667
|
xhigh: string;
|
|
2668
|
+
minimal: null;
|
|
2669
|
+
low: null;
|
|
2523
2670
|
};
|
|
2524
2671
|
input: ("image" | "text")[];
|
|
2525
2672
|
cost: {
|
|
@@ -2703,23 +2850,6 @@ export declare const MODELS: {
|
|
|
2703
2850
|
contextWindow: number;
|
|
2704
2851
|
maxTokens: number;
|
|
2705
2852
|
};
|
|
2706
|
-
readonly "qwen-3-235b-a22b-instruct-2507": {
|
|
2707
|
-
id: string;
|
|
2708
|
-
name: string;
|
|
2709
|
-
api: "openai-completions";
|
|
2710
|
-
provider: string;
|
|
2711
|
-
baseUrl: string;
|
|
2712
|
-
reasoning: false;
|
|
2713
|
-
input: "text"[];
|
|
2714
|
-
cost: {
|
|
2715
|
-
input: number;
|
|
2716
|
-
output: number;
|
|
2717
|
-
cacheRead: number;
|
|
2718
|
-
cacheWrite: number;
|
|
2719
|
-
};
|
|
2720
|
-
contextWindow: number;
|
|
2721
|
-
maxTokens: number;
|
|
2722
|
-
};
|
|
2723
2853
|
readonly "zai-glm-4.7": {
|
|
2724
2854
|
id: string;
|
|
2725
2855
|
name: string;
|
|
@@ -2940,6 +3070,31 @@ export declare const MODELS: {
|
|
|
2940
3070
|
baseUrl: string;
|
|
2941
3071
|
compat: {
|
|
2942
3072
|
forceAdaptiveThinking: true;
|
|
3073
|
+
supportsTemperature: false;
|
|
3074
|
+
};
|
|
3075
|
+
reasoning: true;
|
|
3076
|
+
thinkingLevelMap: {
|
|
3077
|
+
xhigh: string;
|
|
3078
|
+
};
|
|
3079
|
+
input: ("image" | "text")[];
|
|
3080
|
+
cost: {
|
|
3081
|
+
input: number;
|
|
3082
|
+
output: number;
|
|
3083
|
+
cacheRead: number;
|
|
3084
|
+
cacheWrite: number;
|
|
3085
|
+
};
|
|
3086
|
+
contextWindow: number;
|
|
3087
|
+
maxTokens: number;
|
|
3088
|
+
};
|
|
3089
|
+
readonly "claude-opus-4-8": {
|
|
3090
|
+
id: string;
|
|
3091
|
+
name: string;
|
|
3092
|
+
api: "anthropic-messages";
|
|
3093
|
+
provider: string;
|
|
3094
|
+
baseUrl: string;
|
|
3095
|
+
compat: {
|
|
3096
|
+
forceAdaptiveThinking: true;
|
|
3097
|
+
supportsTemperature: false;
|
|
2943
3098
|
};
|
|
2944
3099
|
reasoning: true;
|
|
2945
3100
|
thinkingLevelMap: {
|
|
@@ -3489,26 +3644,6 @@ export declare const MODELS: {
|
|
|
3489
3644
|
contextWindow: number;
|
|
3490
3645
|
maxTokens: number;
|
|
3491
3646
|
};
|
|
3492
|
-
readonly "@cf/moonshotai/kimi-k2.5": {
|
|
3493
|
-
id: string;
|
|
3494
|
-
name: string;
|
|
3495
|
-
api: "openai-completions";
|
|
3496
|
-
provider: string;
|
|
3497
|
-
baseUrl: string;
|
|
3498
|
-
compat: {
|
|
3499
|
-
sendSessionAffinityHeaders: true;
|
|
3500
|
-
};
|
|
3501
|
-
reasoning: true;
|
|
3502
|
-
input: ("image" | "text")[];
|
|
3503
|
-
cost: {
|
|
3504
|
-
input: number;
|
|
3505
|
-
output: number;
|
|
3506
|
-
cacheRead: number;
|
|
3507
|
-
cacheWrite: number;
|
|
3508
|
-
};
|
|
3509
|
-
contextWindow: number;
|
|
3510
|
-
maxTokens: number;
|
|
3511
|
-
};
|
|
3512
3647
|
readonly "@cf/moonshotai/kimi-k2.6": {
|
|
3513
3648
|
id: string;
|
|
3514
3649
|
name: string;
|
|
@@ -4059,6 +4194,37 @@ export declare const MODELS: {
|
|
|
4059
4194
|
};
|
|
4060
4195
|
compat: {
|
|
4061
4196
|
forceAdaptiveThinking: true;
|
|
4197
|
+
supportsTemperature: false;
|
|
4198
|
+
};
|
|
4199
|
+
reasoning: true;
|
|
4200
|
+
thinkingLevelMap: {
|
|
4201
|
+
xhigh: string;
|
|
4202
|
+
};
|
|
4203
|
+
input: ("image" | "text")[];
|
|
4204
|
+
cost: {
|
|
4205
|
+
input: number;
|
|
4206
|
+
output: number;
|
|
4207
|
+
cacheRead: number;
|
|
4208
|
+
cacheWrite: number;
|
|
4209
|
+
};
|
|
4210
|
+
contextWindow: number;
|
|
4211
|
+
maxTokens: number;
|
|
4212
|
+
};
|
|
4213
|
+
readonly "claude-opus-4.8": {
|
|
4214
|
+
id: string;
|
|
4215
|
+
name: string;
|
|
4216
|
+
api: "anthropic-messages";
|
|
4217
|
+
provider: string;
|
|
4218
|
+
baseUrl: string;
|
|
4219
|
+
headers: {
|
|
4220
|
+
"User-Agent": string;
|
|
4221
|
+
"Editor-Version": string;
|
|
4222
|
+
"Editor-Plugin-Version": string;
|
|
4223
|
+
"Copilot-Integration-Id": string;
|
|
4224
|
+
};
|
|
4225
|
+
compat: {
|
|
4226
|
+
forceAdaptiveThinking: true;
|
|
4227
|
+
supportsTemperature: false;
|
|
4062
4228
|
};
|
|
4063
4229
|
reasoning: true;
|
|
4064
4230
|
thinkingLevelMap: {
|
|
@@ -5884,6 +6050,32 @@ export declare const MODELS: {
|
|
|
5884
6050
|
maxTokens: number;
|
|
5885
6051
|
};
|
|
5886
6052
|
};
|
|
6053
|
+
readonly "llama-cpp": {
|
|
6054
|
+
readonly local: {
|
|
6055
|
+
id: string;
|
|
6056
|
+
name: string;
|
|
6057
|
+
api: "openai-completions";
|
|
6058
|
+
provider: string;
|
|
6059
|
+
baseUrl: string;
|
|
6060
|
+
compat: {
|
|
6061
|
+
supportsDeveloperRole: false;
|
|
6062
|
+
supportsStore: false;
|
|
6063
|
+
supportsReasoningEffort: false;
|
|
6064
|
+
maxTokensField: "max_tokens";
|
|
6065
|
+
supportsStrictMode: false;
|
|
6066
|
+
};
|
|
6067
|
+
reasoning: false;
|
|
6068
|
+
input: "text"[];
|
|
6069
|
+
cost: {
|
|
6070
|
+
input: number;
|
|
6071
|
+
output: number;
|
|
6072
|
+
cacheRead: number;
|
|
6073
|
+
cacheWrite: number;
|
|
6074
|
+
};
|
|
6075
|
+
contextWindow: number;
|
|
6076
|
+
maxTokens: number;
|
|
6077
|
+
};
|
|
6078
|
+
};
|
|
5887
6079
|
readonly minimax: {
|
|
5888
6080
|
readonly "MiniMax-M2.7": {
|
|
5889
6081
|
id: string;
|
|
@@ -7406,6 +7598,7 @@ export declare const MODELS: {
|
|
|
7406
7598
|
thinkingLevelMap: {
|
|
7407
7599
|
off: string;
|
|
7408
7600
|
xhigh: string;
|
|
7601
|
+
minimal: null;
|
|
7409
7602
|
};
|
|
7410
7603
|
input: ("image" | "text")[];
|
|
7411
7604
|
cost: {
|
|
@@ -7427,6 +7620,8 @@ export declare const MODELS: {
|
|
|
7427
7620
|
thinkingLevelMap: {
|
|
7428
7621
|
off: null;
|
|
7429
7622
|
xhigh: string;
|
|
7623
|
+
minimal: null;
|
|
7624
|
+
low: null;
|
|
7430
7625
|
};
|
|
7431
7626
|
input: ("image" | "text")[];
|
|
7432
7627
|
cost: {
|
|
@@ -7803,6 +7998,7 @@ export declare const MODELS: {
|
|
|
7803
7998
|
baseUrl: string;
|
|
7804
7999
|
compat: {
|
|
7805
8000
|
forceAdaptiveThinking: true;
|
|
8001
|
+
supportsTemperature: false;
|
|
7806
8002
|
};
|
|
7807
8003
|
reasoning: true;
|
|
7808
8004
|
thinkingLevelMap: {
|
|
@@ -7818,15 +8014,39 @@ export declare const MODELS: {
|
|
|
7818
8014
|
contextWindow: number;
|
|
7819
8015
|
maxTokens: number;
|
|
7820
8016
|
};
|
|
7821
|
-
readonly "claude-
|
|
8017
|
+
readonly "claude-opus-4-8": {
|
|
7822
8018
|
id: string;
|
|
7823
8019
|
name: string;
|
|
7824
8020
|
api: "anthropic-messages";
|
|
7825
8021
|
provider: string;
|
|
7826
8022
|
baseUrl: string;
|
|
8023
|
+
compat: {
|
|
8024
|
+
forceAdaptiveThinking: true;
|
|
8025
|
+
supportsTemperature: false;
|
|
8026
|
+
};
|
|
7827
8027
|
reasoning: true;
|
|
7828
|
-
|
|
7829
|
-
|
|
8028
|
+
thinkingLevelMap: {
|
|
8029
|
+
xhigh: string;
|
|
8030
|
+
};
|
|
8031
|
+
input: ("image" | "text")[];
|
|
8032
|
+
cost: {
|
|
8033
|
+
input: number;
|
|
8034
|
+
output: number;
|
|
8035
|
+
cacheRead: number;
|
|
8036
|
+
cacheWrite: number;
|
|
8037
|
+
};
|
|
8038
|
+
contextWindow: number;
|
|
8039
|
+
maxTokens: number;
|
|
8040
|
+
};
|
|
8041
|
+
readonly "claude-sonnet-4": {
|
|
8042
|
+
id: string;
|
|
8043
|
+
name: string;
|
|
8044
|
+
api: "anthropic-messages";
|
|
8045
|
+
provider: string;
|
|
8046
|
+
baseUrl: string;
|
|
8047
|
+
reasoning: true;
|
|
8048
|
+
input: ("image" | "text")[];
|
|
8049
|
+
cost: {
|
|
7830
8050
|
input: number;
|
|
7831
8051
|
output: number;
|
|
7832
8052
|
cacheRead: number;
|
|
@@ -7872,6 +8092,34 @@ export declare const MODELS: {
|
|
|
7872
8092
|
contextWindow: number;
|
|
7873
8093
|
maxTokens: number;
|
|
7874
8094
|
};
|
|
8095
|
+
readonly "deepseek-v4-flash": {
|
|
8096
|
+
id: string;
|
|
8097
|
+
name: string;
|
|
8098
|
+
api: "openai-completions";
|
|
8099
|
+
provider: string;
|
|
8100
|
+
baseUrl: string;
|
|
8101
|
+
compat: {
|
|
8102
|
+
requiresReasoningContentOnAssistantMessages: true;
|
|
8103
|
+
thinkingFormat: "deepseek";
|
|
8104
|
+
};
|
|
8105
|
+
reasoning: true;
|
|
8106
|
+
thinkingLevelMap: {
|
|
8107
|
+
minimal: null;
|
|
8108
|
+
low: null;
|
|
8109
|
+
medium: null;
|
|
8110
|
+
high: string;
|
|
8111
|
+
xhigh: string;
|
|
8112
|
+
};
|
|
8113
|
+
input: "text"[];
|
|
8114
|
+
cost: {
|
|
8115
|
+
input: number;
|
|
8116
|
+
output: number;
|
|
8117
|
+
cacheRead: number;
|
|
8118
|
+
cacheWrite: number;
|
|
8119
|
+
};
|
|
8120
|
+
contextWindow: number;
|
|
8121
|
+
maxTokens: number;
|
|
8122
|
+
};
|
|
7875
8123
|
readonly "deepseek-v4-flash-free": {
|
|
7876
8124
|
id: string;
|
|
7877
8125
|
name: string;
|
|
@@ -8316,6 +8564,8 @@ export declare const MODELS: {
|
|
|
8316
8564
|
thinkingLevelMap: {
|
|
8317
8565
|
off: null;
|
|
8318
8566
|
xhigh: string;
|
|
8567
|
+
minimal: null;
|
|
8568
|
+
low: null;
|
|
8319
8569
|
};
|
|
8320
8570
|
input: ("image" | "text")[];
|
|
8321
8571
|
cost: {
|
|
@@ -8333,7 +8583,16 @@ export declare const MODELS: {
|
|
|
8333
8583
|
api: "openai-completions";
|
|
8334
8584
|
provider: string;
|
|
8335
8585
|
baseUrl: string;
|
|
8586
|
+
compat: {
|
|
8587
|
+
supportsReasoningEffort: false;
|
|
8588
|
+
};
|
|
8336
8589
|
reasoning: true;
|
|
8590
|
+
thinkingLevelMap: {
|
|
8591
|
+
off: null;
|
|
8592
|
+
minimal: null;
|
|
8593
|
+
low: null;
|
|
8594
|
+
medium: null;
|
|
8595
|
+
};
|
|
8337
8596
|
input: ("image" | "text")[];
|
|
8338
8597
|
cost: {
|
|
8339
8598
|
input: number;
|
|
@@ -8362,6 +8621,27 @@ export declare const MODELS: {
|
|
|
8362
8621
|
maxTokens: number;
|
|
8363
8622
|
};
|
|
8364
8623
|
readonly "kimi-k2.6": {
|
|
8624
|
+
id: string;
|
|
8625
|
+
name: string;
|
|
8626
|
+
api: "openai-completions";
|
|
8627
|
+
provider: string;
|
|
8628
|
+
baseUrl: string;
|
|
8629
|
+
compat: {
|
|
8630
|
+
thinkingFormat: "deepseek";
|
|
8631
|
+
supportsReasoningEffort: false;
|
|
8632
|
+
};
|
|
8633
|
+
reasoning: true;
|
|
8634
|
+
input: ("image" | "text")[];
|
|
8635
|
+
cost: {
|
|
8636
|
+
input: number;
|
|
8637
|
+
output: number;
|
|
8638
|
+
cacheRead: number;
|
|
8639
|
+
cacheWrite: number;
|
|
8640
|
+
};
|
|
8641
|
+
contextWindow: number;
|
|
8642
|
+
maxTokens: number;
|
|
8643
|
+
};
|
|
8644
|
+
readonly "mimo-v2.5-free": {
|
|
8365
8645
|
id: string;
|
|
8366
8646
|
name: string;
|
|
8367
8647
|
api: "openai-completions";
|
|
@@ -8412,6 +8692,23 @@ export declare const MODELS: {
|
|
|
8412
8692
|
contextWindow: number;
|
|
8413
8693
|
maxTokens: number;
|
|
8414
8694
|
};
|
|
8695
|
+
readonly "minimax-m3-free": {
|
|
8696
|
+
id: string;
|
|
8697
|
+
name: string;
|
|
8698
|
+
api: "anthropic-messages";
|
|
8699
|
+
provider: string;
|
|
8700
|
+
baseUrl: string;
|
|
8701
|
+
reasoning: true;
|
|
8702
|
+
input: ("image" | "text")[];
|
|
8703
|
+
cost: {
|
|
8704
|
+
input: number;
|
|
8705
|
+
output: number;
|
|
8706
|
+
cacheRead: number;
|
|
8707
|
+
cacheWrite: number;
|
|
8708
|
+
};
|
|
8709
|
+
contextWindow: number;
|
|
8710
|
+
maxTokens: number;
|
|
8711
|
+
};
|
|
8415
8712
|
readonly "nemotron-3-super-free": {
|
|
8416
8713
|
id: string;
|
|
8417
8714
|
name: string;
|
|
@@ -8578,7 +8875,16 @@ export declare const MODELS: {
|
|
|
8578
8875
|
api: "openai-completions";
|
|
8579
8876
|
provider: string;
|
|
8580
8877
|
baseUrl: string;
|
|
8878
|
+
compat: {
|
|
8879
|
+
thinkingFormat: "deepseek";
|
|
8880
|
+
supportsReasoningEffort: false;
|
|
8881
|
+
};
|
|
8581
8882
|
reasoning: true;
|
|
8883
|
+
thinkingLevelMap: {
|
|
8884
|
+
minimal: null;
|
|
8885
|
+
low: null;
|
|
8886
|
+
medium: null;
|
|
8887
|
+
};
|
|
8582
8888
|
input: ("image" | "text")[];
|
|
8583
8889
|
cost: {
|
|
8584
8890
|
input: number;
|
|
@@ -8657,15 +8963,12 @@ export declare const MODELS: {
|
|
|
8657
8963
|
contextWindow: number;
|
|
8658
8964
|
maxTokens: number;
|
|
8659
8965
|
};
|
|
8660
|
-
readonly "
|
|
8966
|
+
readonly "minimax-m3": {
|
|
8661
8967
|
id: string;
|
|
8662
8968
|
name: string;
|
|
8663
|
-
api: "
|
|
8969
|
+
api: "anthropic-messages";
|
|
8664
8970
|
provider: string;
|
|
8665
8971
|
baseUrl: string;
|
|
8666
|
-
compat: {
|
|
8667
|
-
thinkingFormat: "qwen";
|
|
8668
|
-
};
|
|
8669
8972
|
reasoning: true;
|
|
8670
8973
|
input: ("image" | "text")[];
|
|
8671
8974
|
cost: {
|
|
@@ -8697,15 +9000,13 @@ export declare const MODELS: {
|
|
|
8697
9000
|
contextWindow: number;
|
|
8698
9001
|
maxTokens: number;
|
|
8699
9002
|
};
|
|
8700
|
-
|
|
8701
|
-
readonly openrouter: {
|
|
8702
|
-
readonly "ai21/jamba-large-1.7": {
|
|
9003
|
+
readonly "qwen3.7-max": {
|
|
8703
9004
|
id: string;
|
|
8704
9005
|
name: string;
|
|
8705
|
-
api: "
|
|
9006
|
+
api: "anthropic-messages";
|
|
8706
9007
|
provider: string;
|
|
8707
9008
|
baseUrl: string;
|
|
8708
|
-
reasoning:
|
|
9009
|
+
reasoning: true;
|
|
8709
9010
|
input: "text"[];
|
|
8710
9011
|
cost: {
|
|
8711
9012
|
input: number;
|
|
@@ -8716,13 +9017,15 @@ export declare const MODELS: {
|
|
|
8716
9017
|
contextWindow: number;
|
|
8717
9018
|
maxTokens: number;
|
|
8718
9019
|
};
|
|
8719
|
-
|
|
9020
|
+
};
|
|
9021
|
+
readonly openrouter: {
|
|
9022
|
+
readonly "ai21/jamba-large-1.7": {
|
|
8720
9023
|
id: string;
|
|
8721
9024
|
name: string;
|
|
8722
9025
|
api: "openai-completions";
|
|
8723
9026
|
provider: string;
|
|
8724
9027
|
baseUrl: string;
|
|
8725
|
-
reasoning:
|
|
9028
|
+
reasoning: false;
|
|
8726
9029
|
input: "text"[];
|
|
8727
9030
|
cost: {
|
|
8728
9031
|
input: number;
|
|
@@ -9000,13 +9303,16 @@ export declare const MODELS: {
|
|
|
9000
9303
|
contextWindow: number;
|
|
9001
9304
|
maxTokens: number;
|
|
9002
9305
|
};
|
|
9003
|
-
readonly "anthropic/claude-
|
|
9306
|
+
readonly "anthropic/claude-opus-4.8": {
|
|
9004
9307
|
id: string;
|
|
9005
9308
|
name: string;
|
|
9006
9309
|
api: "openai-completions";
|
|
9007
9310
|
provider: string;
|
|
9008
9311
|
baseUrl: string;
|
|
9009
9312
|
reasoning: true;
|
|
9313
|
+
thinkingLevelMap: {
|
|
9314
|
+
xhigh: string;
|
|
9315
|
+
};
|
|
9010
9316
|
input: ("image" | "text")[];
|
|
9011
9317
|
cost: {
|
|
9012
9318
|
input: number;
|
|
@@ -9017,13 +9323,16 @@ export declare const MODELS: {
|
|
|
9017
9323
|
contextWindow: number;
|
|
9018
9324
|
maxTokens: number;
|
|
9019
9325
|
};
|
|
9020
|
-
readonly "anthropic/claude-
|
|
9326
|
+
readonly "anthropic/claude-opus-4.8-fast": {
|
|
9021
9327
|
id: string;
|
|
9022
9328
|
name: string;
|
|
9023
9329
|
api: "openai-completions";
|
|
9024
9330
|
provider: string;
|
|
9025
9331
|
baseUrl: string;
|
|
9026
9332
|
reasoning: true;
|
|
9333
|
+
thinkingLevelMap: {
|
|
9334
|
+
xhigh: string;
|
|
9335
|
+
};
|
|
9027
9336
|
input: ("image" | "text")[];
|
|
9028
9337
|
cost: {
|
|
9029
9338
|
input: number;
|
|
@@ -9034,7 +9343,7 @@ export declare const MODELS: {
|
|
|
9034
9343
|
contextWindow: number;
|
|
9035
9344
|
maxTokens: number;
|
|
9036
9345
|
};
|
|
9037
|
-
readonly "anthropic/claude-sonnet-4
|
|
9346
|
+
readonly "anthropic/claude-sonnet-4": {
|
|
9038
9347
|
id: string;
|
|
9039
9348
|
name: string;
|
|
9040
9349
|
api: "openai-completions";
|
|
@@ -9051,14 +9360,14 @@ export declare const MODELS: {
|
|
|
9051
9360
|
contextWindow: number;
|
|
9052
9361
|
maxTokens: number;
|
|
9053
9362
|
};
|
|
9054
|
-
readonly "
|
|
9363
|
+
readonly "anthropic/claude-sonnet-4.5": {
|
|
9055
9364
|
id: string;
|
|
9056
9365
|
name: string;
|
|
9057
9366
|
api: "openai-completions";
|
|
9058
9367
|
provider: string;
|
|
9059
9368
|
baseUrl: string;
|
|
9060
9369
|
reasoning: true;
|
|
9061
|
-
input: "text"[];
|
|
9370
|
+
input: ("image" | "text")[];
|
|
9062
9371
|
cost: {
|
|
9063
9372
|
input: number;
|
|
9064
9373
|
output: number;
|
|
@@ -9068,14 +9377,14 @@ export declare const MODELS: {
|
|
|
9068
9377
|
contextWindow: number;
|
|
9069
9378
|
maxTokens: number;
|
|
9070
9379
|
};
|
|
9071
|
-
readonly "
|
|
9380
|
+
readonly "anthropic/claude-sonnet-4.6": {
|
|
9072
9381
|
id: string;
|
|
9073
9382
|
name: string;
|
|
9074
9383
|
api: "openai-completions";
|
|
9075
9384
|
provider: string;
|
|
9076
9385
|
baseUrl: string;
|
|
9077
9386
|
reasoning: true;
|
|
9078
|
-
input: "text"[];
|
|
9387
|
+
input: ("image" | "text")[];
|
|
9079
9388
|
cost: {
|
|
9080
9389
|
input: number;
|
|
9081
9390
|
output: number;
|
|
@@ -9085,7 +9394,7 @@ export declare const MODELS: {
|
|
|
9085
9394
|
contextWindow: number;
|
|
9086
9395
|
maxTokens: number;
|
|
9087
9396
|
};
|
|
9088
|
-
readonly "arcee-ai/trinity-
|
|
9397
|
+
readonly "arcee-ai/trinity-large-thinking": {
|
|
9089
9398
|
id: string;
|
|
9090
9399
|
name: string;
|
|
9091
9400
|
api: "openai-completions";
|
|
@@ -9102,31 +9411,14 @@ export declare const MODELS: {
|
|
|
9102
9411
|
contextWindow: number;
|
|
9103
9412
|
maxTokens: number;
|
|
9104
9413
|
};
|
|
9105
|
-
readonly "arcee-ai/
|
|
9106
|
-
id: string;
|
|
9107
|
-
name: string;
|
|
9108
|
-
api: "openai-completions";
|
|
9109
|
-
provider: string;
|
|
9110
|
-
baseUrl: string;
|
|
9111
|
-
reasoning: false;
|
|
9112
|
-
input: "text"[];
|
|
9113
|
-
cost: {
|
|
9114
|
-
input: number;
|
|
9115
|
-
output: number;
|
|
9116
|
-
cacheRead: number;
|
|
9117
|
-
cacheWrite: number;
|
|
9118
|
-
};
|
|
9119
|
-
contextWindow: number;
|
|
9120
|
-
maxTokens: number;
|
|
9121
|
-
};
|
|
9122
|
-
readonly auto: {
|
|
9414
|
+
readonly "arcee-ai/trinity-mini": {
|
|
9123
9415
|
id: string;
|
|
9124
9416
|
name: string;
|
|
9125
9417
|
api: "openai-completions";
|
|
9126
9418
|
provider: string;
|
|
9127
9419
|
baseUrl: string;
|
|
9128
9420
|
reasoning: true;
|
|
9129
|
-
input:
|
|
9421
|
+
input: "text"[];
|
|
9130
9422
|
cost: {
|
|
9131
9423
|
input: number;
|
|
9132
9424
|
output: number;
|
|
@@ -9136,13 +9428,13 @@ export declare const MODELS: {
|
|
|
9136
9428
|
contextWindow: number;
|
|
9137
9429
|
maxTokens: number;
|
|
9138
9430
|
};
|
|
9139
|
-
readonly "
|
|
9431
|
+
readonly "arcee-ai/virtuoso-large": {
|
|
9140
9432
|
id: string;
|
|
9141
9433
|
name: string;
|
|
9142
9434
|
api: "openai-completions";
|
|
9143
9435
|
provider: string;
|
|
9144
9436
|
baseUrl: string;
|
|
9145
|
-
reasoning:
|
|
9437
|
+
reasoning: false;
|
|
9146
9438
|
input: "text"[];
|
|
9147
9439
|
cost: {
|
|
9148
9440
|
input: number;
|
|
@@ -9153,14 +9445,14 @@ export declare const MODELS: {
|
|
|
9153
9445
|
contextWindow: number;
|
|
9154
9446
|
maxTokens: number;
|
|
9155
9447
|
};
|
|
9156
|
-
readonly
|
|
9448
|
+
readonly auto: {
|
|
9157
9449
|
id: string;
|
|
9158
9450
|
name: string;
|
|
9159
9451
|
api: "openai-completions";
|
|
9160
9452
|
provider: string;
|
|
9161
9453
|
baseUrl: string;
|
|
9162
|
-
reasoning:
|
|
9163
|
-
input: "text"[];
|
|
9454
|
+
reasoning: true;
|
|
9455
|
+
input: ("image" | "text")[];
|
|
9164
9456
|
cost: {
|
|
9165
9457
|
input: number;
|
|
9166
9458
|
output: number;
|
|
@@ -9433,35 +9725,6 @@ export declare const MODELS: {
|
|
|
9433
9725
|
baseUrl: string;
|
|
9434
9726
|
compat: {
|
|
9435
9727
|
requiresReasoningContentOnAssistantMessages: true;
|
|
9436
|
-
thinkingFormat: "deepseek";
|
|
9437
|
-
};
|
|
9438
|
-
reasoning: true;
|
|
9439
|
-
thinkingLevelMap: {
|
|
9440
|
-
minimal: null;
|
|
9441
|
-
low: null;
|
|
9442
|
-
medium: null;
|
|
9443
|
-
high: string;
|
|
9444
|
-
xhigh: string;
|
|
9445
|
-
};
|
|
9446
|
-
input: "text"[];
|
|
9447
|
-
cost: {
|
|
9448
|
-
input: number;
|
|
9449
|
-
output: number;
|
|
9450
|
-
cacheRead: number;
|
|
9451
|
-
cacheWrite: number;
|
|
9452
|
-
};
|
|
9453
|
-
contextWindow: number;
|
|
9454
|
-
maxTokens: number;
|
|
9455
|
-
};
|
|
9456
|
-
readonly "deepseek/deepseek-v4-flash:free": {
|
|
9457
|
-
id: string;
|
|
9458
|
-
name: string;
|
|
9459
|
-
api: "openai-completions";
|
|
9460
|
-
provider: string;
|
|
9461
|
-
baseUrl: string;
|
|
9462
|
-
compat: {
|
|
9463
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
9464
|
-
thinkingFormat: "deepseek";
|
|
9465
9728
|
};
|
|
9466
9729
|
reasoning: true;
|
|
9467
9730
|
thinkingLevelMap: {
|
|
@@ -9489,7 +9752,6 @@ export declare const MODELS: {
|
|
|
9489
9752
|
baseUrl: string;
|
|
9490
9753
|
compat: {
|
|
9491
9754
|
requiresReasoningContentOnAssistantMessages: true;
|
|
9492
|
-
thinkingFormat: "deepseek";
|
|
9493
9755
|
};
|
|
9494
9756
|
reasoning: true;
|
|
9495
9757
|
thinkingLevelMap: {
|
|
@@ -10039,7 +10301,7 @@ export declare const MODELS: {
|
|
|
10039
10301
|
contextWindow: number;
|
|
10040
10302
|
maxTokens: number;
|
|
10041
10303
|
};
|
|
10042
|
-
readonly "meta-llama/llama-4-
|
|
10304
|
+
readonly "meta-llama/llama-4-maverick": {
|
|
10043
10305
|
id: string;
|
|
10044
10306
|
name: string;
|
|
10045
10307
|
api: "openai-completions";
|
|
@@ -10056,14 +10318,14 @@ export declare const MODELS: {
|
|
|
10056
10318
|
contextWindow: number;
|
|
10057
10319
|
maxTokens: number;
|
|
10058
10320
|
};
|
|
10059
|
-
readonly "
|
|
10321
|
+
readonly "meta-llama/llama-4-scout": {
|
|
10060
10322
|
id: string;
|
|
10061
10323
|
name: string;
|
|
10062
10324
|
api: "openai-completions";
|
|
10063
10325
|
provider: string;
|
|
10064
10326
|
baseUrl: string;
|
|
10065
|
-
reasoning:
|
|
10066
|
-
input: "text"[];
|
|
10327
|
+
reasoning: false;
|
|
10328
|
+
input: ("image" | "text")[];
|
|
10067
10329
|
cost: {
|
|
10068
10330
|
input: number;
|
|
10069
10331
|
output: number;
|
|
@@ -10073,7 +10335,7 @@ export declare const MODELS: {
|
|
|
10073
10335
|
contextWindow: number;
|
|
10074
10336
|
maxTokens: number;
|
|
10075
10337
|
};
|
|
10076
|
-
readonly "minimax/minimax-
|
|
10338
|
+
readonly "minimax/minimax-m1": {
|
|
10077
10339
|
id: string;
|
|
10078
10340
|
name: string;
|
|
10079
10341
|
api: "openai-completions";
|
|
@@ -10090,7 +10352,7 @@ export declare const MODELS: {
|
|
|
10090
10352
|
contextWindow: number;
|
|
10091
10353
|
maxTokens: number;
|
|
10092
10354
|
};
|
|
10093
|
-
readonly "minimax/minimax-m2
|
|
10355
|
+
readonly "minimax/minimax-m2": {
|
|
10094
10356
|
id: string;
|
|
10095
10357
|
name: string;
|
|
10096
10358
|
api: "openai-completions";
|
|
@@ -10107,7 +10369,7 @@ export declare const MODELS: {
|
|
|
10107
10369
|
contextWindow: number;
|
|
10108
10370
|
maxTokens: number;
|
|
10109
10371
|
};
|
|
10110
|
-
readonly "minimax/minimax-m2.
|
|
10372
|
+
readonly "minimax/minimax-m2.1": {
|
|
10111
10373
|
id: string;
|
|
10112
10374
|
name: string;
|
|
10113
10375
|
api: "openai-completions";
|
|
@@ -10124,7 +10386,7 @@ export declare const MODELS: {
|
|
|
10124
10386
|
contextWindow: number;
|
|
10125
10387
|
maxTokens: number;
|
|
10126
10388
|
};
|
|
10127
|
-
readonly "minimax/minimax-m2.5
|
|
10389
|
+
readonly "minimax/minimax-m2.5": {
|
|
10128
10390
|
id: string;
|
|
10129
10391
|
name: string;
|
|
10130
10392
|
api: "openai-completions";
|
|
@@ -10158,31 +10420,14 @@ export declare const MODELS: {
|
|
|
10158
10420
|
contextWindow: number;
|
|
10159
10421
|
maxTokens: number;
|
|
10160
10422
|
};
|
|
10161
|
-
readonly "
|
|
10423
|
+
readonly "minimax/minimax-m3": {
|
|
10162
10424
|
id: string;
|
|
10163
10425
|
name: string;
|
|
10164
10426
|
api: "openai-completions";
|
|
10165
10427
|
provider: string;
|
|
10166
10428
|
baseUrl: string;
|
|
10167
|
-
reasoning:
|
|
10168
|
-
input: "text"[];
|
|
10169
|
-
cost: {
|
|
10170
|
-
input: number;
|
|
10171
|
-
output: number;
|
|
10172
|
-
cacheRead: number;
|
|
10173
|
-
cacheWrite: number;
|
|
10174
|
-
};
|
|
10175
|
-
contextWindow: number;
|
|
10176
|
-
maxTokens: number;
|
|
10177
|
-
};
|
|
10178
|
-
readonly "mistralai/devstral-2512": {
|
|
10179
|
-
id: string;
|
|
10180
|
-
name: string;
|
|
10181
|
-
api: "openai-completions";
|
|
10182
|
-
provider: string;
|
|
10183
|
-
baseUrl: string;
|
|
10184
|
-
reasoning: false;
|
|
10185
|
-
input: "text"[];
|
|
10429
|
+
reasoning: true;
|
|
10430
|
+
input: ("image" | "text")[];
|
|
10186
10431
|
cost: {
|
|
10187
10432
|
input: number;
|
|
10188
10433
|
output: number;
|
|
@@ -10192,7 +10437,7 @@ export declare const MODELS: {
|
|
|
10192
10437
|
contextWindow: number;
|
|
10193
10438
|
maxTokens: number;
|
|
10194
10439
|
};
|
|
10195
|
-
readonly "mistralai/
|
|
10440
|
+
readonly "mistralai/codestral-2508": {
|
|
10196
10441
|
id: string;
|
|
10197
10442
|
name: string;
|
|
10198
10443
|
api: "openai-completions";
|
|
@@ -10209,7 +10454,7 @@ export declare const MODELS: {
|
|
|
10209
10454
|
contextWindow: number;
|
|
10210
10455
|
maxTokens: number;
|
|
10211
10456
|
};
|
|
10212
|
-
readonly "mistralai/devstral-
|
|
10457
|
+
readonly "mistralai/devstral-2512": {
|
|
10213
10458
|
id: string;
|
|
10214
10459
|
name: string;
|
|
10215
10460
|
api: "openai-completions";
|
|
@@ -10311,23 +10556,6 @@ export declare const MODELS: {
|
|
|
10311
10556
|
contextWindow: number;
|
|
10312
10557
|
maxTokens: number;
|
|
10313
10558
|
};
|
|
10314
|
-
readonly "mistralai/mistral-large-2411": {
|
|
10315
|
-
id: string;
|
|
10316
|
-
name: string;
|
|
10317
|
-
api: "openai-completions";
|
|
10318
|
-
provider: string;
|
|
10319
|
-
baseUrl: string;
|
|
10320
|
-
reasoning: false;
|
|
10321
|
-
input: "text"[];
|
|
10322
|
-
cost: {
|
|
10323
|
-
input: number;
|
|
10324
|
-
output: number;
|
|
10325
|
-
cacheRead: number;
|
|
10326
|
-
cacheWrite: number;
|
|
10327
|
-
};
|
|
10328
|
-
contextWindow: number;
|
|
10329
|
-
maxTokens: number;
|
|
10330
|
-
};
|
|
10331
10559
|
readonly "mistralai/mistral-large-2512": {
|
|
10332
10560
|
id: string;
|
|
10333
10561
|
name: string;
|
|
@@ -10481,14 +10709,14 @@ export declare const MODELS: {
|
|
|
10481
10709
|
contextWindow: number;
|
|
10482
10710
|
maxTokens: number;
|
|
10483
10711
|
};
|
|
10484
|
-
readonly "mistralai/
|
|
10712
|
+
readonly "mistralai/voxtral-small-24b-2507": {
|
|
10485
10713
|
id: string;
|
|
10486
10714
|
name: string;
|
|
10487
10715
|
api: "openai-completions";
|
|
10488
10716
|
provider: string;
|
|
10489
10717
|
baseUrl: string;
|
|
10490
10718
|
reasoning: false;
|
|
10491
|
-
input:
|
|
10719
|
+
input: "text"[];
|
|
10492
10720
|
cost: {
|
|
10493
10721
|
input: number;
|
|
10494
10722
|
output: number;
|
|
@@ -10498,7 +10726,7 @@ export declare const MODELS: {
|
|
|
10498
10726
|
contextWindow: number;
|
|
10499
10727
|
maxTokens: number;
|
|
10500
10728
|
};
|
|
10501
|
-
readonly "
|
|
10729
|
+
readonly "moonshotai/kimi-k2": {
|
|
10502
10730
|
id: string;
|
|
10503
10731
|
name: string;
|
|
10504
10732
|
api: "openai-completions";
|
|
@@ -10515,7 +10743,7 @@ export declare const MODELS: {
|
|
|
10515
10743
|
contextWindow: number;
|
|
10516
10744
|
maxTokens: number;
|
|
10517
10745
|
};
|
|
10518
|
-
readonly "moonshotai/kimi-k2": {
|
|
10746
|
+
readonly "moonshotai/kimi-k2-0905": {
|
|
10519
10747
|
id: string;
|
|
10520
10748
|
name: string;
|
|
10521
10749
|
api: "openai-completions";
|
|
@@ -10532,13 +10760,13 @@ export declare const MODELS: {
|
|
|
10532
10760
|
contextWindow: number;
|
|
10533
10761
|
maxTokens: number;
|
|
10534
10762
|
};
|
|
10535
|
-
readonly "moonshotai/kimi-k2-
|
|
10763
|
+
readonly "moonshotai/kimi-k2-thinking": {
|
|
10536
10764
|
id: string;
|
|
10537
10765
|
name: string;
|
|
10538
10766
|
api: "openai-completions";
|
|
10539
10767
|
provider: string;
|
|
10540
10768
|
baseUrl: string;
|
|
10541
|
-
reasoning:
|
|
10769
|
+
reasoning: true;
|
|
10542
10770
|
input: "text"[];
|
|
10543
10771
|
cost: {
|
|
10544
10772
|
input: number;
|
|
@@ -10549,14 +10777,14 @@ export declare const MODELS: {
|
|
|
10549
10777
|
contextWindow: number;
|
|
10550
10778
|
maxTokens: number;
|
|
10551
10779
|
};
|
|
10552
|
-
readonly "moonshotai/kimi-k2
|
|
10780
|
+
readonly "moonshotai/kimi-k2.5": {
|
|
10553
10781
|
id: string;
|
|
10554
10782
|
name: string;
|
|
10555
10783
|
api: "openai-completions";
|
|
10556
10784
|
provider: string;
|
|
10557
10785
|
baseUrl: string;
|
|
10558
10786
|
reasoning: true;
|
|
10559
|
-
input: "text"[];
|
|
10787
|
+
input: ("image" | "text")[];
|
|
10560
10788
|
cost: {
|
|
10561
10789
|
input: number;
|
|
10562
10790
|
output: number;
|
|
@@ -10566,12 +10794,15 @@ export declare const MODELS: {
|
|
|
10566
10794
|
contextWindow: number;
|
|
10567
10795
|
maxTokens: number;
|
|
10568
10796
|
};
|
|
10569
|
-
readonly "moonshotai/kimi-k2.
|
|
10797
|
+
readonly "moonshotai/kimi-k2.6": {
|
|
10570
10798
|
id: string;
|
|
10571
10799
|
name: string;
|
|
10572
10800
|
api: "openai-completions";
|
|
10573
10801
|
provider: string;
|
|
10574
10802
|
baseUrl: string;
|
|
10803
|
+
compat: {
|
|
10804
|
+
supportsDeveloperRole: false;
|
|
10805
|
+
};
|
|
10575
10806
|
reasoning: true;
|
|
10576
10807
|
input: ("image" | "text")[];
|
|
10577
10808
|
cost: {
|
|
@@ -10583,12 +10814,15 @@ export declare const MODELS: {
|
|
|
10583
10814
|
contextWindow: number;
|
|
10584
10815
|
maxTokens: number;
|
|
10585
10816
|
};
|
|
10586
|
-
readonly "moonshotai/kimi-k2.6": {
|
|
10817
|
+
readonly "moonshotai/kimi-k2.6:free": {
|
|
10587
10818
|
id: string;
|
|
10588
10819
|
name: string;
|
|
10589
10820
|
api: "openai-completions";
|
|
10590
10821
|
provider: string;
|
|
10591
10822
|
baseUrl: string;
|
|
10823
|
+
compat: {
|
|
10824
|
+
supportsDeveloperRole: false;
|
|
10825
|
+
};
|
|
10592
10826
|
reasoning: true;
|
|
10593
10827
|
input: ("image" | "text")[];
|
|
10594
10828
|
cost: {
|
|
@@ -11025,23 +11259,6 @@ export declare const MODELS: {
|
|
|
11025
11259
|
contextWindow: number;
|
|
11026
11260
|
maxTokens: number;
|
|
11027
11261
|
};
|
|
11028
|
-
readonly "openai/gpt-4o-audio-preview": {
|
|
11029
|
-
id: string;
|
|
11030
|
-
name: string;
|
|
11031
|
-
api: "openai-completions";
|
|
11032
|
-
provider: string;
|
|
11033
|
-
baseUrl: string;
|
|
11034
|
-
reasoning: false;
|
|
11035
|
-
input: "text"[];
|
|
11036
|
-
cost: {
|
|
11037
|
-
input: number;
|
|
11038
|
-
output: number;
|
|
11039
|
-
cacheRead: number;
|
|
11040
|
-
cacheWrite: number;
|
|
11041
|
-
};
|
|
11042
|
-
contextWindow: number;
|
|
11043
|
-
maxTokens: number;
|
|
11044
|
-
};
|
|
11045
11262
|
readonly "openai/gpt-4o-mini": {
|
|
11046
11263
|
id: string;
|
|
11047
11264
|
name: string;
|
|
@@ -11475,6 +11692,9 @@ export declare const MODELS: {
|
|
|
11475
11692
|
reasoning: true;
|
|
11476
11693
|
thinkingLevelMap: {
|
|
11477
11694
|
xhigh: string;
|
|
11695
|
+
off: null;
|
|
11696
|
+
minimal: null;
|
|
11697
|
+
low: null;
|
|
11478
11698
|
};
|
|
11479
11699
|
input: ("image" | "text")[];
|
|
11480
11700
|
cost: {
|
|
@@ -11894,23 +12114,6 @@ export declare const MODELS: {
|
|
|
11894
12114
|
contextWindow: number;
|
|
11895
12115
|
maxTokens: number;
|
|
11896
12116
|
};
|
|
11897
|
-
readonly "qwen/qwen-2.5-7b-instruct": {
|
|
11898
|
-
id: string;
|
|
11899
|
-
name: string;
|
|
11900
|
-
api: "openai-completions";
|
|
11901
|
-
provider: string;
|
|
11902
|
-
baseUrl: string;
|
|
11903
|
-
reasoning: false;
|
|
11904
|
-
input: "text"[];
|
|
11905
|
-
cost: {
|
|
11906
|
-
input: number;
|
|
11907
|
-
output: number;
|
|
11908
|
-
cacheRead: number;
|
|
11909
|
-
cacheWrite: number;
|
|
11910
|
-
};
|
|
11911
|
-
contextWindow: number;
|
|
11912
|
-
maxTokens: number;
|
|
11913
|
-
};
|
|
11914
12117
|
readonly "qwen/qwen-plus": {
|
|
11915
12118
|
id: string;
|
|
11916
12119
|
name: string;
|
|
@@ -12744,14 +12947,14 @@ export declare const MODELS: {
|
|
|
12744
12947
|
contextWindow: number;
|
|
12745
12948
|
maxTokens: number;
|
|
12746
12949
|
};
|
|
12747
|
-
readonly "
|
|
12950
|
+
readonly "stepfun/step-3.7-flash": {
|
|
12748
12951
|
id: string;
|
|
12749
12952
|
name: string;
|
|
12750
12953
|
api: "openai-completions";
|
|
12751
12954
|
provider: string;
|
|
12752
12955
|
baseUrl: string;
|
|
12753
12956
|
reasoning: true;
|
|
12754
|
-
input: "text"[];
|
|
12957
|
+
input: ("image" | "text")[];
|
|
12755
12958
|
cost: {
|
|
12756
12959
|
input: number;
|
|
12757
12960
|
output: number;
|
|
@@ -12761,13 +12964,13 @@ export declare const MODELS: {
|
|
|
12761
12964
|
contextWindow: number;
|
|
12762
12965
|
maxTokens: number;
|
|
12763
12966
|
};
|
|
12764
|
-
readonly "
|
|
12967
|
+
readonly "tencent/hy3-preview": {
|
|
12765
12968
|
id: string;
|
|
12766
12969
|
name: string;
|
|
12767
12970
|
api: "openai-completions";
|
|
12768
12971
|
provider: string;
|
|
12769
12972
|
baseUrl: string;
|
|
12770
|
-
reasoning:
|
|
12973
|
+
reasoning: true;
|
|
12771
12974
|
input: "text"[];
|
|
12772
12975
|
cost: {
|
|
12773
12976
|
input: number;
|
|
@@ -12778,7 +12981,7 @@ export declare const MODELS: {
|
|
|
12778
12981
|
contextWindow: number;
|
|
12779
12982
|
maxTokens: number;
|
|
12780
12983
|
};
|
|
12781
|
-
readonly "thedrummer/
|
|
12984
|
+
readonly "thedrummer/rocinante-12b": {
|
|
12782
12985
|
id: string;
|
|
12783
12986
|
name: string;
|
|
12784
12987
|
api: "openai-completions";
|
|
@@ -12795,13 +12998,13 @@ export declare const MODELS: {
|
|
|
12795
12998
|
contextWindow: number;
|
|
12796
12999
|
maxTokens: number;
|
|
12797
13000
|
};
|
|
12798
|
-
readonly "
|
|
13001
|
+
readonly "thedrummer/unslopnemo-12b": {
|
|
12799
13002
|
id: string;
|
|
12800
13003
|
name: string;
|
|
12801
13004
|
api: "openai-completions";
|
|
12802
13005
|
provider: string;
|
|
12803
13006
|
baseUrl: string;
|
|
12804
|
-
reasoning:
|
|
13007
|
+
reasoning: false;
|
|
12805
13008
|
input: "text"[];
|
|
12806
13009
|
cost: {
|
|
12807
13010
|
input: number;
|
|
@@ -12812,14 +13015,14 @@ export declare const MODELS: {
|
|
|
12812
13015
|
contextWindow: number;
|
|
12813
13016
|
maxTokens: number;
|
|
12814
13017
|
};
|
|
12815
|
-
readonly "
|
|
13018
|
+
readonly "upstage/solar-pro-3": {
|
|
12816
13019
|
id: string;
|
|
12817
13020
|
name: string;
|
|
12818
13021
|
api: "openai-completions";
|
|
12819
13022
|
provider: string;
|
|
12820
13023
|
baseUrl: string;
|
|
12821
13024
|
reasoning: true;
|
|
12822
|
-
input:
|
|
13025
|
+
input: "text"[];
|
|
12823
13026
|
cost: {
|
|
12824
13027
|
input: number;
|
|
12825
13028
|
output: number;
|
|
@@ -12829,7 +13032,7 @@ export declare const MODELS: {
|
|
|
12829
13032
|
contextWindow: number;
|
|
12830
13033
|
maxTokens: number;
|
|
12831
13034
|
};
|
|
12832
|
-
readonly "x-ai/grok-4.
|
|
13035
|
+
readonly "x-ai/grok-4.20": {
|
|
12833
13036
|
id: string;
|
|
12834
13037
|
name: string;
|
|
12835
13038
|
api: "openai-completions";
|
|
@@ -12846,7 +13049,7 @@ export declare const MODELS: {
|
|
|
12846
13049
|
contextWindow: number;
|
|
12847
13050
|
maxTokens: number;
|
|
12848
13051
|
};
|
|
12849
|
-
readonly "x-ai/grok-
|
|
13052
|
+
readonly "x-ai/grok-4.3": {
|
|
12850
13053
|
id: string;
|
|
12851
13054
|
name: string;
|
|
12852
13055
|
api: "openai-completions";
|
|
@@ -12863,24 +13066,7 @@ export declare const MODELS: {
|
|
|
12863
13066
|
contextWindow: number;
|
|
12864
13067
|
maxTokens: number;
|
|
12865
13068
|
};
|
|
12866
|
-
readonly "
|
|
12867
|
-
id: string;
|
|
12868
|
-
name: string;
|
|
12869
|
-
api: "openai-completions";
|
|
12870
|
-
provider: string;
|
|
12871
|
-
baseUrl: string;
|
|
12872
|
-
reasoning: true;
|
|
12873
|
-
input: "text"[];
|
|
12874
|
-
cost: {
|
|
12875
|
-
input: number;
|
|
12876
|
-
output: number;
|
|
12877
|
-
cacheRead: number;
|
|
12878
|
-
cacheWrite: number;
|
|
12879
|
-
};
|
|
12880
|
-
contextWindow: number;
|
|
12881
|
-
maxTokens: number;
|
|
12882
|
-
};
|
|
12883
|
-
readonly "xiaomi/mimo-v2-omni": {
|
|
13069
|
+
readonly "x-ai/grok-build-0.1": {
|
|
12884
13070
|
id: string;
|
|
12885
13071
|
name: string;
|
|
12886
13072
|
api: "openai-completions";
|
|
@@ -12897,7 +13083,7 @@ export declare const MODELS: {
|
|
|
12897
13083
|
contextWindow: number;
|
|
12898
13084
|
maxTokens: number;
|
|
12899
13085
|
};
|
|
12900
|
-
readonly "xiaomi/mimo-v2-
|
|
13086
|
+
readonly "xiaomi/mimo-v2-flash": {
|
|
12901
13087
|
id: string;
|
|
12902
13088
|
name: string;
|
|
12903
13089
|
api: "openai-completions";
|
|
@@ -14306,6 +14492,31 @@ export declare const MODELS: {
|
|
|
14306
14492
|
baseUrl: string;
|
|
14307
14493
|
compat: {
|
|
14308
14494
|
forceAdaptiveThinking: true;
|
|
14495
|
+
supportsTemperature: false;
|
|
14496
|
+
};
|
|
14497
|
+
reasoning: true;
|
|
14498
|
+
thinkingLevelMap: {
|
|
14499
|
+
xhigh: string;
|
|
14500
|
+
};
|
|
14501
|
+
input: ("image" | "text")[];
|
|
14502
|
+
cost: {
|
|
14503
|
+
input: number;
|
|
14504
|
+
output: number;
|
|
14505
|
+
cacheRead: number;
|
|
14506
|
+
cacheWrite: number;
|
|
14507
|
+
};
|
|
14508
|
+
contextWindow: number;
|
|
14509
|
+
maxTokens: number;
|
|
14510
|
+
};
|
|
14511
|
+
readonly "anthropic/claude-opus-4.8": {
|
|
14512
|
+
id: string;
|
|
14513
|
+
name: string;
|
|
14514
|
+
api: "anthropic-messages";
|
|
14515
|
+
provider: string;
|
|
14516
|
+
baseUrl: string;
|
|
14517
|
+
compat: {
|
|
14518
|
+
forceAdaptiveThinking: true;
|
|
14519
|
+
supportsTemperature: false;
|
|
14309
14520
|
};
|
|
14310
14521
|
reasoning: true;
|
|
14311
14522
|
thinkingLevelMap: {
|
|
@@ -15106,6 +15317,23 @@ export declare const MODELS: {
|
|
|
15106
15317
|
contextWindow: number;
|
|
15107
15318
|
maxTokens: number;
|
|
15108
15319
|
};
|
|
15320
|
+
readonly "minimax/minimax-m3": {
|
|
15321
|
+
id: string;
|
|
15322
|
+
name: string;
|
|
15323
|
+
api: "anthropic-messages";
|
|
15324
|
+
provider: string;
|
|
15325
|
+
baseUrl: string;
|
|
15326
|
+
reasoning: true;
|
|
15327
|
+
input: ("image" | "text")[];
|
|
15328
|
+
cost: {
|
|
15329
|
+
input: number;
|
|
15330
|
+
output: number;
|
|
15331
|
+
cacheRead: number;
|
|
15332
|
+
cacheWrite: number;
|
|
15333
|
+
};
|
|
15334
|
+
contextWindow: number;
|
|
15335
|
+
maxTokens: number;
|
|
15336
|
+
};
|
|
15109
15337
|
readonly "mistral/codestral": {
|
|
15110
15338
|
id: string;
|
|
15111
15339
|
name: string;
|
|
@@ -15947,6 +16175,9 @@ export declare const MODELS: {
|
|
|
15947
16175
|
reasoning: true;
|
|
15948
16176
|
thinkingLevelMap: {
|
|
15949
16177
|
xhigh: string;
|
|
16178
|
+
off: null;
|
|
16179
|
+
minimal: null;
|
|
16180
|
+
low: null;
|
|
15950
16181
|
};
|
|
15951
16182
|
input: ("image" | "text")[];
|
|
15952
16183
|
cost: {
|
|
@@ -16128,6 +16359,40 @@ export declare const MODELS: {
|
|
|
16128
16359
|
contextWindow: number;
|
|
16129
16360
|
maxTokens: number;
|
|
16130
16361
|
};
|
|
16362
|
+
readonly "stepfun/step-3.5-flash": {
|
|
16363
|
+
id: string;
|
|
16364
|
+
name: string;
|
|
16365
|
+
api: "anthropic-messages";
|
|
16366
|
+
provider: string;
|
|
16367
|
+
baseUrl: string;
|
|
16368
|
+
reasoning: true;
|
|
16369
|
+
input: "text"[];
|
|
16370
|
+
cost: {
|
|
16371
|
+
input: number;
|
|
16372
|
+
output: number;
|
|
16373
|
+
cacheRead: number;
|
|
16374
|
+
cacheWrite: number;
|
|
16375
|
+
};
|
|
16376
|
+
contextWindow: number;
|
|
16377
|
+
maxTokens: number;
|
|
16378
|
+
};
|
|
16379
|
+
readonly "stepfun/step-3.7-flash": {
|
|
16380
|
+
id: string;
|
|
16381
|
+
name: string;
|
|
16382
|
+
api: "anthropic-messages";
|
|
16383
|
+
provider: string;
|
|
16384
|
+
baseUrl: string;
|
|
16385
|
+
reasoning: true;
|
|
16386
|
+
input: ("image" | "text")[];
|
|
16387
|
+
cost: {
|
|
16388
|
+
input: number;
|
|
16389
|
+
output: number;
|
|
16390
|
+
cacheRead: number;
|
|
16391
|
+
cacheWrite: number;
|
|
16392
|
+
};
|
|
16393
|
+
contextWindow: number;
|
|
16394
|
+
maxTokens: number;
|
|
16395
|
+
};
|
|
16131
16396
|
readonly "xai/grok-4.1-fast-non-reasoning": {
|
|
16132
16397
|
id: string;
|
|
16133
16398
|
name: string;
|
|
@@ -16817,27 +17082,6 @@ export declare const MODELS: {
|
|
|
16817
17082
|
};
|
|
16818
17083
|
};
|
|
16819
17084
|
readonly "xiaomi-token-plan-ams": {
|
|
16820
|
-
readonly "mimo-v2-flash": {
|
|
16821
|
-
id: string;
|
|
16822
|
-
name: string;
|
|
16823
|
-
api: "openai-completions";
|
|
16824
|
-
provider: string;
|
|
16825
|
-
baseUrl: string;
|
|
16826
|
-
compat: {
|
|
16827
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
16828
|
-
thinkingFormat: "deepseek";
|
|
16829
|
-
};
|
|
16830
|
-
reasoning: true;
|
|
16831
|
-
input: "text"[];
|
|
16832
|
-
cost: {
|
|
16833
|
-
input: number;
|
|
16834
|
-
output: number;
|
|
16835
|
-
cacheRead: number;
|
|
16836
|
-
cacheWrite: number;
|
|
16837
|
-
};
|
|
16838
|
-
contextWindow: number;
|
|
16839
|
-
maxTokens: number;
|
|
16840
|
-
};
|
|
16841
17085
|
readonly "mimo-v2-omni": {
|
|
16842
17086
|
id: string;
|
|
16843
17087
|
name: string;
|
|
@@ -16924,27 +17168,6 @@ export declare const MODELS: {
|
|
|
16924
17168
|
};
|
|
16925
17169
|
};
|
|
16926
17170
|
readonly "xiaomi-token-plan-cn": {
|
|
16927
|
-
readonly "mimo-v2-flash": {
|
|
16928
|
-
id: string;
|
|
16929
|
-
name: string;
|
|
16930
|
-
api: "openai-completions";
|
|
16931
|
-
provider: string;
|
|
16932
|
-
baseUrl: string;
|
|
16933
|
-
compat: {
|
|
16934
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
16935
|
-
thinkingFormat: "deepseek";
|
|
16936
|
-
};
|
|
16937
|
-
reasoning: true;
|
|
16938
|
-
input: "text"[];
|
|
16939
|
-
cost: {
|
|
16940
|
-
input: number;
|
|
16941
|
-
output: number;
|
|
16942
|
-
cacheRead: number;
|
|
16943
|
-
cacheWrite: number;
|
|
16944
|
-
};
|
|
16945
|
-
contextWindow: number;
|
|
16946
|
-
maxTokens: number;
|
|
16947
|
-
};
|
|
16948
17171
|
readonly "mimo-v2-omni": {
|
|
16949
17172
|
id: string;
|
|
16950
17173
|
name: string;
|
|
@@ -17031,27 +17254,6 @@ export declare const MODELS: {
|
|
|
17031
17254
|
};
|
|
17032
17255
|
};
|
|
17033
17256
|
readonly "xiaomi-token-plan-sgp": {
|
|
17034
|
-
readonly "mimo-v2-flash": {
|
|
17035
|
-
id: string;
|
|
17036
|
-
name: string;
|
|
17037
|
-
api: "openai-completions";
|
|
17038
|
-
provider: string;
|
|
17039
|
-
baseUrl: string;
|
|
17040
|
-
compat: {
|
|
17041
|
-
requiresReasoningContentOnAssistantMessages: true;
|
|
17042
|
-
thinkingFormat: "deepseek";
|
|
17043
|
-
};
|
|
17044
|
-
reasoning: true;
|
|
17045
|
-
input: "text"[];
|
|
17046
|
-
cost: {
|
|
17047
|
-
input: number;
|
|
17048
|
-
output: number;
|
|
17049
|
-
cacheRead: number;
|
|
17050
|
-
cacheWrite: number;
|
|
17051
|
-
};
|
|
17052
|
-
contextWindow: number;
|
|
17053
|
-
maxTokens: number;
|
|
17054
|
-
};
|
|
17055
17257
|
readonly "mimo-v2-omni": {
|
|
17056
17258
|
id: string;
|
|
17057
17259
|
name: string;
|