@roo-code/types 1.92.0 → 1.93.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +412 -141
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +419 -273
- package/dist/index.d.ts +419 -273
- package/dist/index.js +409 -138
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1322,9 +1322,6 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1322
1322
|
toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
|
|
1323
1323
|
} & {
|
|
1324
1324
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
1325
|
-
} & {
|
|
1326
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
1327
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
1328
1325
|
} & {
|
|
1329
1326
|
apiProvider: z.ZodLiteral<"claude-code">;
|
|
1330
1327
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1343,8 +1340,6 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1343
1340
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
1344
1341
|
toolProtocol?: "xml" | "native" | undefined;
|
|
1345
1342
|
apiModelId?: string | undefined;
|
|
1346
|
-
claudeCodePath?: string | undefined;
|
|
1347
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
1348
1343
|
}, {
|
|
1349
1344
|
apiProvider: "claude-code";
|
|
1350
1345
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | "none" | "xhigh" | "disable" | undefined;
|
|
@@ -1361,8 +1356,6 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1361
1356
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
1362
1357
|
toolProtocol?: "xml" | "native" | undefined;
|
|
1363
1358
|
apiModelId?: string | undefined;
|
|
1364
|
-
claudeCodePath?: string | undefined;
|
|
1365
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
1366
1359
|
}>, z.ZodObject<{
|
|
1367
1360
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
1368
1361
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3915,8 +3908,6 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3915
3908
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3916
3909
|
openRouterSpecificProvider: z.ZodOptional<z.ZodString>;
|
|
3917
3910
|
openRouterUseMiddleOutTransform: z.ZodOptional<z.ZodBoolean>;
|
|
3918
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
3919
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
3920
3911
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3921
3912
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3922
3913
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3951,8 +3942,6 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3951
3942
|
anthropicBaseUrl?: string | undefined;
|
|
3952
3943
|
anthropicUseAuthToken?: boolean | undefined;
|
|
3953
3944
|
anthropicBeta1MContext?: boolean | undefined;
|
|
3954
|
-
claudeCodePath?: string | undefined;
|
|
3955
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
3956
3945
|
openRouterApiKey?: string | undefined;
|
|
3957
3946
|
openRouterModelId?: string | undefined;
|
|
3958
3947
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -4124,8 +4113,6 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
4124
4113
|
anthropicBaseUrl?: string | undefined;
|
|
4125
4114
|
anthropicUseAuthToken?: boolean | undefined;
|
|
4126
4115
|
anthropicBeta1MContext?: boolean | undefined;
|
|
4127
|
-
claudeCodePath?: string | undefined;
|
|
4128
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
4129
4116
|
openRouterApiKey?: string | undefined;
|
|
4130
4117
|
openRouterModelId?: string | undefined;
|
|
4131
4118
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -4542,8 +4529,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4542
4529
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4543
4530
|
openRouterSpecificProvider: z.ZodOptional<z.ZodString>;
|
|
4544
4531
|
openRouterUseMiddleOutTransform: z.ZodOptional<z.ZodBoolean>;
|
|
4545
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
4546
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
4547
4532
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
4548
4533
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4549
4534
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4581,8 +4566,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4581
4566
|
anthropicBaseUrl?: string | undefined;
|
|
4582
4567
|
anthropicUseAuthToken?: boolean | undefined;
|
|
4583
4568
|
anthropicBeta1MContext?: boolean | undefined;
|
|
4584
|
-
claudeCodePath?: string | undefined;
|
|
4585
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
4586
4569
|
openRouterApiKey?: string | undefined;
|
|
4587
4570
|
openRouterModelId?: string | undefined;
|
|
4588
4571
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -4755,8 +4738,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4755
4738
|
anthropicBaseUrl?: string | undefined;
|
|
4756
4739
|
anthropicUseAuthToken?: boolean | undefined;
|
|
4757
4740
|
anthropicBeta1MContext?: boolean | undefined;
|
|
4758
|
-
claudeCodePath?: string | undefined;
|
|
4759
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
4760
4741
|
openRouterApiKey?: string | undefined;
|
|
4761
4742
|
openRouterModelId?: string | undefined;
|
|
4762
4743
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -4979,9 +4960,6 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4979
4960
|
toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
|
|
4980
4961
|
} & {
|
|
4981
4962
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
4982
|
-
} & {
|
|
4983
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
4984
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
4985
4963
|
} & {
|
|
4986
4964
|
apiProvider: z.ZodLiteral<"claude-code">;
|
|
4987
4965
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5000,8 +4978,6 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5000
4978
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
5001
4979
|
toolProtocol?: "xml" | "native" | undefined;
|
|
5002
4980
|
apiModelId?: string | undefined;
|
|
5003
|
-
claudeCodePath?: string | undefined;
|
|
5004
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
5005
4981
|
}, {
|
|
5006
4982
|
apiProvider: "claude-code";
|
|
5007
4983
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | "none" | "xhigh" | "disable" | undefined;
|
|
@@ -5018,8 +4994,6 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5018
4994
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
5019
4995
|
toolProtocol?: "xml" | "native" | undefined;
|
|
5020
4996
|
apiModelId?: string | undefined;
|
|
5021
|
-
claudeCodePath?: string | undefined;
|
|
5022
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
5023
4997
|
}>, z.ZodObject<{
|
|
5024
4998
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
5025
4999
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7307,7 +7281,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
7307
7281
|
id?: string | undefined;
|
|
7308
7282
|
}>>;
|
|
7309
7283
|
type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
|
|
7310
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "codebaseIndexOpenRouterApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "toolProtocol", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "
|
|
7284
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "codebaseIndexOpenRouterApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "toolProtocol", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUseGlobalInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "awsBedrockServiceTier", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "ollamaApiKey", "ollamaNumCtx", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "openAiNativeServiceTier", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "deepInfraBaseUrl", "deepInfraApiKey", "deepInfraModelId", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "minimaxBaseUrl", "minimaxApiKey", "unboundApiKey", "unboundModelId", "requestyBaseUrl", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId", "litellmUsePromptCache", "cerebrasApiKey", "sambaNovaApiKey", "zaiApiKey", "zaiApiLine", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceModelId", "ioIntelligenceApiKey", "qwenCodeOauthPath", "vercelAiGatewayApiKey", "vercelAiGatewayModelId", "basetenApiKey"];
|
|
7311
7285
|
/**
|
|
7312
7286
|
* ModelIdKey
|
|
7313
7287
|
*/
|
|
@@ -8443,8 +8417,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8443
8417
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8444
8418
|
openRouterSpecificProvider: z.ZodOptional<z.ZodString>;
|
|
8445
8419
|
openRouterUseMiddleOutTransform: z.ZodOptional<z.ZodBoolean>;
|
|
8446
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
8447
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
8448
8420
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
8449
8421
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8450
8422
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8888,8 +8860,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8888
8860
|
anthropicBaseUrl?: string | undefined;
|
|
8889
8861
|
anthropicUseAuthToken?: boolean | undefined;
|
|
8890
8862
|
anthropicBeta1MContext?: boolean | undefined;
|
|
8891
|
-
claudeCodePath?: string | undefined;
|
|
8892
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
8893
8863
|
openRouterApiKey?: string | undefined;
|
|
8894
8864
|
openRouterModelId?: string | undefined;
|
|
8895
8865
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -9243,8 +9213,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
9243
9213
|
anthropicBaseUrl?: string | undefined;
|
|
9244
9214
|
anthropicUseAuthToken?: boolean | undefined;
|
|
9245
9215
|
anthropicBeta1MContext?: boolean | undefined;
|
|
9246
|
-
claudeCodePath?: string | undefined;
|
|
9247
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
9248
9216
|
openRouterApiKey?: string | undefined;
|
|
9249
9217
|
openRouterModelId?: string | undefined;
|
|
9250
9218
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -9912,8 +9880,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9912
9880
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
9913
9881
|
openRouterSpecificProvider: z.ZodOptional<z.ZodString>;
|
|
9914
9882
|
openRouterUseMiddleOutTransform: z.ZodOptional<z.ZodBoolean>;
|
|
9915
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
9916
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
9917
9883
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
9918
9884
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
9919
9885
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10357,8 +10323,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10357
10323
|
anthropicBaseUrl?: string | undefined;
|
|
10358
10324
|
anthropicUseAuthToken?: boolean | undefined;
|
|
10359
10325
|
anthropicBeta1MContext?: boolean | undefined;
|
|
10360
|
-
claudeCodePath?: string | undefined;
|
|
10361
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
10362
10326
|
openRouterApiKey?: string | undefined;
|
|
10363
10327
|
openRouterModelId?: string | undefined;
|
|
10364
10328
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -10712,8 +10676,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10712
10676
|
anthropicBaseUrl?: string | undefined;
|
|
10713
10677
|
anthropicUseAuthToken?: boolean | undefined;
|
|
10714
10678
|
anthropicBeta1MContext?: boolean | undefined;
|
|
10715
|
-
claudeCodePath?: string | undefined;
|
|
10716
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
10717
10679
|
openRouterApiKey?: string | undefined;
|
|
10718
10680
|
openRouterModelId?: string | undefined;
|
|
10719
10681
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -11073,8 +11035,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11073
11035
|
anthropicBaseUrl?: string | undefined;
|
|
11074
11036
|
anthropicUseAuthToken?: boolean | undefined;
|
|
11075
11037
|
anthropicBeta1MContext?: boolean | undefined;
|
|
11076
|
-
claudeCodePath?: string | undefined;
|
|
11077
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
11078
11038
|
openRouterApiKey?: string | undefined;
|
|
11079
11039
|
openRouterModelId?: string | undefined;
|
|
11080
11040
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -11433,8 +11393,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11433
11393
|
anthropicBaseUrl?: string | undefined;
|
|
11434
11394
|
anthropicUseAuthToken?: boolean | undefined;
|
|
11435
11395
|
anthropicBeta1MContext?: boolean | undefined;
|
|
11436
|
-
claudeCodePath?: string | undefined;
|
|
11437
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
11438
11396
|
openRouterApiKey?: string | undefined;
|
|
11439
11397
|
openRouterModelId?: string | undefined;
|
|
11440
11398
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -11795,8 +11753,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11795
11753
|
anthropicBaseUrl?: string | undefined;
|
|
11796
11754
|
anthropicUseAuthToken?: boolean | undefined;
|
|
11797
11755
|
anthropicBeta1MContext?: boolean | undefined;
|
|
11798
|
-
claudeCodePath?: string | undefined;
|
|
11799
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
11800
11756
|
openRouterApiKey?: string | undefined;
|
|
11801
11757
|
openRouterModelId?: string | undefined;
|
|
11802
11758
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -12158,8 +12114,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
12158
12114
|
anthropicBaseUrl?: string | undefined;
|
|
12159
12115
|
anthropicUseAuthToken?: boolean | undefined;
|
|
12160
12116
|
anthropicBeta1MContext?: boolean | undefined;
|
|
12161
|
-
claudeCodePath?: string | undefined;
|
|
12162
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
12163
12117
|
openRouterApiKey?: string | undefined;
|
|
12164
12118
|
openRouterModelId?: string | undefined;
|
|
12165
12119
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -12852,8 +12806,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12852
12806
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
12853
12807
|
openRouterSpecificProvider: z.ZodOptional<z.ZodString>;
|
|
12854
12808
|
openRouterUseMiddleOutTransform: z.ZodOptional<z.ZodBoolean>;
|
|
12855
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
12856
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
12857
12809
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
12858
12810
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
12859
12811
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13297,8 +13249,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13297
13249
|
anthropicBaseUrl?: string | undefined;
|
|
13298
13250
|
anthropicUseAuthToken?: boolean | undefined;
|
|
13299
13251
|
anthropicBeta1MContext?: boolean | undefined;
|
|
13300
|
-
claudeCodePath?: string | undefined;
|
|
13301
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
13302
13252
|
openRouterApiKey?: string | undefined;
|
|
13303
13253
|
openRouterModelId?: string | undefined;
|
|
13304
13254
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -13652,8 +13602,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13652
13602
|
anthropicBaseUrl?: string | undefined;
|
|
13653
13603
|
anthropicUseAuthToken?: boolean | undefined;
|
|
13654
13604
|
anthropicBeta1MContext?: boolean | undefined;
|
|
13655
|
-
claudeCodePath?: string | undefined;
|
|
13656
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
13657
13605
|
openRouterApiKey?: string | undefined;
|
|
13658
13606
|
openRouterModelId?: string | undefined;
|
|
13659
13607
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -14013,8 +13961,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14013
13961
|
anthropicBaseUrl?: string | undefined;
|
|
14014
13962
|
anthropicUseAuthToken?: boolean | undefined;
|
|
14015
13963
|
anthropicBeta1MContext?: boolean | undefined;
|
|
14016
|
-
claudeCodePath?: string | undefined;
|
|
14017
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
14018
13964
|
openRouterApiKey?: string | undefined;
|
|
14019
13965
|
openRouterModelId?: string | undefined;
|
|
14020
13966
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -14373,8 +14319,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14373
14319
|
anthropicBaseUrl?: string | undefined;
|
|
14374
14320
|
anthropicUseAuthToken?: boolean | undefined;
|
|
14375
14321
|
anthropicBeta1MContext?: boolean | undefined;
|
|
14376
|
-
claudeCodePath?: string | undefined;
|
|
14377
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
14378
14322
|
openRouterApiKey?: string | undefined;
|
|
14379
14323
|
openRouterModelId?: string | undefined;
|
|
14380
14324
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -14735,8 +14679,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14735
14679
|
anthropicBaseUrl?: string | undefined;
|
|
14736
14680
|
anthropicUseAuthToken?: boolean | undefined;
|
|
14737
14681
|
anthropicBeta1MContext?: boolean | undefined;
|
|
14738
|
-
claudeCodePath?: string | undefined;
|
|
14739
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
14740
14682
|
openRouterApiKey?: string | undefined;
|
|
14741
14683
|
openRouterModelId?: string | undefined;
|
|
14742
14684
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -15098,8 +15040,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15098
15040
|
anthropicBaseUrl?: string | undefined;
|
|
15099
15041
|
anthropicUseAuthToken?: boolean | undefined;
|
|
15100
15042
|
anthropicBeta1MContext?: boolean | undefined;
|
|
15101
|
-
claudeCodePath?: string | undefined;
|
|
15102
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
15103
15043
|
openRouterApiKey?: string | undefined;
|
|
15104
15044
|
openRouterModelId?: string | undefined;
|
|
15105
15045
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -15515,8 +15455,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15515
15455
|
anthropicBaseUrl?: string | undefined;
|
|
15516
15456
|
anthropicUseAuthToken?: boolean | undefined;
|
|
15517
15457
|
anthropicBeta1MContext?: boolean | undefined;
|
|
15518
|
-
claudeCodePath?: string | undefined;
|
|
15519
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
15520
15458
|
openRouterApiKey?: string | undefined;
|
|
15521
15459
|
openRouterModelId?: string | undefined;
|
|
15522
15460
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -15898,8 +15836,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
15898
15836
|
anthropicBaseUrl?: string | undefined;
|
|
15899
15837
|
anthropicUseAuthToken?: boolean | undefined;
|
|
15900
15838
|
anthropicBeta1MContext?: boolean | undefined;
|
|
15901
|
-
claudeCodePath?: string | undefined;
|
|
15902
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
15903
15839
|
openRouterApiKey?: string | undefined;
|
|
15904
15840
|
openRouterModelId?: string | undefined;
|
|
15905
15841
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -18981,10 +18917,20 @@ declare const EXPECTED_API_ERROR_CODES: Set<number>;
|
|
|
18981
18917
|
*/
|
|
18982
18918
|
declare function getErrorStatusCode(error: unknown): number | undefined;
|
|
18983
18919
|
/**
|
|
18984
|
-
* Extracts
|
|
18920
|
+
* Extracts a message from a JSON payload embedded in an error string.
|
|
18921
|
+
* Handles cases like "503 {"error":{"message":"actual error message"}}"
|
|
18922
|
+
* or just '{"error":{"message":"actual error message"}}'
|
|
18923
|
+
*
|
|
18924
|
+
* @param message - The message string that may contain JSON
|
|
18925
|
+
* @returns The extracted message from the JSON payload, or undefined if not found
|
|
18926
|
+
*/
|
|
18927
|
+
declare function extractMessageFromJsonPayload(message: string): string | undefined;
|
|
18928
|
+
/**
|
|
18929
|
+
* Extracts the most descriptive error message from an error object.
|
|
18985
18930
|
* Prioritizes nested metadata (upstream provider errors) over the standard message.
|
|
18931
|
+
* Also handles JSON payloads embedded in error messages.
|
|
18986
18932
|
* @param error - The error to extract message from
|
|
18987
|
-
* @returns The best available error message, or undefined if not
|
|
18933
|
+
* @returns The best available error message, or undefined if not extractable
|
|
18988
18934
|
*/
|
|
18989
18935
|
declare function getErrorMessage(error: unknown): string | undefined;
|
|
18990
18936
|
/**
|
|
@@ -19303,7 +19249,7 @@ type OrganizationDefaultSettings = z.infer<typeof organizationDefaultSettingsSch
|
|
|
19303
19249
|
/**
|
|
19304
19250
|
* WorkspaceTaskVisibility
|
|
19305
19251
|
*/
|
|
19306
|
-
declare const workspaceTaskVisibilitySchema: z.ZodEnum<["all", "list-only", "full-lockdown"]>;
|
|
19252
|
+
declare const workspaceTaskVisibilitySchema: z.ZodEnum<["all", "list-only", "admins-and-creator", "creator", "full-lockdown"]>;
|
|
19307
19253
|
type WorkspaceTaskVisibility = z.infer<typeof workspaceTaskVisibilitySchema>;
|
|
19308
19254
|
/**
|
|
19309
19255
|
* OrganizationCloudSettings
|
|
@@ -19314,21 +19260,21 @@ declare const organizationCloudSettingsSchema: z.ZodObject<{
|
|
|
19314
19260
|
allowPublicTaskSharing: z.ZodOptional<z.ZodBoolean>;
|
|
19315
19261
|
taskShareExpirationDays: z.ZodOptional<z.ZodNumber>;
|
|
19316
19262
|
allowMembersViewAllTasks: z.ZodOptional<z.ZodBoolean>;
|
|
19317
|
-
workspaceTaskVisibility: z.ZodOptional<z.ZodEnum<["all", "list-only", "full-lockdown"]>>;
|
|
19263
|
+
workspaceTaskVisibility: z.ZodOptional<z.ZodEnum<["all", "list-only", "admins-and-creator", "creator", "full-lockdown"]>>;
|
|
19318
19264
|
}, "strip", z.ZodTypeAny, {
|
|
19319
19265
|
recordTaskMessages?: boolean | undefined;
|
|
19320
19266
|
enableTaskSharing?: boolean | undefined;
|
|
19321
19267
|
allowPublicTaskSharing?: boolean | undefined;
|
|
19322
19268
|
taskShareExpirationDays?: number | undefined;
|
|
19323
19269
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19324
|
-
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
19270
|
+
workspaceTaskVisibility?: "all" | "list-only" | "admins-and-creator" | "creator" | "full-lockdown" | undefined;
|
|
19325
19271
|
}, {
|
|
19326
19272
|
recordTaskMessages?: boolean | undefined;
|
|
19327
19273
|
enableTaskSharing?: boolean | undefined;
|
|
19328
19274
|
allowPublicTaskSharing?: boolean | undefined;
|
|
19329
19275
|
taskShareExpirationDays?: number | undefined;
|
|
19330
19276
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19331
|
-
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
19277
|
+
workspaceTaskVisibility?: "all" | "list-only" | "admins-and-creator" | "creator" | "full-lockdown" | undefined;
|
|
19332
19278
|
}>;
|
|
19333
19279
|
type OrganizationCloudSettings = z.infer<typeof organizationCloudSettingsSchema>;
|
|
19334
19280
|
/**
|
|
@@ -19353,21 +19299,21 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
19353
19299
|
allowPublicTaskSharing: z.ZodOptional<z.ZodBoolean>;
|
|
19354
19300
|
taskShareExpirationDays: z.ZodOptional<z.ZodNumber>;
|
|
19355
19301
|
allowMembersViewAllTasks: z.ZodOptional<z.ZodBoolean>;
|
|
19356
|
-
workspaceTaskVisibility: z.ZodOptional<z.ZodEnum<["all", "list-only", "full-lockdown"]>>;
|
|
19302
|
+
workspaceTaskVisibility: z.ZodOptional<z.ZodEnum<["all", "list-only", "admins-and-creator", "creator", "full-lockdown"]>>;
|
|
19357
19303
|
}, "strip", z.ZodTypeAny, {
|
|
19358
19304
|
recordTaskMessages?: boolean | undefined;
|
|
19359
19305
|
enableTaskSharing?: boolean | undefined;
|
|
19360
19306
|
allowPublicTaskSharing?: boolean | undefined;
|
|
19361
19307
|
taskShareExpirationDays?: number | undefined;
|
|
19362
19308
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19363
|
-
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
19309
|
+
workspaceTaskVisibility?: "all" | "list-only" | "admins-and-creator" | "creator" | "full-lockdown" | undefined;
|
|
19364
19310
|
}, {
|
|
19365
19311
|
recordTaskMessages?: boolean | undefined;
|
|
19366
19312
|
enableTaskSharing?: boolean | undefined;
|
|
19367
19313
|
allowPublicTaskSharing?: boolean | undefined;
|
|
19368
19314
|
taskShareExpirationDays?: number | undefined;
|
|
19369
19315
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
19370
|
-
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
19316
|
+
workspaceTaskVisibility?: "all" | "list-only" | "admins-and-creator" | "creator" | "full-lockdown" | undefined;
|
|
19371
19317
|
}>>;
|
|
19372
19318
|
defaultSettings: z.ZodObject<{
|
|
19373
19319
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19836,8 +19782,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
19836
19782
|
openRouterBaseUrl: z.ZodOptional<z.ZodString>;
|
|
19837
19783
|
openRouterSpecificProvider: z.ZodOptional<z.ZodString>;
|
|
19838
19784
|
openRouterUseMiddleOutTransform: z.ZodOptional<z.ZodBoolean>;
|
|
19839
|
-
claudeCodePath: z.ZodOptional<z.ZodString>;
|
|
19840
|
-
claudeCodeMaxOutputTokens: z.ZodOptional<z.ZodNumber>;
|
|
19841
19785
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
19842
19786
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
19843
19787
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19875,8 +19819,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
19875
19819
|
anthropicBaseUrl?: string | undefined;
|
|
19876
19820
|
anthropicUseAuthToken?: boolean | undefined;
|
|
19877
19821
|
anthropicBeta1MContext?: boolean | undefined;
|
|
19878
|
-
claudeCodePath?: string | undefined;
|
|
19879
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
19880
19822
|
openRouterApiKey?: string | undefined;
|
|
19881
19823
|
openRouterModelId?: string | undefined;
|
|
19882
19824
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -20049,8 +19991,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20049
19991
|
anthropicBaseUrl?: string | undefined;
|
|
20050
19992
|
anthropicUseAuthToken?: boolean | undefined;
|
|
20051
19993
|
anthropicBeta1MContext?: boolean | undefined;
|
|
20052
|
-
claudeCodePath?: string | undefined;
|
|
20053
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
20054
19994
|
openRouterApiKey?: string | undefined;
|
|
20055
19995
|
openRouterModelId?: string | undefined;
|
|
20056
19996
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -20223,7 +20163,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20223
20163
|
allowPublicTaskSharing?: boolean | undefined;
|
|
20224
20164
|
taskShareExpirationDays?: number | undefined;
|
|
20225
20165
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
20226
|
-
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
20166
|
+
workspaceTaskVisibility?: "all" | "list-only" | "admins-and-creator" | "creator" | "full-lockdown" | undefined;
|
|
20227
20167
|
} | undefined;
|
|
20228
20168
|
features?: {
|
|
20229
20169
|
roomoteControlEnabled?: boolean | undefined;
|
|
@@ -20287,8 +20227,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20287
20227
|
anthropicBaseUrl?: string | undefined;
|
|
20288
20228
|
anthropicUseAuthToken?: boolean | undefined;
|
|
20289
20229
|
anthropicBeta1MContext?: boolean | undefined;
|
|
20290
|
-
claudeCodePath?: string | undefined;
|
|
20291
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
20292
20230
|
openRouterApiKey?: string | undefined;
|
|
20293
20231
|
openRouterModelId?: string | undefined;
|
|
20294
20232
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -20461,7 +20399,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20461
20399
|
allowPublicTaskSharing?: boolean | undefined;
|
|
20462
20400
|
taskShareExpirationDays?: number | undefined;
|
|
20463
20401
|
allowMembersViewAllTasks?: boolean | undefined;
|
|
20464
|
-
workspaceTaskVisibility?: "all" | "list-only" | "full-lockdown" | undefined;
|
|
20402
|
+
workspaceTaskVisibility?: "all" | "list-only" | "admins-and-creator" | "creator" | "full-lockdown" | undefined;
|
|
20465
20403
|
} | undefined;
|
|
20466
20404
|
features?: {
|
|
20467
20405
|
roomoteControlEnabled?: boolean | undefined;
|
|
@@ -20525,8 +20463,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
20525
20463
|
anthropicBaseUrl?: string | undefined;
|
|
20526
20464
|
anthropicUseAuthToken?: boolean | undefined;
|
|
20527
20465
|
anthropicBeta1MContext?: boolean | undefined;
|
|
20528
|
-
claudeCodePath?: string | undefined;
|
|
20529
|
-
claudeCodeMaxOutputTokens?: number | undefined;
|
|
20530
20466
|
openRouterApiKey?: string | undefined;
|
|
20531
20467
|
openRouterModelId?: string | undefined;
|
|
20532
20468
|
openRouterBaseUrl?: string | undefined;
|
|
@@ -44833,8 +44769,8 @@ declare const installMarketplaceItemOptionsSchema: z.ZodObject<{
|
|
|
44833
44769
|
target: "global" | "project";
|
|
44834
44770
|
parameters?: Record<string, any> | undefined;
|
|
44835
44771
|
}, {
|
|
44836
|
-
parameters?: Record<string, any> | undefined;
|
|
44837
44772
|
target?: "global" | "project" | undefined;
|
|
44773
|
+
parameters?: Record<string, any> | undefined;
|
|
44838
44774
|
}>;
|
|
44839
44775
|
type InstallMarketplaceItemOptions = z.infer<typeof installMarketplaceItemOptionsSchema>;
|
|
44840
44776
|
|
|
@@ -45472,6 +45408,7 @@ declare const anthropicModels: {
|
|
|
45472
45408
|
readonly supportsImages: true;
|
|
45473
45409
|
readonly supportsPromptCache: true;
|
|
45474
45410
|
readonly supportsNativeTools: true;
|
|
45411
|
+
readonly defaultToolProtocol: "native";
|
|
45475
45412
|
readonly inputPrice: 3;
|
|
45476
45413
|
readonly outputPrice: 15;
|
|
45477
45414
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45491,6 +45428,7 @@ declare const anthropicModels: {
|
|
|
45491
45428
|
readonly supportsImages: true;
|
|
45492
45429
|
readonly supportsPromptCache: true;
|
|
45493
45430
|
readonly supportsNativeTools: true;
|
|
45431
|
+
readonly defaultToolProtocol: "native";
|
|
45494
45432
|
readonly inputPrice: 3;
|
|
45495
45433
|
readonly outputPrice: 15;
|
|
45496
45434
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45510,6 +45448,7 @@ declare const anthropicModels: {
|
|
|
45510
45448
|
readonly supportsImages: true;
|
|
45511
45449
|
readonly supportsPromptCache: true;
|
|
45512
45450
|
readonly supportsNativeTools: true;
|
|
45451
|
+
readonly defaultToolProtocol: "native";
|
|
45513
45452
|
readonly inputPrice: 5;
|
|
45514
45453
|
readonly outputPrice: 25;
|
|
45515
45454
|
readonly cacheWritesPrice: 6.25;
|
|
@@ -45522,6 +45461,7 @@ declare const anthropicModels: {
|
|
|
45522
45461
|
readonly supportsImages: true;
|
|
45523
45462
|
readonly supportsPromptCache: true;
|
|
45524
45463
|
readonly supportsNativeTools: true;
|
|
45464
|
+
readonly defaultToolProtocol: "native";
|
|
45525
45465
|
readonly inputPrice: 15;
|
|
45526
45466
|
readonly outputPrice: 75;
|
|
45527
45467
|
readonly cacheWritesPrice: 18.75;
|
|
@@ -45534,6 +45474,7 @@ declare const anthropicModels: {
|
|
|
45534
45474
|
readonly supportsImages: true;
|
|
45535
45475
|
readonly supportsPromptCache: true;
|
|
45536
45476
|
readonly supportsNativeTools: true;
|
|
45477
|
+
readonly defaultToolProtocol: "native";
|
|
45537
45478
|
readonly inputPrice: 15;
|
|
45538
45479
|
readonly outputPrice: 75;
|
|
45539
45480
|
readonly cacheWritesPrice: 18.75;
|
|
@@ -45546,6 +45487,7 @@ declare const anthropicModels: {
|
|
|
45546
45487
|
readonly supportsImages: true;
|
|
45547
45488
|
readonly supportsPromptCache: true;
|
|
45548
45489
|
readonly supportsNativeTools: true;
|
|
45490
|
+
readonly defaultToolProtocol: "native";
|
|
45549
45491
|
readonly inputPrice: 3;
|
|
45550
45492
|
readonly outputPrice: 15;
|
|
45551
45493
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45559,6 +45501,7 @@ declare const anthropicModels: {
|
|
|
45559
45501
|
readonly supportsImages: true;
|
|
45560
45502
|
readonly supportsPromptCache: true;
|
|
45561
45503
|
readonly supportsNativeTools: true;
|
|
45504
|
+
readonly defaultToolProtocol: "native";
|
|
45562
45505
|
readonly inputPrice: 3;
|
|
45563
45506
|
readonly outputPrice: 15;
|
|
45564
45507
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45570,6 +45513,7 @@ declare const anthropicModels: {
|
|
|
45570
45513
|
readonly supportsImages: true;
|
|
45571
45514
|
readonly supportsPromptCache: true;
|
|
45572
45515
|
readonly supportsNativeTools: true;
|
|
45516
|
+
readonly defaultToolProtocol: "native";
|
|
45573
45517
|
readonly inputPrice: 3;
|
|
45574
45518
|
readonly outputPrice: 15;
|
|
45575
45519
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45581,6 +45525,7 @@ declare const anthropicModels: {
|
|
|
45581
45525
|
readonly supportsImages: false;
|
|
45582
45526
|
readonly supportsPromptCache: true;
|
|
45583
45527
|
readonly supportsNativeTools: true;
|
|
45528
|
+
readonly defaultToolProtocol: "native";
|
|
45584
45529
|
readonly inputPrice: 1;
|
|
45585
45530
|
readonly outputPrice: 5;
|
|
45586
45531
|
readonly cacheWritesPrice: 1.25;
|
|
@@ -45592,6 +45537,7 @@ declare const anthropicModels: {
|
|
|
45592
45537
|
readonly supportsImages: true;
|
|
45593
45538
|
readonly supportsPromptCache: true;
|
|
45594
45539
|
readonly supportsNativeTools: true;
|
|
45540
|
+
readonly defaultToolProtocol: "native";
|
|
45595
45541
|
readonly inputPrice: 15;
|
|
45596
45542
|
readonly outputPrice: 75;
|
|
45597
45543
|
readonly cacheWritesPrice: 18.75;
|
|
@@ -45603,6 +45549,7 @@ declare const anthropicModels: {
|
|
|
45603
45549
|
readonly supportsImages: true;
|
|
45604
45550
|
readonly supportsPromptCache: true;
|
|
45605
45551
|
readonly supportsNativeTools: true;
|
|
45552
|
+
readonly defaultToolProtocol: "native";
|
|
45606
45553
|
readonly inputPrice: 0.25;
|
|
45607
45554
|
readonly outputPrice: 1.25;
|
|
45608
45555
|
readonly cacheWritesPrice: 0.3;
|
|
@@ -45614,6 +45561,7 @@ declare const anthropicModels: {
|
|
|
45614
45561
|
readonly supportsImages: true;
|
|
45615
45562
|
readonly supportsPromptCache: true;
|
|
45616
45563
|
readonly supportsNativeTools: true;
|
|
45564
|
+
readonly defaultToolProtocol: "native";
|
|
45617
45565
|
readonly inputPrice: 1;
|
|
45618
45566
|
readonly outputPrice: 5;
|
|
45619
45567
|
readonly cacheWritesPrice: 1.25;
|
|
@@ -45766,6 +45714,7 @@ declare const bedrockModels: {
|
|
|
45766
45714
|
readonly supportsPromptCache: true;
|
|
45767
45715
|
readonly supportsReasoningBudget: true;
|
|
45768
45716
|
readonly supportsNativeTools: true;
|
|
45717
|
+
readonly defaultToolProtocol: "native";
|
|
45769
45718
|
readonly inputPrice: 3;
|
|
45770
45719
|
readonly outputPrice: 15;
|
|
45771
45720
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45850,6 +45799,7 @@ declare const bedrockModels: {
|
|
|
45850
45799
|
readonly supportsPromptCache: true;
|
|
45851
45800
|
readonly supportsReasoningBudget: true;
|
|
45852
45801
|
readonly supportsNativeTools: true;
|
|
45802
|
+
readonly defaultToolProtocol: "native";
|
|
45853
45803
|
readonly inputPrice: 3;
|
|
45854
45804
|
readonly outputPrice: 15;
|
|
45855
45805
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45865,6 +45815,7 @@ declare const bedrockModels: {
|
|
|
45865
45815
|
readonly supportsPromptCache: true;
|
|
45866
45816
|
readonly supportsReasoningBudget: true;
|
|
45867
45817
|
readonly supportsNativeTools: true;
|
|
45818
|
+
readonly defaultToolProtocol: "native";
|
|
45868
45819
|
readonly inputPrice: 15;
|
|
45869
45820
|
readonly outputPrice: 75;
|
|
45870
45821
|
readonly cacheWritesPrice: 18.75;
|
|
@@ -45880,6 +45831,7 @@ declare const bedrockModels: {
|
|
|
45880
45831
|
readonly supportsPromptCache: true;
|
|
45881
45832
|
readonly supportsReasoningBudget: true;
|
|
45882
45833
|
readonly supportsNativeTools: true;
|
|
45834
|
+
readonly defaultToolProtocol: "native";
|
|
45883
45835
|
readonly inputPrice: 5;
|
|
45884
45836
|
readonly outputPrice: 25;
|
|
45885
45837
|
readonly cacheWritesPrice: 6.25;
|
|
@@ -45895,6 +45847,7 @@ declare const bedrockModels: {
|
|
|
45895
45847
|
readonly supportsPromptCache: true;
|
|
45896
45848
|
readonly supportsReasoningBudget: true;
|
|
45897
45849
|
readonly supportsNativeTools: true;
|
|
45850
|
+
readonly defaultToolProtocol: "native";
|
|
45898
45851
|
readonly inputPrice: 15;
|
|
45899
45852
|
readonly outputPrice: 75;
|
|
45900
45853
|
readonly cacheWritesPrice: 18.75;
|
|
@@ -45910,6 +45863,7 @@ declare const bedrockModels: {
|
|
|
45910
45863
|
readonly supportsPromptCache: true;
|
|
45911
45864
|
readonly supportsReasoningBudget: true;
|
|
45912
45865
|
readonly supportsNativeTools: true;
|
|
45866
|
+
readonly defaultToolProtocol: "native";
|
|
45913
45867
|
readonly inputPrice: 3;
|
|
45914
45868
|
readonly outputPrice: 15;
|
|
45915
45869
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45924,6 +45878,7 @@ declare const bedrockModels: {
|
|
|
45924
45878
|
readonly supportsImages: true;
|
|
45925
45879
|
readonly supportsPromptCache: true;
|
|
45926
45880
|
readonly supportsNativeTools: true;
|
|
45881
|
+
readonly defaultToolProtocol: "native";
|
|
45927
45882
|
readonly inputPrice: 3;
|
|
45928
45883
|
readonly outputPrice: 15;
|
|
45929
45884
|
readonly cacheWritesPrice: 3.75;
|
|
@@ -45938,6 +45893,7 @@ declare const bedrockModels: {
|
|
|
45938
45893
|
readonly supportsImages: false;
|
|
45939
45894
|
readonly supportsPromptCache: true;
|
|
45940
45895
|
readonly supportsNativeTools: true;
|
|
45896
|
+
readonly defaultToolProtocol: "native";
|
|
45941
45897
|
readonly inputPrice: 0.8;
|
|
45942
45898
|
readonly outputPrice: 4;
|
|
45943
45899
|
readonly cacheWritesPrice: 1;
|
|
@@ -45953,6 +45909,7 @@ declare const bedrockModels: {
|
|
|
45953
45909
|
readonly supportsPromptCache: true;
|
|
45954
45910
|
readonly supportsReasoningBudget: true;
|
|
45955
45911
|
readonly supportsNativeTools: true;
|
|
45912
|
+
readonly defaultToolProtocol: "native";
|
|
45956
45913
|
readonly inputPrice: 1;
|
|
45957
45914
|
readonly outputPrice: 5;
|
|
45958
45915
|
readonly cacheWritesPrice: 1.25;
|
|
@@ -45967,6 +45924,7 @@ declare const bedrockModels: {
|
|
|
45967
45924
|
readonly supportsImages: true;
|
|
45968
45925
|
readonly supportsPromptCache: false;
|
|
45969
45926
|
readonly supportsNativeTools: true;
|
|
45927
|
+
readonly defaultToolProtocol: "native";
|
|
45970
45928
|
readonly inputPrice: 3;
|
|
45971
45929
|
readonly outputPrice: 15;
|
|
45972
45930
|
};
|
|
@@ -45976,6 +45934,7 @@ declare const bedrockModels: {
|
|
|
45976
45934
|
readonly supportsImages: true;
|
|
45977
45935
|
readonly supportsPromptCache: false;
|
|
45978
45936
|
readonly supportsNativeTools: true;
|
|
45937
|
+
readonly defaultToolProtocol: "native";
|
|
45979
45938
|
readonly inputPrice: 15;
|
|
45980
45939
|
readonly outputPrice: 75;
|
|
45981
45940
|
};
|
|
@@ -45985,6 +45944,7 @@ declare const bedrockModels: {
|
|
|
45985
45944
|
readonly supportsImages: true;
|
|
45986
45945
|
readonly supportsPromptCache: false;
|
|
45987
45946
|
readonly supportsNativeTools: true;
|
|
45947
|
+
readonly defaultToolProtocol: "native";
|
|
45988
45948
|
readonly inputPrice: 3;
|
|
45989
45949
|
readonly outputPrice: 15;
|
|
45990
45950
|
};
|
|
@@ -45994,6 +45954,7 @@ declare const bedrockModels: {
|
|
|
45994
45954
|
readonly supportsImages: true;
|
|
45995
45955
|
readonly supportsPromptCache: false;
|
|
45996
45956
|
readonly supportsNativeTools: true;
|
|
45957
|
+
readonly defaultToolProtocol: "native";
|
|
45997
45958
|
readonly inputPrice: 0.25;
|
|
45998
45959
|
readonly outputPrice: 1.25;
|
|
45999
45960
|
};
|
|
@@ -46003,6 +45964,7 @@ declare const bedrockModels: {
|
|
|
46003
45964
|
readonly supportsImages: false;
|
|
46004
45965
|
readonly supportsPromptCache: false;
|
|
46005
45966
|
readonly supportsNativeTools: true;
|
|
45967
|
+
readonly defaultToolProtocol: "native";
|
|
46006
45968
|
readonly inputPrice: 8;
|
|
46007
45969
|
readonly outputPrice: 24;
|
|
46008
45970
|
readonly description: "Claude 2.1";
|
|
@@ -46013,6 +45975,7 @@ declare const bedrockModels: {
|
|
|
46013
45975
|
readonly supportsImages: false;
|
|
46014
45976
|
readonly supportsPromptCache: false;
|
|
46015
45977
|
readonly supportsNativeTools: true;
|
|
45978
|
+
readonly defaultToolProtocol: "native";
|
|
46016
45979
|
readonly inputPrice: 8;
|
|
46017
45980
|
readonly outputPrice: 24;
|
|
46018
45981
|
readonly description: "Claude 2.0";
|
|
@@ -46023,6 +45986,7 @@ declare const bedrockModels: {
|
|
|
46023
45986
|
readonly supportsImages: false;
|
|
46024
45987
|
readonly supportsPromptCache: false;
|
|
46025
45988
|
readonly supportsNativeTools: true;
|
|
45989
|
+
readonly defaultToolProtocol: "native";
|
|
46026
45990
|
readonly inputPrice: 0.8;
|
|
46027
45991
|
readonly outputPrice: 2.4;
|
|
46028
45992
|
readonly description: "Claude Instant";
|
|
@@ -46274,6 +46238,7 @@ declare const cerebrasModels: {
|
|
|
46274
46238
|
readonly supportsImages: false;
|
|
46275
46239
|
readonly supportsPromptCache: false;
|
|
46276
46240
|
readonly supportsNativeTools: true;
|
|
46241
|
+
readonly defaultToolProtocol: "native";
|
|
46277
46242
|
readonly inputPrice: 0;
|
|
46278
46243
|
readonly outputPrice: 0;
|
|
46279
46244
|
readonly description: "Highly intelligent general purpose model with up to 1,000 tokens/s";
|
|
@@ -46284,6 +46249,7 @@ declare const cerebrasModels: {
|
|
|
46284
46249
|
readonly supportsImages: false;
|
|
46285
46250
|
readonly supportsPromptCache: false;
|
|
46286
46251
|
readonly supportsNativeTools: true;
|
|
46252
|
+
readonly defaultToolProtocol: "native";
|
|
46287
46253
|
readonly inputPrice: 0;
|
|
46288
46254
|
readonly outputPrice: 0;
|
|
46289
46255
|
readonly description: "Intelligent model with ~1400 tokens/s";
|
|
@@ -46294,6 +46260,7 @@ declare const cerebrasModels: {
|
|
|
46294
46260
|
readonly supportsImages: false;
|
|
46295
46261
|
readonly supportsPromptCache: false;
|
|
46296
46262
|
readonly supportsNativeTools: true;
|
|
46263
|
+
readonly defaultToolProtocol: "native";
|
|
46297
46264
|
readonly inputPrice: 0;
|
|
46298
46265
|
readonly outputPrice: 0;
|
|
46299
46266
|
readonly description: "Powerful model with ~2600 tokens/s";
|
|
@@ -46304,6 +46271,7 @@ declare const cerebrasModels: {
|
|
|
46304
46271
|
readonly supportsImages: false;
|
|
46305
46272
|
readonly supportsPromptCache: false;
|
|
46306
46273
|
readonly supportsNativeTools: true;
|
|
46274
|
+
readonly defaultToolProtocol: "native";
|
|
46307
46275
|
readonly inputPrice: 0;
|
|
46308
46276
|
readonly outputPrice: 0;
|
|
46309
46277
|
readonly description: "SOTA coding performance with ~2500 tokens/s";
|
|
@@ -46314,6 +46282,7 @@ declare const cerebrasModels: {
|
|
|
46314
46282
|
readonly supportsImages: false;
|
|
46315
46283
|
readonly supportsPromptCache: false;
|
|
46316
46284
|
readonly supportsNativeTools: true;
|
|
46285
|
+
readonly defaultToolProtocol: "native";
|
|
46317
46286
|
readonly inputPrice: 0;
|
|
46318
46287
|
readonly outputPrice: 0;
|
|
46319
46288
|
readonly description: "OpenAI GPT OSS model with ~2800 tokens/s\n\n• 64K context window\n• Excels at efficient reasoning across science, math, and coding";
|
|
@@ -46328,6 +46297,8 @@ declare const chutesModels: {
|
|
|
46328
46297
|
readonly contextWindow: 163840;
|
|
46329
46298
|
readonly supportsImages: false;
|
|
46330
46299
|
readonly supportsPromptCache: false;
|
|
46300
|
+
readonly supportsNativeTools: true;
|
|
46301
|
+
readonly defaultToolProtocol: "native";
|
|
46331
46302
|
readonly inputPrice: 0;
|
|
46332
46303
|
readonly outputPrice: 0;
|
|
46333
46304
|
readonly description: "DeepSeek R1 0528 model.";
|
|
@@ -46337,6 +46308,8 @@ declare const chutesModels: {
|
|
|
46337
46308
|
readonly contextWindow: 163840;
|
|
46338
46309
|
readonly supportsImages: false;
|
|
46339
46310
|
readonly supportsPromptCache: false;
|
|
46311
|
+
readonly supportsNativeTools: true;
|
|
46312
|
+
readonly defaultToolProtocol: "native";
|
|
46340
46313
|
readonly inputPrice: 0;
|
|
46341
46314
|
readonly outputPrice: 0;
|
|
46342
46315
|
readonly description: "DeepSeek R1 model.";
|
|
@@ -46346,6 +46319,8 @@ declare const chutesModels: {
|
|
|
46346
46319
|
readonly contextWindow: 163840;
|
|
46347
46320
|
readonly supportsImages: false;
|
|
46348
46321
|
readonly supportsPromptCache: false;
|
|
46322
|
+
readonly supportsNativeTools: true;
|
|
46323
|
+
readonly defaultToolProtocol: "native";
|
|
46349
46324
|
readonly inputPrice: 0;
|
|
46350
46325
|
readonly outputPrice: 0;
|
|
46351
46326
|
readonly description: "DeepSeek V3 model.";
|
|
@@ -46355,6 +46330,8 @@ declare const chutesModels: {
|
|
|
46355
46330
|
readonly contextWindow: 163840;
|
|
46356
46331
|
readonly supportsImages: false;
|
|
46357
46332
|
readonly supportsPromptCache: false;
|
|
46333
|
+
readonly supportsNativeTools: true;
|
|
46334
|
+
readonly defaultToolProtocol: "native";
|
|
46358
46335
|
readonly inputPrice: 0;
|
|
46359
46336
|
readonly outputPrice: 0;
|
|
46360
46337
|
readonly description: "DeepSeek V3.1 model.";
|
|
@@ -46364,6 +46341,8 @@ declare const chutesModels: {
|
|
|
46364
46341
|
readonly contextWindow: 163840;
|
|
46365
46342
|
readonly supportsImages: false;
|
|
46366
46343
|
readonly supportsPromptCache: false;
|
|
46344
|
+
readonly supportsNativeTools: true;
|
|
46345
|
+
readonly defaultToolProtocol: "native";
|
|
46367
46346
|
readonly inputPrice: 0.23;
|
|
46368
46347
|
readonly outputPrice: 0.9;
|
|
46369
46348
|
readonly description: "DeepSeek‑V3.1‑Terminus is an update to V3.1 that improves language consistency by reducing CN/EN mix‑ups and eliminating random characters, while strengthening agent capabilities with notably better Code Agent and Search Agent performance.";
|
|
@@ -46373,6 +46352,8 @@ declare const chutesModels: {
|
|
|
46373
46352
|
readonly contextWindow: 163840;
|
|
46374
46353
|
readonly supportsImages: false;
|
|
46375
46354
|
readonly supportsPromptCache: false;
|
|
46355
|
+
readonly supportsNativeTools: true;
|
|
46356
|
+
readonly defaultToolProtocol: "native";
|
|
46376
46357
|
readonly inputPrice: 1;
|
|
46377
46358
|
readonly outputPrice: 3;
|
|
46378
46359
|
readonly description: "DeepSeek-V3.1-turbo is an FP8, speculative-decoding turbo variant optimized for ultra-fast single-shot queries (~200 TPS), with outputs close to the originals and solid function calling/reasoning/structured output, priced at $1/M input and $3/M output tokens, using 2× quota per request and not intended for bulk workloads.";
|
|
@@ -46382,6 +46363,8 @@ declare const chutesModels: {
|
|
|
46382
46363
|
readonly contextWindow: 163840;
|
|
46383
46364
|
readonly supportsImages: false;
|
|
46384
46365
|
readonly supportsPromptCache: false;
|
|
46366
|
+
readonly supportsNativeTools: true;
|
|
46367
|
+
readonly defaultToolProtocol: "native";
|
|
46385
46368
|
readonly inputPrice: 0.25;
|
|
46386
46369
|
readonly outputPrice: 0.35;
|
|
46387
46370
|
readonly description: "DeepSeek-V3.2-Exp is an experimental LLM that introduces DeepSeek Sparse Attention to improve long‑context training and inference efficiency while maintaining performance comparable to V3.1‑Terminus.";
|
|
@@ -46391,6 +46374,8 @@ declare const chutesModels: {
|
|
|
46391
46374
|
readonly contextWindow: 131072;
|
|
46392
46375
|
readonly supportsImages: false;
|
|
46393
46376
|
readonly supportsPromptCache: false;
|
|
46377
|
+
readonly supportsNativeTools: true;
|
|
46378
|
+
readonly defaultToolProtocol: "native";
|
|
46394
46379
|
readonly inputPrice: 0;
|
|
46395
46380
|
readonly outputPrice: 0;
|
|
46396
46381
|
readonly description: "Unsloth Llama 3.3 70B Instruct model.";
|
|
@@ -46400,6 +46385,8 @@ declare const chutesModels: {
|
|
|
46400
46385
|
readonly contextWindow: 512000;
|
|
46401
46386
|
readonly supportsImages: false;
|
|
46402
46387
|
readonly supportsPromptCache: false;
|
|
46388
|
+
readonly supportsNativeTools: true;
|
|
46389
|
+
readonly defaultToolProtocol: "native";
|
|
46403
46390
|
readonly inputPrice: 0;
|
|
46404
46391
|
readonly outputPrice: 0;
|
|
46405
46392
|
readonly description: "ChutesAI Llama 4 Scout 17B Instruct model, 512K context.";
|
|
@@ -46409,6 +46396,8 @@ declare const chutesModels: {
|
|
|
46409
46396
|
readonly contextWindow: 128000;
|
|
46410
46397
|
readonly supportsImages: false;
|
|
46411
46398
|
readonly supportsPromptCache: false;
|
|
46399
|
+
readonly supportsNativeTools: true;
|
|
46400
|
+
readonly defaultToolProtocol: "native";
|
|
46412
46401
|
readonly inputPrice: 0;
|
|
46413
46402
|
readonly outputPrice: 0;
|
|
46414
46403
|
readonly description: "Unsloth Mistral Nemo Instruct model.";
|
|
@@ -46418,6 +46407,8 @@ declare const chutesModels: {
|
|
|
46418
46407
|
readonly contextWindow: 131072;
|
|
46419
46408
|
readonly supportsImages: false;
|
|
46420
46409
|
readonly supportsPromptCache: false;
|
|
46410
|
+
readonly supportsNativeTools: true;
|
|
46411
|
+
readonly defaultToolProtocol: "native";
|
|
46421
46412
|
readonly inputPrice: 0;
|
|
46422
46413
|
readonly outputPrice: 0;
|
|
46423
46414
|
readonly description: "Unsloth Gemma 3 12B IT model.";
|
|
@@ -46427,6 +46418,8 @@ declare const chutesModels: {
|
|
|
46427
46418
|
readonly contextWindow: 131072;
|
|
46428
46419
|
readonly supportsImages: false;
|
|
46429
46420
|
readonly supportsPromptCache: false;
|
|
46421
|
+
readonly supportsNativeTools: true;
|
|
46422
|
+
readonly defaultToolProtocol: "native";
|
|
46430
46423
|
readonly inputPrice: 0;
|
|
46431
46424
|
readonly outputPrice: 0;
|
|
46432
46425
|
readonly description: "Nous DeepHermes 3 Llama 3 8B Preview model.";
|
|
@@ -46436,6 +46429,8 @@ declare const chutesModels: {
|
|
|
46436
46429
|
readonly contextWindow: 131072;
|
|
46437
46430
|
readonly supportsImages: false;
|
|
46438
46431
|
readonly supportsPromptCache: false;
|
|
46432
|
+
readonly supportsNativeTools: true;
|
|
46433
|
+
readonly defaultToolProtocol: "native";
|
|
46439
46434
|
readonly inputPrice: 0;
|
|
46440
46435
|
readonly outputPrice: 0;
|
|
46441
46436
|
readonly description: "Unsloth Gemma 3 4B IT model.";
|
|
@@ -46445,6 +46440,8 @@ declare const chutesModels: {
|
|
|
46445
46440
|
readonly contextWindow: 131072;
|
|
46446
46441
|
readonly supportsImages: false;
|
|
46447
46442
|
readonly supportsPromptCache: false;
|
|
46443
|
+
readonly supportsNativeTools: true;
|
|
46444
|
+
readonly defaultToolProtocol: "native";
|
|
46448
46445
|
readonly inputPrice: 0;
|
|
46449
46446
|
readonly outputPrice: 0;
|
|
46450
46447
|
readonly description: "Nvidia Llama 3.3 Nemotron Super 49B model.";
|
|
@@ -46454,6 +46451,8 @@ declare const chutesModels: {
|
|
|
46454
46451
|
readonly contextWindow: 131072;
|
|
46455
46452
|
readonly supportsImages: false;
|
|
46456
46453
|
readonly supportsPromptCache: false;
|
|
46454
|
+
readonly supportsNativeTools: true;
|
|
46455
|
+
readonly defaultToolProtocol: "native";
|
|
46457
46456
|
readonly inputPrice: 0;
|
|
46458
46457
|
readonly outputPrice: 0;
|
|
46459
46458
|
readonly description: "Nvidia Llama 3.1 Nemotron Ultra 253B model.";
|
|
@@ -46463,6 +46462,8 @@ declare const chutesModels: {
|
|
|
46463
46462
|
readonly contextWindow: 256000;
|
|
46464
46463
|
readonly supportsImages: false;
|
|
46465
46464
|
readonly supportsPromptCache: false;
|
|
46465
|
+
readonly supportsNativeTools: true;
|
|
46466
|
+
readonly defaultToolProtocol: "native";
|
|
46466
46467
|
readonly inputPrice: 0;
|
|
46467
46468
|
readonly outputPrice: 0;
|
|
46468
46469
|
readonly description: "ChutesAI Llama 4 Maverick 17B Instruct FP8 model.";
|
|
@@ -46472,6 +46473,8 @@ declare const chutesModels: {
|
|
|
46472
46473
|
readonly contextWindow: 163840;
|
|
46473
46474
|
readonly supportsImages: false;
|
|
46474
46475
|
readonly supportsPromptCache: false;
|
|
46476
|
+
readonly supportsNativeTools: true;
|
|
46477
|
+
readonly defaultToolProtocol: "native";
|
|
46475
46478
|
readonly inputPrice: 0;
|
|
46476
46479
|
readonly outputPrice: 0;
|
|
46477
46480
|
readonly description: "DeepSeek V3 Base model.";
|
|
@@ -46481,6 +46484,8 @@ declare const chutesModels: {
|
|
|
46481
46484
|
readonly contextWindow: 163840;
|
|
46482
46485
|
readonly supportsImages: false;
|
|
46483
46486
|
readonly supportsPromptCache: false;
|
|
46487
|
+
readonly supportsNativeTools: true;
|
|
46488
|
+
readonly defaultToolProtocol: "native";
|
|
46484
46489
|
readonly inputPrice: 0;
|
|
46485
46490
|
readonly outputPrice: 0;
|
|
46486
46491
|
readonly description: "DeepSeek R1 Zero model.";
|
|
@@ -46490,6 +46495,8 @@ declare const chutesModels: {
|
|
|
46490
46495
|
readonly contextWindow: 163840;
|
|
46491
46496
|
readonly supportsImages: false;
|
|
46492
46497
|
readonly supportsPromptCache: false;
|
|
46498
|
+
readonly supportsNativeTools: true;
|
|
46499
|
+
readonly defaultToolProtocol: "native";
|
|
46493
46500
|
readonly inputPrice: 0;
|
|
46494
46501
|
readonly outputPrice: 0;
|
|
46495
46502
|
readonly description: "DeepSeek V3 (0324) model.";
|
|
@@ -46499,6 +46506,8 @@ declare const chutesModels: {
|
|
|
46499
46506
|
readonly contextWindow: 262144;
|
|
46500
46507
|
readonly supportsImages: false;
|
|
46501
46508
|
readonly supportsPromptCache: false;
|
|
46509
|
+
readonly supportsNativeTools: true;
|
|
46510
|
+
readonly defaultToolProtocol: "native";
|
|
46502
46511
|
readonly inputPrice: 0;
|
|
46503
46512
|
readonly outputPrice: 0;
|
|
46504
46513
|
readonly description: "Qwen3 235B A22B Instruct 2507 model with 262K context window.";
|
|
@@ -46508,6 +46517,8 @@ declare const chutesModels: {
|
|
|
46508
46517
|
readonly contextWindow: 40960;
|
|
46509
46518
|
readonly supportsImages: false;
|
|
46510
46519
|
readonly supportsPromptCache: false;
|
|
46520
|
+
readonly supportsNativeTools: true;
|
|
46521
|
+
readonly defaultToolProtocol: "native";
|
|
46511
46522
|
readonly inputPrice: 0;
|
|
46512
46523
|
readonly outputPrice: 0;
|
|
46513
46524
|
readonly description: "Qwen3 235B A22B model.";
|
|
@@ -46517,6 +46528,8 @@ declare const chutesModels: {
|
|
|
46517
46528
|
readonly contextWindow: 40960;
|
|
46518
46529
|
readonly supportsImages: false;
|
|
46519
46530
|
readonly supportsPromptCache: false;
|
|
46531
|
+
readonly supportsNativeTools: true;
|
|
46532
|
+
readonly defaultToolProtocol: "native";
|
|
46520
46533
|
readonly inputPrice: 0;
|
|
46521
46534
|
readonly outputPrice: 0;
|
|
46522
46535
|
readonly description: "Qwen3 32B model.";
|
|
@@ -46526,6 +46539,8 @@ declare const chutesModels: {
|
|
|
46526
46539
|
readonly contextWindow: 40960;
|
|
46527
46540
|
readonly supportsImages: false;
|
|
46528
46541
|
readonly supportsPromptCache: false;
|
|
46542
|
+
readonly supportsNativeTools: true;
|
|
46543
|
+
readonly defaultToolProtocol: "native";
|
|
46529
46544
|
readonly inputPrice: 0;
|
|
46530
46545
|
readonly outputPrice: 0;
|
|
46531
46546
|
readonly description: "Qwen3 30B A3B model.";
|
|
@@ -46535,6 +46550,8 @@ declare const chutesModels: {
|
|
|
46535
46550
|
readonly contextWindow: 40960;
|
|
46536
46551
|
readonly supportsImages: false;
|
|
46537
46552
|
readonly supportsPromptCache: false;
|
|
46553
|
+
readonly supportsNativeTools: true;
|
|
46554
|
+
readonly defaultToolProtocol: "native";
|
|
46538
46555
|
readonly inputPrice: 0;
|
|
46539
46556
|
readonly outputPrice: 0;
|
|
46540
46557
|
readonly description: "Qwen3 14B model.";
|
|
@@ -46544,6 +46561,8 @@ declare const chutesModels: {
|
|
|
46544
46561
|
readonly contextWindow: 40960;
|
|
46545
46562
|
readonly supportsImages: false;
|
|
46546
46563
|
readonly supportsPromptCache: false;
|
|
46564
|
+
readonly supportsNativeTools: true;
|
|
46565
|
+
readonly defaultToolProtocol: "native";
|
|
46547
46566
|
readonly inputPrice: 0;
|
|
46548
46567
|
readonly outputPrice: 0;
|
|
46549
46568
|
readonly description: "Qwen3 8B model.";
|
|
@@ -46553,6 +46572,8 @@ declare const chutesModels: {
|
|
|
46553
46572
|
readonly contextWindow: 163840;
|
|
46554
46573
|
readonly supportsImages: false;
|
|
46555
46574
|
readonly supportsPromptCache: false;
|
|
46575
|
+
readonly supportsNativeTools: true;
|
|
46576
|
+
readonly defaultToolProtocol: "native";
|
|
46556
46577
|
readonly inputPrice: 0;
|
|
46557
46578
|
readonly outputPrice: 0;
|
|
46558
46579
|
readonly description: "Microsoft MAI-DS-R1 FP8 model.";
|
|
@@ -46562,6 +46583,8 @@ declare const chutesModels: {
|
|
|
46562
46583
|
readonly contextWindow: 163840;
|
|
46563
46584
|
readonly supportsImages: false;
|
|
46564
46585
|
readonly supportsPromptCache: false;
|
|
46586
|
+
readonly supportsNativeTools: true;
|
|
46587
|
+
readonly defaultToolProtocol: "native";
|
|
46565
46588
|
readonly inputPrice: 0;
|
|
46566
46589
|
readonly outputPrice: 0;
|
|
46567
46590
|
readonly description: "TNGTech DeepSeek R1T Chimera model.";
|
|
@@ -46571,6 +46594,8 @@ declare const chutesModels: {
|
|
|
46571
46594
|
readonly contextWindow: 151329;
|
|
46572
46595
|
readonly supportsImages: false;
|
|
46573
46596
|
readonly supportsPromptCache: false;
|
|
46597
|
+
readonly supportsNativeTools: true;
|
|
46598
|
+
readonly defaultToolProtocol: "native";
|
|
46574
46599
|
readonly inputPrice: 0;
|
|
46575
46600
|
readonly outputPrice: 0;
|
|
46576
46601
|
readonly description: "GLM-4.5-Air model with 151,329 token context window and 106B total parameters with 12B activated.";
|
|
@@ -46580,6 +46605,8 @@ declare const chutesModels: {
|
|
|
46580
46605
|
readonly contextWindow: 131072;
|
|
46581
46606
|
readonly supportsImages: false;
|
|
46582
46607
|
readonly supportsPromptCache: false;
|
|
46608
|
+
readonly supportsNativeTools: true;
|
|
46609
|
+
readonly defaultToolProtocol: "native";
|
|
46583
46610
|
readonly inputPrice: 0;
|
|
46584
46611
|
readonly outputPrice: 0;
|
|
46585
46612
|
readonly description: "GLM-4.5-FP8 model with 128k token context window, optimized for agent-based applications with MoE architecture.";
|
|
@@ -46589,6 +46616,8 @@ declare const chutesModels: {
|
|
|
46589
46616
|
readonly contextWindow: 131072;
|
|
46590
46617
|
readonly supportsImages: false;
|
|
46591
46618
|
readonly supportsPromptCache: false;
|
|
46619
|
+
readonly supportsNativeTools: true;
|
|
46620
|
+
readonly defaultToolProtocol: "native";
|
|
46592
46621
|
readonly inputPrice: 1;
|
|
46593
46622
|
readonly outputPrice: 3;
|
|
46594
46623
|
readonly description: "GLM-4.5-turbo model with 128K token context window, optimized for fast inference.";
|
|
@@ -46598,6 +46627,8 @@ declare const chutesModels: {
|
|
|
46598
46627
|
readonly contextWindow: 202752;
|
|
46599
46628
|
readonly supportsImages: false;
|
|
46600
46629
|
readonly supportsPromptCache: false;
|
|
46630
|
+
readonly supportsNativeTools: true;
|
|
46631
|
+
readonly defaultToolProtocol: "native";
|
|
46601
46632
|
readonly inputPrice: 0;
|
|
46602
46633
|
readonly outputPrice: 0;
|
|
46603
46634
|
readonly description: "GLM-4.6 introduces major upgrades over GLM-4.5, including a longer 200K-token context window for complex tasks, stronger coding performance in benchmarks and real-world tools (such as Claude Code, Cline, Roo Code, and Kilo Code), improved reasoning with tool use during inference, more capable and efficient agent integration, and refined writing that better matches human style, readability, and natural role-play scenarios.";
|
|
@@ -46607,6 +46638,8 @@ declare const chutesModels: {
|
|
|
46607
46638
|
readonly contextWindow: 202752;
|
|
46608
46639
|
readonly supportsImages: false;
|
|
46609
46640
|
readonly supportsPromptCache: false;
|
|
46641
|
+
readonly supportsNativeTools: true;
|
|
46642
|
+
readonly defaultToolProtocol: "native";
|
|
46610
46643
|
readonly inputPrice: 1.15;
|
|
46611
46644
|
readonly outputPrice: 3.25;
|
|
46612
46645
|
readonly description: "GLM-4.6-turbo model with 200K-token context window, optimized for fast inference.";
|
|
@@ -46616,6 +46649,8 @@ declare const chutesModels: {
|
|
|
46616
46649
|
readonly contextWindow: 128000;
|
|
46617
46650
|
readonly supportsImages: false;
|
|
46618
46651
|
readonly supportsPromptCache: false;
|
|
46652
|
+
readonly supportsNativeTools: true;
|
|
46653
|
+
readonly defaultToolProtocol: "native";
|
|
46619
46654
|
readonly inputPrice: 0;
|
|
46620
46655
|
readonly outputPrice: 0;
|
|
46621
46656
|
readonly description: "LongCat Flash Thinking FP8 model with 128K context window, optimized for complex reasoning and coding tasks.";
|
|
@@ -46625,6 +46660,8 @@ declare const chutesModels: {
|
|
|
46625
46660
|
readonly contextWindow: 262144;
|
|
46626
46661
|
readonly supportsImages: false;
|
|
46627
46662
|
readonly supportsPromptCache: false;
|
|
46663
|
+
readonly supportsNativeTools: true;
|
|
46664
|
+
readonly defaultToolProtocol: "native";
|
|
46628
46665
|
readonly inputPrice: 0;
|
|
46629
46666
|
readonly outputPrice: 0;
|
|
46630
46667
|
readonly description: "Qwen3 Coder 480B A35B Instruct FP8 model, optimized for coding tasks.";
|
|
@@ -46634,6 +46671,8 @@ declare const chutesModels: {
|
|
|
46634
46671
|
readonly contextWindow: 75000;
|
|
46635
46672
|
readonly supportsImages: false;
|
|
46636
46673
|
readonly supportsPromptCache: false;
|
|
46674
|
+
readonly supportsNativeTools: true;
|
|
46675
|
+
readonly defaultToolProtocol: "native";
|
|
46637
46676
|
readonly inputPrice: 0.1481;
|
|
46638
46677
|
readonly outputPrice: 0.5926;
|
|
46639
46678
|
readonly description: "Moonshot AI Kimi K2 Instruct model with 75k context window.";
|
|
@@ -46643,6 +46682,8 @@ declare const chutesModels: {
|
|
|
46643
46682
|
readonly contextWindow: 262144;
|
|
46644
46683
|
readonly supportsImages: false;
|
|
46645
46684
|
readonly supportsPromptCache: false;
|
|
46685
|
+
readonly supportsNativeTools: true;
|
|
46686
|
+
readonly defaultToolProtocol: "native";
|
|
46646
46687
|
readonly inputPrice: 0.1999;
|
|
46647
46688
|
readonly outputPrice: 0.8001;
|
|
46648
46689
|
readonly description: "Moonshot AI Kimi K2 Instruct 0905 model with 256k context window.";
|
|
@@ -46652,6 +46693,8 @@ declare const chutesModels: {
|
|
|
46652
46693
|
readonly contextWindow: 262144;
|
|
46653
46694
|
readonly supportsImages: false;
|
|
46654
46695
|
readonly supportsPromptCache: false;
|
|
46696
|
+
readonly supportsNativeTools: true;
|
|
46697
|
+
readonly defaultToolProtocol: "native";
|
|
46655
46698
|
readonly inputPrice: 0.077968332;
|
|
46656
46699
|
readonly outputPrice: 0.31202496;
|
|
46657
46700
|
readonly description: "Qwen3 235B A22B Thinking 2507 model with 262K context window.";
|
|
@@ -46661,6 +46704,8 @@ declare const chutesModels: {
|
|
|
46661
46704
|
readonly contextWindow: 131072;
|
|
46662
46705
|
readonly supportsImages: false;
|
|
46663
46706
|
readonly supportsPromptCache: false;
|
|
46707
|
+
readonly supportsNativeTools: true;
|
|
46708
|
+
readonly defaultToolProtocol: "native";
|
|
46664
46709
|
readonly inputPrice: 0;
|
|
46665
46710
|
readonly outputPrice: 0;
|
|
46666
46711
|
readonly description: "Fast, stable instruction-tuned model optimized for complex tasks, RAG, and tool use without thinking traces.";
|
|
@@ -46670,6 +46715,8 @@ declare const chutesModels: {
|
|
|
46670
46715
|
readonly contextWindow: 131072;
|
|
46671
46716
|
readonly supportsImages: false;
|
|
46672
46717
|
readonly supportsPromptCache: false;
|
|
46718
|
+
readonly supportsNativeTools: true;
|
|
46719
|
+
readonly defaultToolProtocol: "native";
|
|
46673
46720
|
readonly inputPrice: 0;
|
|
46674
46721
|
readonly outputPrice: 0;
|
|
46675
46722
|
readonly description: "Reasoning-first model with structured thinking traces for multi-step problems, math proofs, and code synthesis.";
|
|
@@ -46679,6 +46726,8 @@ declare const chutesModels: {
|
|
|
46679
46726
|
readonly contextWindow: 262144;
|
|
46680
46727
|
readonly supportsImages: true;
|
|
46681
46728
|
readonly supportsPromptCache: false;
|
|
46729
|
+
readonly supportsNativeTools: true;
|
|
46730
|
+
readonly defaultToolProtocol: "native";
|
|
46682
46731
|
readonly inputPrice: 0.16;
|
|
46683
46732
|
readonly outputPrice: 0.65;
|
|
46684
46733
|
readonly description: "Qwen3‑VL‑235B‑A22B‑Thinking is an open‑weight MoE vision‑language model (235B total, ~22B activated) optimized for deliberate multi‑step reasoning with strong text‑image‑video understanding and long‑context capabilities.";
|
|
@@ -46687,205 +46736,110 @@ declare const chutesModels: {
|
|
|
46687
46736
|
declare const chutesDefaultModelInfo: ModelInfo;
|
|
46688
46737
|
|
|
46689
46738
|
/**
|
|
46690
|
-
*
|
|
46691
|
-
*
|
|
46692
|
-
* @param modelName - The original model name (e.g., "claude-sonnet-4-20250514")
|
|
46693
|
-
* @returns The converted model name for Vertex AI (e.g., "claude-sonnet-4@20250514")
|
|
46694
|
-
*
|
|
46695
|
-
* @example
|
|
46696
|
-
* convertModelNameForVertex("claude-sonnet-4-20250514") // returns "claude-sonnet-4@20250514"
|
|
46697
|
-
* convertModelNameForVertex("claude-model") // returns "claude-model" (no change)
|
|
46698
|
-
*/
|
|
46699
|
-
declare function convertModelNameForVertex(modelName: string): string;
|
|
46700
|
-
type ClaudeCodeModelId = keyof typeof claudeCodeModels;
|
|
46701
|
-
declare const claudeCodeDefaultModelId: ClaudeCodeModelId;
|
|
46702
|
-
declare const CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS = 16000;
|
|
46703
|
-
/**
|
|
46704
|
-
* Gets the appropriate model ID based on whether Vertex AI is being used.
|
|
46705
|
-
*
|
|
46706
|
-
* @param baseModelId - The base Claude Code model ID
|
|
46707
|
-
* @param useVertex - Whether to format the model ID for Vertex AI (default: false)
|
|
46708
|
-
* @returns The model ID, potentially formatted for Vertex AI
|
|
46709
|
-
*
|
|
46710
|
-
* @example
|
|
46711
|
-
* getClaudeCodeModelId("claude-sonnet-4-20250514", true) // returns "claude-sonnet-4@20250514"
|
|
46712
|
-
* getClaudeCodeModelId("claude-sonnet-4-20250514", false) // returns "claude-sonnet-4-20250514"
|
|
46739
|
+
* Rate limit information from Claude Code API
|
|
46713
46740
|
*/
|
|
46714
|
-
|
|
46741
|
+
interface ClaudeCodeRateLimitInfo {
|
|
46742
|
+
fiveHour: {
|
|
46743
|
+
status: string;
|
|
46744
|
+
utilization: number;
|
|
46745
|
+
resetTime: number;
|
|
46746
|
+
};
|
|
46747
|
+
weekly?: {
|
|
46748
|
+
status: string;
|
|
46749
|
+
utilization: number;
|
|
46750
|
+
resetTime: number;
|
|
46751
|
+
};
|
|
46752
|
+
weeklyUnified?: {
|
|
46753
|
+
status: string;
|
|
46754
|
+
utilization: number;
|
|
46755
|
+
resetTime: number;
|
|
46756
|
+
};
|
|
46757
|
+
representativeClaim?: string;
|
|
46758
|
+
overage?: {
|
|
46759
|
+
status: string;
|
|
46760
|
+
disabledReason?: string;
|
|
46761
|
+
};
|
|
46762
|
+
fallbackPercentage?: number;
|
|
46763
|
+
organizationId?: string;
|
|
46764
|
+
fetchedAt: number;
|
|
46765
|
+
}
|
|
46715
46766
|
declare const claudeCodeModels: {
|
|
46716
|
-
readonly "claude-
|
|
46717
|
-
readonly
|
|
46718
|
-
readonly supportsPromptCache: true;
|
|
46719
|
-
readonly supportsReasoningEffort: false;
|
|
46720
|
-
readonly supportsReasoningBudget: false;
|
|
46721
|
-
readonly requiredReasoningBudget: false;
|
|
46722
|
-
readonly supportsNativeTools: false;
|
|
46723
|
-
readonly supportsTemperature: false;
|
|
46724
|
-
readonly maxTokens: 64000;
|
|
46767
|
+
readonly "claude-haiku-4-5": {
|
|
46768
|
+
readonly maxTokens: 32768;
|
|
46725
46769
|
readonly contextWindow: 200000;
|
|
46726
|
-
readonly
|
|
46727
|
-
readonly outputPrice: 15;
|
|
46728
|
-
readonly cacheWritesPrice: 3.75;
|
|
46729
|
-
readonly cacheReadsPrice: 0.3;
|
|
46730
|
-
readonly tiers: [{
|
|
46731
|
-
readonly contextWindow: 1000000;
|
|
46732
|
-
readonly inputPrice: 6;
|
|
46733
|
-
readonly outputPrice: 22.5;
|
|
46734
|
-
readonly cacheWritesPrice: 7.5;
|
|
46735
|
-
readonly cacheReadsPrice: 0.6;
|
|
46736
|
-
}];
|
|
46737
|
-
};
|
|
46738
|
-
readonly "claude-sonnet-4-5-20250929[1m]": {
|
|
46739
|
-
readonly contextWindow: 1000000;
|
|
46740
|
-
readonly supportsImages: false;
|
|
46741
|
-
readonly supportsPromptCache: true;
|
|
46742
|
-
readonly supportsReasoningEffort: false;
|
|
46743
|
-
readonly supportsReasoningBudget: false;
|
|
46744
|
-
readonly requiredReasoningBudget: false;
|
|
46745
|
-
readonly supportsNativeTools: false;
|
|
46746
|
-
readonly supportsTemperature: false;
|
|
46747
|
-
readonly maxTokens: 64000;
|
|
46748
|
-
readonly inputPrice: 3;
|
|
46749
|
-
readonly outputPrice: 15;
|
|
46750
|
-
readonly cacheWritesPrice: 3.75;
|
|
46751
|
-
readonly cacheReadsPrice: 0.3;
|
|
46752
|
-
readonly tiers: [{
|
|
46753
|
-
readonly contextWindow: 1000000;
|
|
46754
|
-
readonly inputPrice: 6;
|
|
46755
|
-
readonly outputPrice: 22.5;
|
|
46756
|
-
readonly cacheWritesPrice: 7.5;
|
|
46757
|
-
readonly cacheReadsPrice: 0.6;
|
|
46758
|
-
}];
|
|
46759
|
-
};
|
|
46760
|
-
readonly "claude-sonnet-4-20250514": {
|
|
46761
|
-
readonly supportsImages: false;
|
|
46770
|
+
readonly supportsImages: true;
|
|
46762
46771
|
readonly supportsPromptCache: true;
|
|
46763
|
-
readonly
|
|
46764
|
-
readonly
|
|
46765
|
-
readonly
|
|
46766
|
-
readonly
|
|
46767
|
-
readonly
|
|
46768
|
-
readonly maxTokens: 64000;
|
|
46769
|
-
readonly contextWindow: 200000;
|
|
46770
|
-
readonly inputPrice: 3;
|
|
46771
|
-
readonly outputPrice: 15;
|
|
46772
|
-
readonly cacheWritesPrice: 3.75;
|
|
46773
|
-
readonly cacheReadsPrice: 0.3;
|
|
46774
|
-
readonly tiers: [{
|
|
46775
|
-
readonly contextWindow: 1000000;
|
|
46776
|
-
readonly inputPrice: 6;
|
|
46777
|
-
readonly outputPrice: 22.5;
|
|
46778
|
-
readonly cacheWritesPrice: 7.5;
|
|
46779
|
-
readonly cacheReadsPrice: 0.6;
|
|
46780
|
-
}];
|
|
46772
|
+
readonly supportsNativeTools: true;
|
|
46773
|
+
readonly defaultToolProtocol: "native";
|
|
46774
|
+
readonly supportsReasoningEffort: ["disable", "low", "medium", "high"];
|
|
46775
|
+
readonly reasoningEffort: "medium";
|
|
46776
|
+
readonly description: "Claude Haiku 4.5 - Fast and efficient with thinking";
|
|
46781
46777
|
};
|
|
46782
|
-
readonly "claude-
|
|
46783
|
-
readonly
|
|
46784
|
-
readonly supportsPromptCache: true;
|
|
46785
|
-
readonly supportsReasoningEffort: false;
|
|
46786
|
-
readonly supportsReasoningBudget: false;
|
|
46787
|
-
readonly requiredReasoningBudget: false;
|
|
46788
|
-
readonly supportsNativeTools: false;
|
|
46789
|
-
readonly supportsTemperature: false;
|
|
46790
|
-
readonly maxTokens: 32000;
|
|
46778
|
+
readonly "claude-sonnet-4-5": {
|
|
46779
|
+
readonly maxTokens: 32768;
|
|
46791
46780
|
readonly contextWindow: 200000;
|
|
46792
|
-
readonly
|
|
46793
|
-
readonly outputPrice: 25;
|
|
46794
|
-
readonly cacheWritesPrice: 6.25;
|
|
46795
|
-
readonly cacheReadsPrice: 0.5;
|
|
46796
|
-
};
|
|
46797
|
-
readonly "claude-opus-4-1-20250805": {
|
|
46798
|
-
readonly supportsImages: false;
|
|
46781
|
+
readonly supportsImages: true;
|
|
46799
46782
|
readonly supportsPromptCache: true;
|
|
46800
|
-
readonly
|
|
46801
|
-
readonly
|
|
46802
|
-
readonly
|
|
46803
|
-
readonly
|
|
46804
|
-
readonly
|
|
46805
|
-
readonly maxTokens: 32000;
|
|
46806
|
-
readonly contextWindow: 200000;
|
|
46807
|
-
readonly inputPrice: 15;
|
|
46808
|
-
readonly outputPrice: 75;
|
|
46809
|
-
readonly cacheWritesPrice: 18.75;
|
|
46810
|
-
readonly cacheReadsPrice: 1.5;
|
|
46783
|
+
readonly supportsNativeTools: true;
|
|
46784
|
+
readonly defaultToolProtocol: "native";
|
|
46785
|
+
readonly supportsReasoningEffort: ["disable", "low", "medium", "high"];
|
|
46786
|
+
readonly reasoningEffort: "medium";
|
|
46787
|
+
readonly description: "Claude Sonnet 4.5 - Balanced performance with thinking";
|
|
46811
46788
|
};
|
|
46812
|
-
readonly "claude-opus-4-
|
|
46813
|
-
readonly
|
|
46814
|
-
readonly supportsPromptCache: true;
|
|
46815
|
-
readonly supportsReasoningEffort: false;
|
|
46816
|
-
readonly supportsReasoningBudget: false;
|
|
46817
|
-
readonly requiredReasoningBudget: false;
|
|
46818
|
-
readonly supportsNativeTools: false;
|
|
46819
|
-
readonly supportsTemperature: false;
|
|
46820
|
-
readonly maxTokens: 32000;
|
|
46789
|
+
readonly "claude-opus-4-5": {
|
|
46790
|
+
readonly maxTokens: 32768;
|
|
46821
46791
|
readonly contextWindow: 200000;
|
|
46822
|
-
readonly
|
|
46823
|
-
readonly outputPrice: 75;
|
|
46824
|
-
readonly cacheWritesPrice: 18.75;
|
|
46825
|
-
readonly cacheReadsPrice: 1.5;
|
|
46826
|
-
};
|
|
46827
|
-
readonly "claude-3-7-sonnet-20250219": {
|
|
46828
|
-
readonly supportsImages: false;
|
|
46792
|
+
readonly supportsImages: true;
|
|
46829
46793
|
readonly supportsPromptCache: true;
|
|
46830
|
-
readonly
|
|
46831
|
-
readonly
|
|
46832
|
-
readonly
|
|
46833
|
-
readonly
|
|
46834
|
-
readonly
|
|
46835
|
-
readonly maxTokens: 8192;
|
|
46836
|
-
readonly contextWindow: 200000;
|
|
46837
|
-
readonly inputPrice: 3;
|
|
46838
|
-
readonly outputPrice: 15;
|
|
46839
|
-
readonly cacheWritesPrice: 3.75;
|
|
46840
|
-
readonly cacheReadsPrice: 0.3;
|
|
46794
|
+
readonly supportsNativeTools: true;
|
|
46795
|
+
readonly defaultToolProtocol: "native";
|
|
46796
|
+
readonly supportsReasoningEffort: ["disable", "low", "medium", "high"];
|
|
46797
|
+
readonly reasoningEffort: "medium";
|
|
46798
|
+
readonly description: "Claude Opus 4.5 - Most capable with thinking";
|
|
46841
46799
|
};
|
|
46842
|
-
|
|
46843
|
-
|
|
46844
|
-
|
|
46845
|
-
|
|
46846
|
-
|
|
46847
|
-
|
|
46848
|
-
|
|
46849
|
-
|
|
46850
|
-
|
|
46851
|
-
|
|
46852
|
-
|
|
46853
|
-
|
|
46854
|
-
|
|
46855
|
-
|
|
46800
|
+
};
|
|
46801
|
+
type ClaudeCodeModelId = keyof typeof claudeCodeModels;
|
|
46802
|
+
declare const claudeCodeDefaultModelId: ClaudeCodeModelId;
|
|
46803
|
+
/**
|
|
46804
|
+
* Normalizes a Claude model ID to a valid Claude Code model ID.
|
|
46805
|
+
*
|
|
46806
|
+
* This function handles backward compatibility for legacy model names
|
|
46807
|
+
* that may include version numbers or date suffixes. It maps:
|
|
46808
|
+
* - claude-sonnet-4-5-20250929, claude-sonnet-4-20250514, claude-3-7-sonnet-20250219, claude-3-5-sonnet-20241022 → claude-sonnet-4-5
|
|
46809
|
+
* - claude-opus-4-5-20251101, claude-opus-4-1-20250805, claude-opus-4-20250514 → claude-opus-4-5
|
|
46810
|
+
* - claude-haiku-4-5-20251001, claude-3-5-haiku-20241022 → claude-haiku-4-5
|
|
46811
|
+
*
|
|
46812
|
+
* @param modelId - The model ID to normalize (may be a legacy format)
|
|
46813
|
+
* @returns A valid ClaudeCodeModelId, or the original ID if already valid
|
|
46814
|
+
*
|
|
46815
|
+
* @example
|
|
46816
|
+
* normalizeClaudeCodeModelId("claude-sonnet-4-5") // returns "claude-sonnet-4-5"
|
|
46817
|
+
* normalizeClaudeCodeModelId("claude-3-5-sonnet-20241022") // returns "claude-sonnet-4-5"
|
|
46818
|
+
* normalizeClaudeCodeModelId("claude-opus-4-1-20250805") // returns "claude-opus-4-5"
|
|
46819
|
+
*/
|
|
46820
|
+
declare function normalizeClaudeCodeModelId(modelId: string): ClaudeCodeModelId;
|
|
46821
|
+
/**
|
|
46822
|
+
* Reasoning effort configuration for Claude Code thinking mode.
|
|
46823
|
+
* Maps reasoning effort level to budget_tokens for the thinking process.
|
|
46824
|
+
*
|
|
46825
|
+
* Note: With interleaved thinking (enabled via beta header), budget_tokens
|
|
46826
|
+
* can exceed max_tokens as the token limit becomes the entire context window.
|
|
46827
|
+
* The max_tokens is drawn from the model's maxTokens definition.
|
|
46828
|
+
*
|
|
46829
|
+
* @see https://docs.anthropic.com/en/docs/build-with-claude/extended-thinking#interleaved-thinking
|
|
46830
|
+
*/
|
|
46831
|
+
declare const claudeCodeReasoningConfig: {
|
|
46832
|
+
readonly low: {
|
|
46833
|
+
readonly budgetTokens: 16000;
|
|
46856
46834
|
};
|
|
46857
|
-
readonly
|
|
46858
|
-
readonly
|
|
46859
|
-
readonly supportsPromptCache: true;
|
|
46860
|
-
readonly supportsReasoningEffort: false;
|
|
46861
|
-
readonly supportsReasoningBudget: false;
|
|
46862
|
-
readonly requiredReasoningBudget: false;
|
|
46863
|
-
readonly supportsNativeTools: false;
|
|
46864
|
-
readonly supportsTemperature: false;
|
|
46865
|
-
readonly maxTokens: 8192;
|
|
46866
|
-
readonly contextWindow: 200000;
|
|
46867
|
-
readonly inputPrice: 1;
|
|
46868
|
-
readonly outputPrice: 5;
|
|
46869
|
-
readonly cacheWritesPrice: 1.25;
|
|
46870
|
-
readonly cacheReadsPrice: 0.1;
|
|
46835
|
+
readonly medium: {
|
|
46836
|
+
readonly budgetTokens: 32000;
|
|
46871
46837
|
};
|
|
46872
|
-
readonly
|
|
46873
|
-
readonly
|
|
46874
|
-
readonly supportsPromptCache: true;
|
|
46875
|
-
readonly supportsReasoningEffort: false;
|
|
46876
|
-
readonly supportsReasoningBudget: false;
|
|
46877
|
-
readonly requiredReasoningBudget: false;
|
|
46878
|
-
readonly supportsNativeTools: false;
|
|
46879
|
-
readonly supportsTemperature: false;
|
|
46880
|
-
readonly maxTokens: 64000;
|
|
46881
|
-
readonly contextWindow: 200000;
|
|
46882
|
-
readonly inputPrice: 1;
|
|
46883
|
-
readonly outputPrice: 5;
|
|
46884
|
-
readonly cacheWritesPrice: 1.25;
|
|
46885
|
-
readonly cacheReadsPrice: 0.1;
|
|
46886
|
-
readonly description: "Claude Haiku 4.5 delivers near-frontier intelligence at lightning speeds with extended thinking, vision, and multilingual support.";
|
|
46838
|
+
readonly high: {
|
|
46839
|
+
readonly budgetTokens: 64000;
|
|
46887
46840
|
};
|
|
46888
46841
|
};
|
|
46842
|
+
type ClaudeCodeReasoningLevel = keyof typeof claudeCodeReasoningConfig;
|
|
46889
46843
|
|
|
46890
46844
|
type DeepSeekModelId = keyof typeof deepSeekModels;
|
|
46891
46845
|
declare const deepSeekDefaultModelId: DeepSeekModelId;
|
|
@@ -46910,6 +46864,7 @@ declare const deepSeekModels: {
|
|
|
46910
46864
|
readonly supportsPromptCache: true;
|
|
46911
46865
|
readonly supportsNativeTools: true;
|
|
46912
46866
|
readonly defaultToolProtocol: "native";
|
|
46867
|
+
readonly preserveReasoning: true;
|
|
46913
46868
|
readonly inputPrice: 0.28;
|
|
46914
46869
|
readonly outputPrice: 0.42;
|
|
46915
46870
|
readonly cacheWritesPrice: 0.28;
|
|
@@ -46917,7 +46872,7 @@ declare const deepSeekModels: {
|
|
|
46917
46872
|
readonly description: "DeepSeek-V3.2 (Thinking Mode) achieves performance comparable to OpenAI-o1 across math, code, and reasoning tasks. Supports Chain of Thought reasoning with up to 8K output tokens. Supports JSON output, tool calls, and chat prefix completion (beta).";
|
|
46918
46873
|
};
|
|
46919
46874
|
};
|
|
46920
|
-
declare const DEEP_SEEK_DEFAULT_TEMPERATURE = 0;
|
|
46875
|
+
declare const DEEP_SEEK_DEFAULT_TEMPERATURE = 0.3;
|
|
46921
46876
|
|
|
46922
46877
|
declare const doubaoDefaultModelId = "doubao-seed-1-6-250615";
|
|
46923
46878
|
declare const doubaoModels: {
|
|
@@ -46927,6 +46882,7 @@ declare const doubaoModels: {
|
|
|
46927
46882
|
readonly supportsImages: true;
|
|
46928
46883
|
readonly supportsPromptCache: true;
|
|
46929
46884
|
readonly supportsNativeTools: true;
|
|
46885
|
+
readonly defaultToolProtocol: "native";
|
|
46930
46886
|
readonly inputPrice: 0.0001;
|
|
46931
46887
|
readonly outputPrice: 0.0004;
|
|
46932
46888
|
readonly cacheWritesPrice: 0.0001;
|
|
@@ -46939,6 +46895,7 @@ declare const doubaoModels: {
|
|
|
46939
46895
|
readonly supportsImages: true;
|
|
46940
46896
|
readonly supportsPromptCache: true;
|
|
46941
46897
|
readonly supportsNativeTools: true;
|
|
46898
|
+
readonly defaultToolProtocol: "native";
|
|
46942
46899
|
readonly inputPrice: 0.0002;
|
|
46943
46900
|
readonly outputPrice: 0.0008;
|
|
46944
46901
|
readonly cacheWritesPrice: 0.0002;
|
|
@@ -46951,6 +46908,7 @@ declare const doubaoModels: {
|
|
|
46951
46908
|
readonly supportsImages: true;
|
|
46952
46909
|
readonly supportsPromptCache: true;
|
|
46953
46910
|
readonly supportsNativeTools: true;
|
|
46911
|
+
readonly defaultToolProtocol: "native";
|
|
46954
46912
|
readonly inputPrice: 0.00015;
|
|
46955
46913
|
readonly outputPrice: 0.0006;
|
|
46956
46914
|
readonly cacheWritesPrice: 0.00015;
|
|
@@ -47023,6 +46981,7 @@ declare const fireworksModels: {
|
|
|
47023
46981
|
readonly supportsImages: false;
|
|
47024
46982
|
readonly supportsPromptCache: true;
|
|
47025
46983
|
readonly supportsNativeTools: true;
|
|
46984
|
+
readonly defaultToolProtocol: "native";
|
|
47026
46985
|
readonly inputPrice: 0.6;
|
|
47027
46986
|
readonly outputPrice: 2.5;
|
|
47028
46987
|
readonly cacheReadsPrice: 0.15;
|
|
@@ -47034,6 +46993,7 @@ declare const fireworksModels: {
|
|
|
47034
46993
|
readonly supportsImages: false;
|
|
47035
46994
|
readonly supportsPromptCache: false;
|
|
47036
46995
|
readonly supportsNativeTools: true;
|
|
46996
|
+
readonly defaultToolProtocol: "native";
|
|
47037
46997
|
readonly inputPrice: 0.6;
|
|
47038
46998
|
readonly outputPrice: 2.5;
|
|
47039
46999
|
readonly description: "Kimi K2 is a state-of-the-art mixture-of-experts (MoE) language model with 32 billion activated parameters and 1 trillion total parameters. Trained with the Muon optimizer, Kimi K2 achieves exceptional performance across frontier knowledge, reasoning, and coding tasks while being meticulously optimized for agentic capabilities.";
|
|
@@ -47044,6 +47004,7 @@ declare const fireworksModels: {
|
|
|
47044
47004
|
readonly supportsImages: false;
|
|
47045
47005
|
readonly supportsPromptCache: false;
|
|
47046
47006
|
readonly supportsNativeTools: true;
|
|
47007
|
+
readonly defaultToolProtocol: "native";
|
|
47047
47008
|
readonly inputPrice: 0.3;
|
|
47048
47009
|
readonly outputPrice: 1.2;
|
|
47049
47010
|
readonly description: "MiniMax M2 is a high-performance language model with 204.8K context window, optimized for long-context understanding and generation tasks.";
|
|
@@ -47054,6 +47015,7 @@ declare const fireworksModels: {
|
|
|
47054
47015
|
readonly supportsImages: false;
|
|
47055
47016
|
readonly supportsPromptCache: false;
|
|
47056
47017
|
readonly supportsNativeTools: true;
|
|
47018
|
+
readonly defaultToolProtocol: "native";
|
|
47057
47019
|
readonly inputPrice: 0.22;
|
|
47058
47020
|
readonly outputPrice: 0.88;
|
|
47059
47021
|
readonly description: "Latest Qwen3 thinking model, competitive against the best closed source models in Jul 2025.";
|
|
@@ -47064,6 +47026,7 @@ declare const fireworksModels: {
|
|
|
47064
47026
|
readonly supportsImages: false;
|
|
47065
47027
|
readonly supportsPromptCache: false;
|
|
47066
47028
|
readonly supportsNativeTools: true;
|
|
47029
|
+
readonly defaultToolProtocol: "native";
|
|
47067
47030
|
readonly inputPrice: 0.45;
|
|
47068
47031
|
readonly outputPrice: 1.8;
|
|
47069
47032
|
readonly description: "Qwen3's most agentic code model to date.";
|
|
@@ -47074,6 +47037,7 @@ declare const fireworksModels: {
|
|
|
47074
47037
|
readonly supportsImages: false;
|
|
47075
47038
|
readonly supportsPromptCache: false;
|
|
47076
47039
|
readonly supportsNativeTools: true;
|
|
47040
|
+
readonly defaultToolProtocol: "native";
|
|
47077
47041
|
readonly inputPrice: 3;
|
|
47078
47042
|
readonly outputPrice: 8;
|
|
47079
47043
|
readonly description: "05/28 updated checkpoint of Deepseek R1. Its overall performance is now approaching that of leading models, such as O3 and Gemini 2.5 Pro. Compared to the previous version, the upgraded model shows significant improvements in handling complex reasoning tasks, and this version also offers a reduced hallucination rate, enhanced support for function calling, and better experience for vibe coding. Note that fine-tuning for this model is only available through contacting fireworks at https://fireworks.ai/company/contact-us.";
|
|
@@ -47084,6 +47048,7 @@ declare const fireworksModels: {
|
|
|
47084
47048
|
readonly supportsImages: false;
|
|
47085
47049
|
readonly supportsPromptCache: false;
|
|
47086
47050
|
readonly supportsNativeTools: true;
|
|
47051
|
+
readonly defaultToolProtocol: "native";
|
|
47087
47052
|
readonly inputPrice: 0.9;
|
|
47088
47053
|
readonly outputPrice: 0.9;
|
|
47089
47054
|
readonly description: "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token from Deepseek. Note that fine-tuning for this model is only available through contacting fireworks at https://fireworks.ai/company/contact-us.";
|
|
@@ -47094,6 +47059,7 @@ declare const fireworksModels: {
|
|
|
47094
47059
|
readonly supportsImages: false;
|
|
47095
47060
|
readonly supportsPromptCache: false;
|
|
47096
47061
|
readonly supportsNativeTools: true;
|
|
47062
|
+
readonly defaultToolProtocol: "native";
|
|
47097
47063
|
readonly inputPrice: 0.56;
|
|
47098
47064
|
readonly outputPrice: 1.68;
|
|
47099
47065
|
readonly description: "DeepSeek v3.1 is an improved version of the v3 model with enhanced performance, better reasoning capabilities, and improved code generation. This Mixture-of-Experts (MoE) model maintains the same 671B total parameters with 37B activated per token.";
|
|
@@ -47104,6 +47070,7 @@ declare const fireworksModels: {
|
|
|
47104
47070
|
readonly supportsImages: false;
|
|
47105
47071
|
readonly supportsPromptCache: false;
|
|
47106
47072
|
readonly supportsNativeTools: true;
|
|
47073
|
+
readonly defaultToolProtocol: "native";
|
|
47107
47074
|
readonly inputPrice: 0.55;
|
|
47108
47075
|
readonly outputPrice: 2.19;
|
|
47109
47076
|
readonly description: "Z.ai GLM-4.5 with 355B total parameters and 32B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
@@ -47114,6 +47081,7 @@ declare const fireworksModels: {
|
|
|
47114
47081
|
readonly supportsImages: false;
|
|
47115
47082
|
readonly supportsPromptCache: false;
|
|
47116
47083
|
readonly supportsNativeTools: true;
|
|
47084
|
+
readonly defaultToolProtocol: "native";
|
|
47117
47085
|
readonly inputPrice: 0.55;
|
|
47118
47086
|
readonly outputPrice: 2.19;
|
|
47119
47087
|
readonly description: "Z.ai GLM-4.5-Air with 106B total parameters and 12B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
@@ -47124,6 +47092,7 @@ declare const fireworksModels: {
|
|
|
47124
47092
|
readonly supportsImages: false;
|
|
47125
47093
|
readonly supportsPromptCache: false;
|
|
47126
47094
|
readonly supportsNativeTools: true;
|
|
47095
|
+
readonly defaultToolProtocol: "native";
|
|
47127
47096
|
readonly inputPrice: 0.55;
|
|
47128
47097
|
readonly outputPrice: 2.19;
|
|
47129
47098
|
readonly description: "Z.ai GLM-4.6 is an advanced coding model with exceptional performance on complex programming tasks. Features improved reasoning capabilities and enhanced code generation quality, making it ideal for software development workflows.";
|
|
@@ -47134,6 +47103,7 @@ declare const fireworksModels: {
|
|
|
47134
47103
|
readonly supportsImages: false;
|
|
47135
47104
|
readonly supportsPromptCache: false;
|
|
47136
47105
|
readonly supportsNativeTools: true;
|
|
47106
|
+
readonly defaultToolProtocol: "native";
|
|
47137
47107
|
readonly inputPrice: 0.07;
|
|
47138
47108
|
readonly outputPrice: 0.3;
|
|
47139
47109
|
readonly description: "OpenAI gpt-oss-20b: Compact model for local/edge deployments. Optimized for low-latency and resource-constrained environments with chain-of-thought output, adjustable reasoning, and agentic workflows.";
|
|
@@ -47144,6 +47114,7 @@ declare const fireworksModels: {
|
|
|
47144
47114
|
readonly supportsImages: false;
|
|
47145
47115
|
readonly supportsPromptCache: false;
|
|
47146
47116
|
readonly supportsNativeTools: true;
|
|
47117
|
+
readonly defaultToolProtocol: "native";
|
|
47147
47118
|
readonly inputPrice: 0.15;
|
|
47148
47119
|
readonly outputPrice: 0.6;
|
|
47149
47120
|
readonly description: "OpenAI gpt-oss-120b: Production-grade, general-purpose model that fits on a single H100 GPU. Features complex reasoning, configurable effort, full chain-of-thought transparency, and supports function calling, tool use, and structured outputs.";
|
|
@@ -47158,9 +47129,11 @@ declare const geminiModels: {
|
|
|
47158
47129
|
readonly contextWindow: 1048576;
|
|
47159
47130
|
readonly supportsImages: true;
|
|
47160
47131
|
readonly supportsNativeTools: true;
|
|
47132
|
+
readonly defaultToolProtocol: "native";
|
|
47161
47133
|
readonly supportsPromptCache: true;
|
|
47162
47134
|
readonly supportsReasoningEffort: ["low", "high"];
|
|
47163
47135
|
readonly reasoningEffort: "low";
|
|
47136
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47164
47137
|
readonly supportsTemperature: true;
|
|
47165
47138
|
readonly defaultTemperature: 1;
|
|
47166
47139
|
readonly inputPrice: 4;
|
|
@@ -47175,12 +47148,31 @@ declare const geminiModels: {
|
|
|
47175
47148
|
readonly outputPrice: 18;
|
|
47176
47149
|
}];
|
|
47177
47150
|
};
|
|
47151
|
+
readonly "gemini-3-flash-preview": {
|
|
47152
|
+
readonly maxTokens: 65536;
|
|
47153
|
+
readonly contextWindow: 1048576;
|
|
47154
|
+
readonly supportsImages: true;
|
|
47155
|
+
readonly supportsNativeTools: true;
|
|
47156
|
+
readonly defaultToolProtocol: "native";
|
|
47157
|
+
readonly supportsPromptCache: true;
|
|
47158
|
+
readonly supportsReasoningEffort: ["minimal", "low", "medium", "high"];
|
|
47159
|
+
readonly reasoningEffort: "medium";
|
|
47160
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47161
|
+
readonly supportsTemperature: true;
|
|
47162
|
+
readonly defaultTemperature: 1;
|
|
47163
|
+
readonly inputPrice: 0.3;
|
|
47164
|
+
readonly outputPrice: 2.5;
|
|
47165
|
+
readonly cacheReadsPrice: 0.075;
|
|
47166
|
+
readonly cacheWritesPrice: 1;
|
|
47167
|
+
};
|
|
47178
47168
|
readonly "gemini-2.5-pro": {
|
|
47179
47169
|
readonly maxTokens: 64000;
|
|
47180
47170
|
readonly contextWindow: 1048576;
|
|
47181
47171
|
readonly supportsImages: true;
|
|
47182
47172
|
readonly supportsNativeTools: true;
|
|
47173
|
+
readonly defaultToolProtocol: "native";
|
|
47183
47174
|
readonly supportsPromptCache: true;
|
|
47175
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47184
47176
|
readonly inputPrice: 2.5;
|
|
47185
47177
|
readonly outputPrice: 15;
|
|
47186
47178
|
readonly cacheReadsPrice: 0.625;
|
|
@@ -47205,7 +47197,9 @@ declare const geminiModels: {
|
|
|
47205
47197
|
readonly contextWindow: 1048576;
|
|
47206
47198
|
readonly supportsImages: true;
|
|
47207
47199
|
readonly supportsNativeTools: true;
|
|
47200
|
+
readonly defaultToolProtocol: "native";
|
|
47208
47201
|
readonly supportsPromptCache: true;
|
|
47202
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47209
47203
|
readonly inputPrice: 2.5;
|
|
47210
47204
|
readonly outputPrice: 15;
|
|
47211
47205
|
readonly cacheReadsPrice: 0.625;
|
|
@@ -47229,7 +47223,9 @@ declare const geminiModels: {
|
|
|
47229
47223
|
readonly contextWindow: 1048576;
|
|
47230
47224
|
readonly supportsImages: true;
|
|
47231
47225
|
readonly supportsNativeTools: true;
|
|
47226
|
+
readonly defaultToolProtocol: "native";
|
|
47232
47227
|
readonly supportsPromptCache: true;
|
|
47228
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47233
47229
|
readonly inputPrice: 2.5;
|
|
47234
47230
|
readonly outputPrice: 15;
|
|
47235
47231
|
readonly cacheReadsPrice: 0.625;
|
|
@@ -47251,7 +47247,9 @@ declare const geminiModels: {
|
|
|
47251
47247
|
readonly contextWindow: 1048576;
|
|
47252
47248
|
readonly supportsImages: true;
|
|
47253
47249
|
readonly supportsNativeTools: true;
|
|
47250
|
+
readonly defaultToolProtocol: "native";
|
|
47254
47251
|
readonly supportsPromptCache: true;
|
|
47252
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47255
47253
|
readonly inputPrice: 2.5;
|
|
47256
47254
|
readonly outputPrice: 15;
|
|
47257
47255
|
readonly cacheReadsPrice: 0.625;
|
|
@@ -47275,7 +47273,9 @@ declare const geminiModels: {
|
|
|
47275
47273
|
readonly contextWindow: 1048576;
|
|
47276
47274
|
readonly supportsImages: true;
|
|
47277
47275
|
readonly supportsNativeTools: true;
|
|
47276
|
+
readonly defaultToolProtocol: "native";
|
|
47278
47277
|
readonly supportsPromptCache: true;
|
|
47278
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47279
47279
|
readonly inputPrice: 0.3;
|
|
47280
47280
|
readonly outputPrice: 2.5;
|
|
47281
47281
|
readonly cacheReadsPrice: 0.075;
|
|
@@ -47288,7 +47288,9 @@ declare const geminiModels: {
|
|
|
47288
47288
|
readonly contextWindow: 1048576;
|
|
47289
47289
|
readonly supportsImages: true;
|
|
47290
47290
|
readonly supportsNativeTools: true;
|
|
47291
|
+
readonly defaultToolProtocol: "native";
|
|
47291
47292
|
readonly supportsPromptCache: true;
|
|
47293
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47292
47294
|
readonly inputPrice: 0.3;
|
|
47293
47295
|
readonly outputPrice: 2.5;
|
|
47294
47296
|
readonly cacheReadsPrice: 0.075;
|
|
@@ -47301,7 +47303,9 @@ declare const geminiModels: {
|
|
|
47301
47303
|
readonly contextWindow: 1048576;
|
|
47302
47304
|
readonly supportsImages: true;
|
|
47303
47305
|
readonly supportsNativeTools: true;
|
|
47306
|
+
readonly defaultToolProtocol: "native";
|
|
47304
47307
|
readonly supportsPromptCache: true;
|
|
47308
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47305
47309
|
readonly inputPrice: 0.3;
|
|
47306
47310
|
readonly outputPrice: 2.5;
|
|
47307
47311
|
readonly cacheReadsPrice: 0.075;
|
|
@@ -47314,7 +47318,9 @@ declare const geminiModels: {
|
|
|
47314
47318
|
readonly contextWindow: 1048576;
|
|
47315
47319
|
readonly supportsImages: true;
|
|
47316
47320
|
readonly supportsNativeTools: true;
|
|
47321
|
+
readonly defaultToolProtocol: "native";
|
|
47317
47322
|
readonly supportsPromptCache: true;
|
|
47323
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47318
47324
|
readonly inputPrice: 0.1;
|
|
47319
47325
|
readonly outputPrice: 0.4;
|
|
47320
47326
|
readonly cacheReadsPrice: 0.025;
|
|
@@ -47327,7 +47333,9 @@ declare const geminiModels: {
|
|
|
47327
47333
|
readonly contextWindow: 1048576;
|
|
47328
47334
|
readonly supportsImages: true;
|
|
47329
47335
|
readonly supportsNativeTools: true;
|
|
47336
|
+
readonly defaultToolProtocol: "native";
|
|
47330
47337
|
readonly supportsPromptCache: true;
|
|
47338
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
47331
47339
|
readonly inputPrice: 0.1;
|
|
47332
47340
|
readonly outputPrice: 0.4;
|
|
47333
47341
|
readonly cacheReadsPrice: 0.025;
|
|
@@ -47346,6 +47354,7 @@ declare const groqModels: {
|
|
|
47346
47354
|
readonly supportsImages: false;
|
|
47347
47355
|
readonly supportsPromptCache: false;
|
|
47348
47356
|
readonly supportsNativeTools: true;
|
|
47357
|
+
readonly defaultToolProtocol: "native";
|
|
47349
47358
|
readonly inputPrice: 0.05;
|
|
47350
47359
|
readonly outputPrice: 0.08;
|
|
47351
47360
|
readonly description: "Meta Llama 3.1 8B Instant model, 128K context.";
|
|
@@ -47356,6 +47365,7 @@ declare const groqModels: {
|
|
|
47356
47365
|
readonly supportsImages: false;
|
|
47357
47366
|
readonly supportsPromptCache: false;
|
|
47358
47367
|
readonly supportsNativeTools: true;
|
|
47368
|
+
readonly defaultToolProtocol: "native";
|
|
47359
47369
|
readonly inputPrice: 0.59;
|
|
47360
47370
|
readonly outputPrice: 0.79;
|
|
47361
47371
|
readonly description: "Meta Llama 3.3 70B Versatile model, 128K context.";
|
|
@@ -47366,6 +47376,7 @@ declare const groqModels: {
|
|
|
47366
47376
|
readonly supportsImages: false;
|
|
47367
47377
|
readonly supportsPromptCache: false;
|
|
47368
47378
|
readonly supportsNativeTools: true;
|
|
47379
|
+
readonly defaultToolProtocol: "native";
|
|
47369
47380
|
readonly inputPrice: 0.11;
|
|
47370
47381
|
readonly outputPrice: 0.34;
|
|
47371
47382
|
readonly description: "Meta Llama 4 Scout 17B Instruct model, 128K context.";
|
|
@@ -47403,6 +47414,7 @@ declare const groqModels: {
|
|
|
47403
47414
|
readonly supportsImages: false;
|
|
47404
47415
|
readonly supportsPromptCache: false;
|
|
47405
47416
|
readonly supportsNativeTools: true;
|
|
47417
|
+
readonly defaultToolProtocol: "native";
|
|
47406
47418
|
readonly inputPrice: 0.29;
|
|
47407
47419
|
readonly outputPrice: 0.59;
|
|
47408
47420
|
readonly description: "Alibaba Qwen 3 32B model, 128K context.";
|
|
@@ -47432,6 +47444,7 @@ declare const groqModels: {
|
|
|
47432
47444
|
readonly supportsImages: false;
|
|
47433
47445
|
readonly supportsPromptCache: true;
|
|
47434
47446
|
readonly supportsNativeTools: true;
|
|
47447
|
+
readonly defaultToolProtocol: "native";
|
|
47435
47448
|
readonly inputPrice: 0.6;
|
|
47436
47449
|
readonly outputPrice: 2.5;
|
|
47437
47450
|
readonly cacheReadsPrice: 0.15;
|
|
@@ -47443,6 +47456,7 @@ declare const groqModels: {
|
|
|
47443
47456
|
readonly supportsImages: false;
|
|
47444
47457
|
readonly supportsPromptCache: false;
|
|
47445
47458
|
readonly supportsNativeTools: true;
|
|
47459
|
+
readonly defaultToolProtocol: "native";
|
|
47446
47460
|
readonly inputPrice: 0.15;
|
|
47447
47461
|
readonly outputPrice: 0.75;
|
|
47448
47462
|
readonly description: "GPT-OSS 120B is OpenAI's flagship open source model, built on a Mixture-of-Experts (MoE) architecture with 20 billion parameters and 128 experts.";
|
|
@@ -47453,6 +47467,7 @@ declare const groqModels: {
|
|
|
47453
47467
|
readonly supportsImages: false;
|
|
47454
47468
|
readonly supportsPromptCache: false;
|
|
47455
47469
|
readonly supportsNativeTools: true;
|
|
47470
|
+
readonly defaultToolProtocol: "native";
|
|
47456
47471
|
readonly inputPrice: 0.1;
|
|
47457
47472
|
readonly outputPrice: 0.5;
|
|
47458
47473
|
readonly description: "GPT-OSS 20B is OpenAI's flagship open source model, built on a Mixture-of-Experts (MoE) architecture with 20 billion parameters and 32 experts.";
|
|
@@ -47526,6 +47541,7 @@ declare const mistralModels: {
|
|
|
47526
47541
|
readonly supportsImages: true;
|
|
47527
47542
|
readonly supportsPromptCache: false;
|
|
47528
47543
|
readonly supportsNativeTools: true;
|
|
47544
|
+
readonly defaultToolProtocol: "native";
|
|
47529
47545
|
readonly inputPrice: 2;
|
|
47530
47546
|
readonly outputPrice: 5;
|
|
47531
47547
|
};
|
|
@@ -47535,6 +47551,7 @@ declare const mistralModels: {
|
|
|
47535
47551
|
readonly supportsImages: true;
|
|
47536
47552
|
readonly supportsPromptCache: false;
|
|
47537
47553
|
readonly supportsNativeTools: true;
|
|
47554
|
+
readonly defaultToolProtocol: "native";
|
|
47538
47555
|
readonly inputPrice: 0.4;
|
|
47539
47556
|
readonly outputPrice: 2;
|
|
47540
47557
|
};
|
|
@@ -47544,6 +47561,7 @@ declare const mistralModels: {
|
|
|
47544
47561
|
readonly supportsImages: true;
|
|
47545
47562
|
readonly supportsPromptCache: false;
|
|
47546
47563
|
readonly supportsNativeTools: true;
|
|
47564
|
+
readonly defaultToolProtocol: "native";
|
|
47547
47565
|
readonly inputPrice: 0.4;
|
|
47548
47566
|
readonly outputPrice: 2;
|
|
47549
47567
|
};
|
|
@@ -47553,6 +47571,7 @@ declare const mistralModels: {
|
|
|
47553
47571
|
readonly supportsImages: false;
|
|
47554
47572
|
readonly supportsPromptCache: false;
|
|
47555
47573
|
readonly supportsNativeTools: true;
|
|
47574
|
+
readonly defaultToolProtocol: "native";
|
|
47556
47575
|
readonly inputPrice: 0.3;
|
|
47557
47576
|
readonly outputPrice: 0.9;
|
|
47558
47577
|
};
|
|
@@ -47562,6 +47581,7 @@ declare const mistralModels: {
|
|
|
47562
47581
|
readonly supportsImages: false;
|
|
47563
47582
|
readonly supportsPromptCache: false;
|
|
47564
47583
|
readonly supportsNativeTools: true;
|
|
47584
|
+
readonly defaultToolProtocol: "native";
|
|
47565
47585
|
readonly inputPrice: 2;
|
|
47566
47586
|
readonly outputPrice: 6;
|
|
47567
47587
|
};
|
|
@@ -47571,6 +47591,7 @@ declare const mistralModels: {
|
|
|
47571
47591
|
readonly supportsImages: false;
|
|
47572
47592
|
readonly supportsPromptCache: false;
|
|
47573
47593
|
readonly supportsNativeTools: true;
|
|
47594
|
+
readonly defaultToolProtocol: "native";
|
|
47574
47595
|
readonly inputPrice: 0.1;
|
|
47575
47596
|
readonly outputPrice: 0.1;
|
|
47576
47597
|
};
|
|
@@ -47580,6 +47601,7 @@ declare const mistralModels: {
|
|
|
47580
47601
|
readonly supportsImages: false;
|
|
47581
47602
|
readonly supportsPromptCache: false;
|
|
47582
47603
|
readonly supportsNativeTools: true;
|
|
47604
|
+
readonly defaultToolProtocol: "native";
|
|
47583
47605
|
readonly inputPrice: 0.04;
|
|
47584
47606
|
readonly outputPrice: 0.04;
|
|
47585
47607
|
};
|
|
@@ -47589,6 +47611,7 @@ declare const mistralModels: {
|
|
|
47589
47611
|
readonly supportsImages: false;
|
|
47590
47612
|
readonly supportsPromptCache: false;
|
|
47591
47613
|
readonly supportsNativeTools: true;
|
|
47614
|
+
readonly defaultToolProtocol: "native";
|
|
47592
47615
|
readonly inputPrice: 0.2;
|
|
47593
47616
|
readonly outputPrice: 0.6;
|
|
47594
47617
|
};
|
|
@@ -47598,6 +47621,7 @@ declare const mistralModels: {
|
|
|
47598
47621
|
readonly supportsImages: true;
|
|
47599
47622
|
readonly supportsPromptCache: false;
|
|
47600
47623
|
readonly supportsNativeTools: true;
|
|
47624
|
+
readonly defaultToolProtocol: "native";
|
|
47601
47625
|
readonly inputPrice: 2;
|
|
47602
47626
|
readonly outputPrice: 6;
|
|
47603
47627
|
};
|
|
@@ -47613,6 +47637,7 @@ declare const moonshotModels: {
|
|
|
47613
47637
|
readonly supportsImages: false;
|
|
47614
47638
|
readonly supportsPromptCache: true;
|
|
47615
47639
|
readonly supportsNativeTools: true;
|
|
47640
|
+
readonly defaultToolProtocol: "native";
|
|
47616
47641
|
readonly inputPrice: 0.6;
|
|
47617
47642
|
readonly outputPrice: 2.5;
|
|
47618
47643
|
readonly cacheWritesPrice: 0;
|
|
@@ -47625,6 +47650,7 @@ declare const moonshotModels: {
|
|
|
47625
47650
|
readonly supportsImages: false;
|
|
47626
47651
|
readonly supportsPromptCache: true;
|
|
47627
47652
|
readonly supportsNativeTools: true;
|
|
47653
|
+
readonly defaultToolProtocol: "native";
|
|
47628
47654
|
readonly inputPrice: 0.6;
|
|
47629
47655
|
readonly outputPrice: 2.5;
|
|
47630
47656
|
readonly cacheReadsPrice: 0.15;
|
|
@@ -47636,6 +47662,7 @@ declare const moonshotModels: {
|
|
|
47636
47662
|
readonly supportsImages: false;
|
|
47637
47663
|
readonly supportsPromptCache: true;
|
|
47638
47664
|
readonly supportsNativeTools: true;
|
|
47665
|
+
readonly defaultToolProtocol: "native";
|
|
47639
47666
|
readonly inputPrice: 2.4;
|
|
47640
47667
|
readonly outputPrice: 10;
|
|
47641
47668
|
readonly cacheWritesPrice: 0;
|
|
@@ -47648,6 +47675,7 @@ declare const moonshotModels: {
|
|
|
47648
47675
|
readonly supportsImages: false;
|
|
47649
47676
|
readonly supportsPromptCache: true;
|
|
47650
47677
|
readonly supportsNativeTools: true;
|
|
47678
|
+
readonly defaultToolProtocol: "native";
|
|
47651
47679
|
readonly inputPrice: 0.6;
|
|
47652
47680
|
readonly outputPrice: 2.5;
|
|
47653
47681
|
readonly cacheWritesPrice: 0;
|
|
@@ -47670,6 +47698,7 @@ declare const openAiNativeModels: {
|
|
|
47670
47698
|
readonly maxTokens: 128000;
|
|
47671
47699
|
readonly contextWindow: 400000;
|
|
47672
47700
|
readonly supportsNativeTools: true;
|
|
47701
|
+
readonly defaultToolProtocol: "native";
|
|
47673
47702
|
readonly includedTools: ["apply_patch"];
|
|
47674
47703
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47675
47704
|
readonly supportsImages: true;
|
|
@@ -47694,6 +47723,7 @@ declare const openAiNativeModels: {
|
|
|
47694
47723
|
readonly maxTokens: 128000;
|
|
47695
47724
|
readonly contextWindow: 400000;
|
|
47696
47725
|
readonly supportsNativeTools: true;
|
|
47726
|
+
readonly defaultToolProtocol: "native";
|
|
47697
47727
|
readonly includedTools: ["apply_patch"];
|
|
47698
47728
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47699
47729
|
readonly supportsImages: true;
|
|
@@ -47725,6 +47755,7 @@ declare const openAiNativeModels: {
|
|
|
47725
47755
|
readonly maxTokens: 16384;
|
|
47726
47756
|
readonly contextWindow: 128000;
|
|
47727
47757
|
readonly supportsNativeTools: true;
|
|
47758
|
+
readonly defaultToolProtocol: "native";
|
|
47728
47759
|
readonly includedTools: ["apply_patch"];
|
|
47729
47760
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47730
47761
|
readonly supportsImages: true;
|
|
@@ -47738,6 +47769,7 @@ declare const openAiNativeModels: {
|
|
|
47738
47769
|
readonly maxTokens: 128000;
|
|
47739
47770
|
readonly contextWindow: 400000;
|
|
47740
47771
|
readonly supportsNativeTools: true;
|
|
47772
|
+
readonly defaultToolProtocol: "native";
|
|
47741
47773
|
readonly includedTools: ["apply_patch"];
|
|
47742
47774
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47743
47775
|
readonly supportsImages: true;
|
|
@@ -47769,6 +47801,7 @@ declare const openAiNativeModels: {
|
|
|
47769
47801
|
readonly maxTokens: 128000;
|
|
47770
47802
|
readonly contextWindow: 400000;
|
|
47771
47803
|
readonly supportsNativeTools: true;
|
|
47804
|
+
readonly defaultToolProtocol: "native";
|
|
47772
47805
|
readonly includedTools: ["apply_patch"];
|
|
47773
47806
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47774
47807
|
readonly supportsImages: true;
|
|
@@ -47793,6 +47826,7 @@ declare const openAiNativeModels: {
|
|
|
47793
47826
|
readonly maxTokens: 128000;
|
|
47794
47827
|
readonly contextWindow: 400000;
|
|
47795
47828
|
readonly supportsNativeTools: true;
|
|
47829
|
+
readonly defaultToolProtocol: "native";
|
|
47796
47830
|
readonly includedTools: ["apply_patch"];
|
|
47797
47831
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47798
47832
|
readonly supportsImages: true;
|
|
@@ -47810,6 +47844,7 @@ declare const openAiNativeModels: {
|
|
|
47810
47844
|
readonly maxTokens: 128000;
|
|
47811
47845
|
readonly contextWindow: 400000;
|
|
47812
47846
|
readonly supportsNativeTools: true;
|
|
47847
|
+
readonly defaultToolProtocol: "native";
|
|
47813
47848
|
readonly includedTools: ["apply_patch"];
|
|
47814
47849
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47815
47850
|
readonly supportsImages: true;
|
|
@@ -47840,6 +47875,7 @@ declare const openAiNativeModels: {
|
|
|
47840
47875
|
readonly maxTokens: 128000;
|
|
47841
47876
|
readonly contextWindow: 400000;
|
|
47842
47877
|
readonly supportsNativeTools: true;
|
|
47878
|
+
readonly defaultToolProtocol: "native";
|
|
47843
47879
|
readonly includedTools: ["apply_patch"];
|
|
47844
47880
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47845
47881
|
readonly supportsImages: true;
|
|
@@ -47870,6 +47906,7 @@ declare const openAiNativeModels: {
|
|
|
47870
47906
|
readonly maxTokens: 128000;
|
|
47871
47907
|
readonly contextWindow: 400000;
|
|
47872
47908
|
readonly supportsNativeTools: true;
|
|
47909
|
+
readonly defaultToolProtocol: "native";
|
|
47873
47910
|
readonly includedTools: ["apply_patch"];
|
|
47874
47911
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47875
47912
|
readonly supportsImages: true;
|
|
@@ -47893,6 +47930,7 @@ declare const openAiNativeModels: {
|
|
|
47893
47930
|
readonly maxTokens: 128000;
|
|
47894
47931
|
readonly contextWindow: 400000;
|
|
47895
47932
|
readonly supportsNativeTools: true;
|
|
47933
|
+
readonly defaultToolProtocol: "native";
|
|
47896
47934
|
readonly includedTools: ["apply_patch"];
|
|
47897
47935
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47898
47936
|
readonly supportsImages: true;
|
|
@@ -47917,6 +47955,7 @@ declare const openAiNativeModels: {
|
|
|
47917
47955
|
readonly maxTokens: 128000;
|
|
47918
47956
|
readonly contextWindow: 400000;
|
|
47919
47957
|
readonly supportsNativeTools: true;
|
|
47958
|
+
readonly defaultToolProtocol: "native";
|
|
47920
47959
|
readonly includedTools: ["apply_patch"];
|
|
47921
47960
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47922
47961
|
readonly supportsImages: true;
|
|
@@ -47930,6 +47969,7 @@ declare const openAiNativeModels: {
|
|
|
47930
47969
|
readonly maxTokens: 32768;
|
|
47931
47970
|
readonly contextWindow: 1047576;
|
|
47932
47971
|
readonly supportsNativeTools: true;
|
|
47972
|
+
readonly defaultToolProtocol: "native";
|
|
47933
47973
|
readonly includedTools: ["apply_patch"];
|
|
47934
47974
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47935
47975
|
readonly supportsImages: true;
|
|
@@ -47950,6 +47990,7 @@ declare const openAiNativeModels: {
|
|
|
47950
47990
|
readonly maxTokens: 32768;
|
|
47951
47991
|
readonly contextWindow: 1047576;
|
|
47952
47992
|
readonly supportsNativeTools: true;
|
|
47993
|
+
readonly defaultToolProtocol: "native";
|
|
47953
47994
|
readonly includedTools: ["apply_patch"];
|
|
47954
47995
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47955
47996
|
readonly supportsImages: true;
|
|
@@ -47970,6 +48011,7 @@ declare const openAiNativeModels: {
|
|
|
47970
48011
|
readonly maxTokens: 32768;
|
|
47971
48012
|
readonly contextWindow: 1047576;
|
|
47972
48013
|
readonly supportsNativeTools: true;
|
|
48014
|
+
readonly defaultToolProtocol: "native";
|
|
47973
48015
|
readonly includedTools: ["apply_patch"];
|
|
47974
48016
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
47975
48017
|
readonly supportsImages: true;
|
|
@@ -47990,6 +48032,7 @@ declare const openAiNativeModels: {
|
|
|
47990
48032
|
readonly maxTokens: 100000;
|
|
47991
48033
|
readonly contextWindow: 200000;
|
|
47992
48034
|
readonly supportsNativeTools: true;
|
|
48035
|
+
readonly defaultToolProtocol: "native";
|
|
47993
48036
|
readonly supportsImages: true;
|
|
47994
48037
|
readonly supportsPromptCache: true;
|
|
47995
48038
|
readonly inputPrice: 2;
|
|
@@ -48016,6 +48059,7 @@ declare const openAiNativeModels: {
|
|
|
48016
48059
|
readonly maxTokens: 100000;
|
|
48017
48060
|
readonly contextWindow: 200000;
|
|
48018
48061
|
readonly supportsNativeTools: true;
|
|
48062
|
+
readonly defaultToolProtocol: "native";
|
|
48019
48063
|
readonly supportsImages: true;
|
|
48020
48064
|
readonly supportsPromptCache: true;
|
|
48021
48065
|
readonly inputPrice: 2;
|
|
@@ -48028,6 +48072,7 @@ declare const openAiNativeModels: {
|
|
|
48028
48072
|
readonly maxTokens: 100000;
|
|
48029
48073
|
readonly contextWindow: 200000;
|
|
48030
48074
|
readonly supportsNativeTools: true;
|
|
48075
|
+
readonly defaultToolProtocol: "native";
|
|
48031
48076
|
readonly supportsImages: true;
|
|
48032
48077
|
readonly supportsPromptCache: true;
|
|
48033
48078
|
readonly inputPrice: 2;
|
|
@@ -48040,6 +48085,7 @@ declare const openAiNativeModels: {
|
|
|
48040
48085
|
readonly maxTokens: 100000;
|
|
48041
48086
|
readonly contextWindow: 200000;
|
|
48042
48087
|
readonly supportsNativeTools: true;
|
|
48088
|
+
readonly defaultToolProtocol: "native";
|
|
48043
48089
|
readonly supportsImages: true;
|
|
48044
48090
|
readonly supportsPromptCache: true;
|
|
48045
48091
|
readonly inputPrice: 1.1;
|
|
@@ -48066,6 +48112,7 @@ declare const openAiNativeModels: {
|
|
|
48066
48112
|
readonly maxTokens: 100000;
|
|
48067
48113
|
readonly contextWindow: 200000;
|
|
48068
48114
|
readonly supportsNativeTools: true;
|
|
48115
|
+
readonly defaultToolProtocol: "native";
|
|
48069
48116
|
readonly supportsImages: true;
|
|
48070
48117
|
readonly supportsPromptCache: true;
|
|
48071
48118
|
readonly inputPrice: 1.1;
|
|
@@ -48078,6 +48125,7 @@ declare const openAiNativeModels: {
|
|
|
48078
48125
|
readonly maxTokens: 100000;
|
|
48079
48126
|
readonly contextWindow: 200000;
|
|
48080
48127
|
readonly supportsNativeTools: true;
|
|
48128
|
+
readonly defaultToolProtocol: "native";
|
|
48081
48129
|
readonly supportsImages: true;
|
|
48082
48130
|
readonly supportsPromptCache: true;
|
|
48083
48131
|
readonly inputPrice: 1.1;
|
|
@@ -48090,6 +48138,7 @@ declare const openAiNativeModels: {
|
|
|
48090
48138
|
readonly maxTokens: 100000;
|
|
48091
48139
|
readonly contextWindow: 200000;
|
|
48092
48140
|
readonly supportsNativeTools: true;
|
|
48141
|
+
readonly defaultToolProtocol: "native";
|
|
48093
48142
|
readonly supportsImages: false;
|
|
48094
48143
|
readonly supportsPromptCache: true;
|
|
48095
48144
|
readonly inputPrice: 1.1;
|
|
@@ -48103,6 +48152,7 @@ declare const openAiNativeModels: {
|
|
|
48103
48152
|
readonly maxTokens: 100000;
|
|
48104
48153
|
readonly contextWindow: 200000;
|
|
48105
48154
|
readonly supportsNativeTools: true;
|
|
48155
|
+
readonly defaultToolProtocol: "native";
|
|
48106
48156
|
readonly supportsImages: false;
|
|
48107
48157
|
readonly supportsPromptCache: true;
|
|
48108
48158
|
readonly inputPrice: 1.1;
|
|
@@ -48115,6 +48165,7 @@ declare const openAiNativeModels: {
|
|
|
48115
48165
|
readonly maxTokens: 100000;
|
|
48116
48166
|
readonly contextWindow: 200000;
|
|
48117
48167
|
readonly supportsNativeTools: true;
|
|
48168
|
+
readonly defaultToolProtocol: "native";
|
|
48118
48169
|
readonly supportsImages: false;
|
|
48119
48170
|
readonly supportsPromptCache: true;
|
|
48120
48171
|
readonly inputPrice: 1.1;
|
|
@@ -48127,6 +48178,7 @@ declare const openAiNativeModels: {
|
|
|
48127
48178
|
readonly maxTokens: 100000;
|
|
48128
48179
|
readonly contextWindow: 200000;
|
|
48129
48180
|
readonly supportsNativeTools: true;
|
|
48181
|
+
readonly defaultToolProtocol: "native";
|
|
48130
48182
|
readonly supportsImages: true;
|
|
48131
48183
|
readonly supportsPromptCache: true;
|
|
48132
48184
|
readonly inputPrice: 15;
|
|
@@ -48138,6 +48190,7 @@ declare const openAiNativeModels: {
|
|
|
48138
48190
|
readonly maxTokens: 32768;
|
|
48139
48191
|
readonly contextWindow: 128000;
|
|
48140
48192
|
readonly supportsNativeTools: true;
|
|
48193
|
+
readonly defaultToolProtocol: "native";
|
|
48141
48194
|
readonly supportsImages: true;
|
|
48142
48195
|
readonly supportsPromptCache: true;
|
|
48143
48196
|
readonly inputPrice: 15;
|
|
@@ -48149,6 +48202,7 @@ declare const openAiNativeModels: {
|
|
|
48149
48202
|
readonly maxTokens: 65536;
|
|
48150
48203
|
readonly contextWindow: 128000;
|
|
48151
48204
|
readonly supportsNativeTools: true;
|
|
48205
|
+
readonly defaultToolProtocol: "native";
|
|
48152
48206
|
readonly supportsImages: true;
|
|
48153
48207
|
readonly supportsPromptCache: true;
|
|
48154
48208
|
readonly inputPrice: 1.1;
|
|
@@ -48160,6 +48214,7 @@ declare const openAiNativeModels: {
|
|
|
48160
48214
|
readonly maxTokens: 16384;
|
|
48161
48215
|
readonly contextWindow: 128000;
|
|
48162
48216
|
readonly supportsNativeTools: true;
|
|
48217
|
+
readonly defaultToolProtocol: "native";
|
|
48163
48218
|
readonly supportsImages: true;
|
|
48164
48219
|
readonly supportsPromptCache: true;
|
|
48165
48220
|
readonly inputPrice: 2.5;
|
|
@@ -48178,6 +48233,7 @@ declare const openAiNativeModels: {
|
|
|
48178
48233
|
readonly maxTokens: 16384;
|
|
48179
48234
|
readonly contextWindow: 128000;
|
|
48180
48235
|
readonly supportsNativeTools: true;
|
|
48236
|
+
readonly defaultToolProtocol: "native";
|
|
48181
48237
|
readonly supportsImages: true;
|
|
48182
48238
|
readonly supportsPromptCache: true;
|
|
48183
48239
|
readonly inputPrice: 0.15;
|
|
@@ -48196,6 +48252,7 @@ declare const openAiNativeModels: {
|
|
|
48196
48252
|
readonly maxTokens: 16384;
|
|
48197
48253
|
readonly contextWindow: 200000;
|
|
48198
48254
|
readonly supportsNativeTools: true;
|
|
48255
|
+
readonly defaultToolProtocol: "native";
|
|
48199
48256
|
readonly supportsImages: false;
|
|
48200
48257
|
readonly supportsPromptCache: false;
|
|
48201
48258
|
readonly inputPrice: 1.5;
|
|
@@ -48208,6 +48265,7 @@ declare const openAiNativeModels: {
|
|
|
48208
48265
|
readonly maxTokens: 128000;
|
|
48209
48266
|
readonly contextWindow: 400000;
|
|
48210
48267
|
readonly supportsNativeTools: true;
|
|
48268
|
+
readonly defaultToolProtocol: "native";
|
|
48211
48269
|
readonly includedTools: ["apply_patch"];
|
|
48212
48270
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
48213
48271
|
readonly supportsImages: true;
|
|
@@ -48238,6 +48296,7 @@ declare const openAiNativeModels: {
|
|
|
48238
48296
|
readonly maxTokens: 128000;
|
|
48239
48297
|
readonly contextWindow: 400000;
|
|
48240
48298
|
readonly supportsNativeTools: true;
|
|
48299
|
+
readonly defaultToolProtocol: "native";
|
|
48241
48300
|
readonly includedTools: ["apply_patch"];
|
|
48242
48301
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
48243
48302
|
readonly supportsImages: true;
|
|
@@ -48268,6 +48327,7 @@ declare const openAiNativeModels: {
|
|
|
48268
48327
|
readonly maxTokens: 128000;
|
|
48269
48328
|
readonly contextWindow: 400000;
|
|
48270
48329
|
readonly supportsNativeTools: true;
|
|
48330
|
+
readonly defaultToolProtocol: "native";
|
|
48271
48331
|
readonly includedTools: ["apply_patch"];
|
|
48272
48332
|
readonly excludedTools: ["apply_diff", "write_to_file"];
|
|
48273
48333
|
readonly supportsImages: true;
|
|
@@ -48571,6 +48631,7 @@ declare const sambaNovaModels: {
|
|
|
48571
48631
|
readonly supportsImages: false;
|
|
48572
48632
|
readonly supportsPromptCache: false;
|
|
48573
48633
|
readonly supportsNativeTools: true;
|
|
48634
|
+
readonly defaultToolProtocol: "native";
|
|
48574
48635
|
readonly inputPrice: 0.1;
|
|
48575
48636
|
readonly outputPrice: 0.2;
|
|
48576
48637
|
readonly description: "Meta Llama 3.1 8B Instruct model with 16K context window.";
|
|
@@ -48581,6 +48642,7 @@ declare const sambaNovaModels: {
|
|
|
48581
48642
|
readonly supportsImages: false;
|
|
48582
48643
|
readonly supportsPromptCache: false;
|
|
48583
48644
|
readonly supportsNativeTools: true;
|
|
48645
|
+
readonly defaultToolProtocol: "native";
|
|
48584
48646
|
readonly inputPrice: 0.6;
|
|
48585
48647
|
readonly outputPrice: 1.2;
|
|
48586
48648
|
readonly description: "Meta Llama 3.3 70B Instruct model with 128K context window.";
|
|
@@ -48592,6 +48654,7 @@ declare const sambaNovaModels: {
|
|
|
48592
48654
|
readonly supportsPromptCache: false;
|
|
48593
48655
|
readonly supportsReasoningBudget: true;
|
|
48594
48656
|
readonly supportsNativeTools: true;
|
|
48657
|
+
readonly defaultToolProtocol: "native";
|
|
48595
48658
|
readonly inputPrice: 5;
|
|
48596
48659
|
readonly outputPrice: 7;
|
|
48597
48660
|
readonly description: "DeepSeek R1 reasoning model with 32K context window.";
|
|
@@ -48602,6 +48665,7 @@ declare const sambaNovaModels: {
|
|
|
48602
48665
|
readonly supportsImages: false;
|
|
48603
48666
|
readonly supportsPromptCache: false;
|
|
48604
48667
|
readonly supportsNativeTools: true;
|
|
48668
|
+
readonly defaultToolProtocol: "native";
|
|
48605
48669
|
readonly inputPrice: 3;
|
|
48606
48670
|
readonly outputPrice: 4.5;
|
|
48607
48671
|
readonly description: "DeepSeek V3 model with 32K context window.";
|
|
@@ -48612,6 +48676,7 @@ declare const sambaNovaModels: {
|
|
|
48612
48676
|
readonly supportsImages: false;
|
|
48613
48677
|
readonly supportsPromptCache: false;
|
|
48614
48678
|
readonly supportsNativeTools: true;
|
|
48679
|
+
readonly defaultToolProtocol: "native";
|
|
48615
48680
|
readonly inputPrice: 3;
|
|
48616
48681
|
readonly outputPrice: 4.5;
|
|
48617
48682
|
readonly description: "DeepSeek V3.1 model with 32K context window.";
|
|
@@ -48631,6 +48696,7 @@ declare const sambaNovaModels: {
|
|
|
48631
48696
|
readonly supportsImages: true;
|
|
48632
48697
|
readonly supportsPromptCache: false;
|
|
48633
48698
|
readonly supportsNativeTools: true;
|
|
48699
|
+
readonly defaultToolProtocol: "native";
|
|
48634
48700
|
readonly inputPrice: 0.63;
|
|
48635
48701
|
readonly outputPrice: 1.8;
|
|
48636
48702
|
readonly description: "Meta Llama 4 Maverick 17B 128E Instruct model with 128K context window.";
|
|
@@ -48650,6 +48716,7 @@ declare const sambaNovaModels: {
|
|
|
48650
48716
|
readonly supportsImages: false;
|
|
48651
48717
|
readonly supportsPromptCache: false;
|
|
48652
48718
|
readonly supportsNativeTools: true;
|
|
48719
|
+
readonly defaultToolProtocol: "native";
|
|
48653
48720
|
readonly inputPrice: 0.4;
|
|
48654
48721
|
readonly outputPrice: 0.8;
|
|
48655
48722
|
readonly description: "Alibaba Qwen 3 32B model with 8K context window.";
|
|
@@ -48660,6 +48727,7 @@ declare const sambaNovaModels: {
|
|
|
48660
48727
|
readonly supportsImages: false;
|
|
48661
48728
|
readonly supportsPromptCache: false;
|
|
48662
48729
|
readonly supportsNativeTools: true;
|
|
48730
|
+
readonly defaultToolProtocol: "native";
|
|
48663
48731
|
readonly inputPrice: 0.22;
|
|
48664
48732
|
readonly outputPrice: 0.59;
|
|
48665
48733
|
readonly description: "OpenAI gpt oss 120b model with 128k context window.";
|
|
@@ -48677,9 +48745,11 @@ declare const vertexModels: {
|
|
|
48677
48745
|
readonly contextWindow: 1048576;
|
|
48678
48746
|
readonly supportsImages: true;
|
|
48679
48747
|
readonly supportsNativeTools: true;
|
|
48748
|
+
readonly defaultToolProtocol: "native";
|
|
48680
48749
|
readonly supportsPromptCache: true;
|
|
48681
48750
|
readonly supportsReasoningEffort: ["low", "high"];
|
|
48682
48751
|
readonly reasoningEffort: "low";
|
|
48752
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48683
48753
|
readonly supportsTemperature: true;
|
|
48684
48754
|
readonly defaultTemperature: 1;
|
|
48685
48755
|
readonly inputPrice: 4;
|
|
@@ -48694,12 +48764,31 @@ declare const vertexModels: {
|
|
|
48694
48764
|
readonly outputPrice: 18;
|
|
48695
48765
|
}];
|
|
48696
48766
|
};
|
|
48767
|
+
readonly "gemini-3-flash-preview": {
|
|
48768
|
+
readonly maxTokens: 65536;
|
|
48769
|
+
readonly contextWindow: 1048576;
|
|
48770
|
+
readonly supportsImages: true;
|
|
48771
|
+
readonly supportsNativeTools: true;
|
|
48772
|
+
readonly defaultToolProtocol: "native";
|
|
48773
|
+
readonly supportsPromptCache: true;
|
|
48774
|
+
readonly supportsReasoningEffort: ["minimal", "low", "medium", "high"];
|
|
48775
|
+
readonly reasoningEffort: "medium";
|
|
48776
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48777
|
+
readonly supportsTemperature: true;
|
|
48778
|
+
readonly defaultTemperature: 1;
|
|
48779
|
+
readonly inputPrice: 0.3;
|
|
48780
|
+
readonly outputPrice: 2.5;
|
|
48781
|
+
readonly cacheReadsPrice: 0.075;
|
|
48782
|
+
readonly cacheWritesPrice: 1;
|
|
48783
|
+
};
|
|
48697
48784
|
readonly "gemini-2.5-flash-preview-05-20:thinking": {
|
|
48698
48785
|
readonly maxTokens: 65535;
|
|
48699
48786
|
readonly contextWindow: 1048576;
|
|
48700
48787
|
readonly supportsImages: true;
|
|
48701
48788
|
readonly supportsNativeTools: true;
|
|
48789
|
+
readonly defaultToolProtocol: "native";
|
|
48702
48790
|
readonly supportsPromptCache: true;
|
|
48791
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48703
48792
|
readonly inputPrice: 0.15;
|
|
48704
48793
|
readonly outputPrice: 3.5;
|
|
48705
48794
|
readonly maxThinkingTokens: 24576;
|
|
@@ -48711,7 +48800,9 @@ declare const vertexModels: {
|
|
|
48711
48800
|
readonly contextWindow: 1048576;
|
|
48712
48801
|
readonly supportsImages: true;
|
|
48713
48802
|
readonly supportsNativeTools: true;
|
|
48803
|
+
readonly defaultToolProtocol: "native";
|
|
48714
48804
|
readonly supportsPromptCache: true;
|
|
48805
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48715
48806
|
readonly inputPrice: 0.15;
|
|
48716
48807
|
readonly outputPrice: 0.6;
|
|
48717
48808
|
};
|
|
@@ -48720,7 +48811,9 @@ declare const vertexModels: {
|
|
|
48720
48811
|
readonly contextWindow: 1048576;
|
|
48721
48812
|
readonly supportsImages: true;
|
|
48722
48813
|
readonly supportsNativeTools: true;
|
|
48814
|
+
readonly defaultToolProtocol: "native";
|
|
48723
48815
|
readonly supportsPromptCache: true;
|
|
48816
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48724
48817
|
readonly inputPrice: 0.3;
|
|
48725
48818
|
readonly outputPrice: 2.5;
|
|
48726
48819
|
readonly cacheReadsPrice: 0.075;
|
|
@@ -48733,7 +48826,9 @@ declare const vertexModels: {
|
|
|
48733
48826
|
readonly contextWindow: 1048576;
|
|
48734
48827
|
readonly supportsImages: true;
|
|
48735
48828
|
readonly supportsNativeTools: true;
|
|
48829
|
+
readonly defaultToolProtocol: "native";
|
|
48736
48830
|
readonly supportsPromptCache: false;
|
|
48831
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48737
48832
|
readonly inputPrice: 0.15;
|
|
48738
48833
|
readonly outputPrice: 3.5;
|
|
48739
48834
|
readonly maxThinkingTokens: 24576;
|
|
@@ -48745,7 +48840,9 @@ declare const vertexModels: {
|
|
|
48745
48840
|
readonly contextWindow: 1048576;
|
|
48746
48841
|
readonly supportsImages: true;
|
|
48747
48842
|
readonly supportsNativeTools: true;
|
|
48843
|
+
readonly defaultToolProtocol: "native";
|
|
48748
48844
|
readonly supportsPromptCache: false;
|
|
48845
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48749
48846
|
readonly inputPrice: 0.15;
|
|
48750
48847
|
readonly outputPrice: 0.6;
|
|
48751
48848
|
};
|
|
@@ -48754,7 +48851,9 @@ declare const vertexModels: {
|
|
|
48754
48851
|
readonly contextWindow: 1048576;
|
|
48755
48852
|
readonly supportsImages: true;
|
|
48756
48853
|
readonly supportsNativeTools: true;
|
|
48854
|
+
readonly defaultToolProtocol: "native";
|
|
48757
48855
|
readonly supportsPromptCache: true;
|
|
48856
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48758
48857
|
readonly inputPrice: 2.5;
|
|
48759
48858
|
readonly outputPrice: 15;
|
|
48760
48859
|
};
|
|
@@ -48763,7 +48862,9 @@ declare const vertexModels: {
|
|
|
48763
48862
|
readonly contextWindow: 1048576;
|
|
48764
48863
|
readonly supportsImages: true;
|
|
48765
48864
|
readonly supportsNativeTools: true;
|
|
48865
|
+
readonly defaultToolProtocol: "native";
|
|
48766
48866
|
readonly supportsPromptCache: true;
|
|
48867
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48767
48868
|
readonly inputPrice: 2.5;
|
|
48768
48869
|
readonly outputPrice: 15;
|
|
48769
48870
|
};
|
|
@@ -48772,7 +48873,9 @@ declare const vertexModels: {
|
|
|
48772
48873
|
readonly contextWindow: 1048576;
|
|
48773
48874
|
readonly supportsImages: true;
|
|
48774
48875
|
readonly supportsNativeTools: true;
|
|
48876
|
+
readonly defaultToolProtocol: "native";
|
|
48775
48877
|
readonly supportsPromptCache: true;
|
|
48878
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48776
48879
|
readonly inputPrice: 2.5;
|
|
48777
48880
|
readonly outputPrice: 15;
|
|
48778
48881
|
readonly maxThinkingTokens: 32768;
|
|
@@ -48783,7 +48886,9 @@ declare const vertexModels: {
|
|
|
48783
48886
|
readonly contextWindow: 1048576;
|
|
48784
48887
|
readonly supportsImages: true;
|
|
48785
48888
|
readonly supportsNativeTools: true;
|
|
48889
|
+
readonly defaultToolProtocol: "native";
|
|
48786
48890
|
readonly supportsPromptCache: true;
|
|
48891
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48787
48892
|
readonly inputPrice: 2.5;
|
|
48788
48893
|
readonly outputPrice: 15;
|
|
48789
48894
|
readonly maxThinkingTokens: 32768;
|
|
@@ -48806,7 +48911,9 @@ declare const vertexModels: {
|
|
|
48806
48911
|
readonly contextWindow: 1048576;
|
|
48807
48912
|
readonly supportsImages: true;
|
|
48808
48913
|
readonly supportsNativeTools: true;
|
|
48914
|
+
readonly defaultToolProtocol: "native";
|
|
48809
48915
|
readonly supportsPromptCache: false;
|
|
48916
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48810
48917
|
readonly inputPrice: 0;
|
|
48811
48918
|
readonly outputPrice: 0;
|
|
48812
48919
|
};
|
|
@@ -48815,7 +48922,9 @@ declare const vertexModels: {
|
|
|
48815
48922
|
readonly contextWindow: 2097152;
|
|
48816
48923
|
readonly supportsImages: true;
|
|
48817
48924
|
readonly supportsNativeTools: true;
|
|
48925
|
+
readonly defaultToolProtocol: "native";
|
|
48818
48926
|
readonly supportsPromptCache: false;
|
|
48927
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48819
48928
|
readonly inputPrice: 0;
|
|
48820
48929
|
readonly outputPrice: 0;
|
|
48821
48930
|
};
|
|
@@ -48824,7 +48933,9 @@ declare const vertexModels: {
|
|
|
48824
48933
|
readonly contextWindow: 1048576;
|
|
48825
48934
|
readonly supportsImages: true;
|
|
48826
48935
|
readonly supportsNativeTools: true;
|
|
48936
|
+
readonly defaultToolProtocol: "native";
|
|
48827
48937
|
readonly supportsPromptCache: true;
|
|
48938
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48828
48939
|
readonly inputPrice: 0.15;
|
|
48829
48940
|
readonly outputPrice: 0.6;
|
|
48830
48941
|
};
|
|
@@ -48833,7 +48944,9 @@ declare const vertexModels: {
|
|
|
48833
48944
|
readonly contextWindow: 1048576;
|
|
48834
48945
|
readonly supportsImages: true;
|
|
48835
48946
|
readonly supportsNativeTools: true;
|
|
48947
|
+
readonly defaultToolProtocol: "native";
|
|
48836
48948
|
readonly supportsPromptCache: false;
|
|
48949
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48837
48950
|
readonly inputPrice: 0.075;
|
|
48838
48951
|
readonly outputPrice: 0.3;
|
|
48839
48952
|
};
|
|
@@ -48842,7 +48955,9 @@ declare const vertexModels: {
|
|
|
48842
48955
|
readonly contextWindow: 32768;
|
|
48843
48956
|
readonly supportsImages: true;
|
|
48844
48957
|
readonly supportsNativeTools: true;
|
|
48958
|
+
readonly defaultToolProtocol: "native";
|
|
48845
48959
|
readonly supportsPromptCache: false;
|
|
48960
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48846
48961
|
readonly inputPrice: 0;
|
|
48847
48962
|
readonly outputPrice: 0;
|
|
48848
48963
|
};
|
|
@@ -48851,7 +48966,9 @@ declare const vertexModels: {
|
|
|
48851
48966
|
readonly contextWindow: 1048576;
|
|
48852
48967
|
readonly supportsImages: true;
|
|
48853
48968
|
readonly supportsNativeTools: true;
|
|
48969
|
+
readonly defaultToolProtocol: "native";
|
|
48854
48970
|
readonly supportsPromptCache: true;
|
|
48971
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48855
48972
|
readonly inputPrice: 0.075;
|
|
48856
48973
|
readonly outputPrice: 0.3;
|
|
48857
48974
|
};
|
|
@@ -48860,7 +48977,9 @@ declare const vertexModels: {
|
|
|
48860
48977
|
readonly contextWindow: 2097152;
|
|
48861
48978
|
readonly supportsImages: true;
|
|
48862
48979
|
readonly supportsNativeTools: true;
|
|
48980
|
+
readonly defaultToolProtocol: "native";
|
|
48863
48981
|
readonly supportsPromptCache: false;
|
|
48982
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
48864
48983
|
readonly inputPrice: 1.25;
|
|
48865
48984
|
readonly outputPrice: 5;
|
|
48866
48985
|
};
|
|
@@ -49006,7 +49125,9 @@ declare const vertexModels: {
|
|
|
49006
49125
|
readonly contextWindow: 1048576;
|
|
49007
49126
|
readonly supportsImages: true;
|
|
49008
49127
|
readonly supportsNativeTools: true;
|
|
49128
|
+
readonly defaultToolProtocol: "native";
|
|
49009
49129
|
readonly supportsPromptCache: true;
|
|
49130
|
+
readonly includedTools: ["write_file", "edit_file"];
|
|
49010
49131
|
readonly inputPrice: 0.1;
|
|
49011
49132
|
readonly outputPrice: 0.4;
|
|
49012
49133
|
readonly cacheReadsPrice: 0.025;
|
|
@@ -49277,6 +49398,7 @@ declare const xaiModels: {
|
|
|
49277
49398
|
readonly supportsImages: true;
|
|
49278
49399
|
readonly supportsPromptCache: true;
|
|
49279
49400
|
readonly supportsNativeTools: true;
|
|
49401
|
+
readonly defaultToolProtocol: "native";
|
|
49280
49402
|
readonly inputPrice: 0.2;
|
|
49281
49403
|
readonly outputPrice: 1.5;
|
|
49282
49404
|
readonly cacheWritesPrice: 0.02;
|
|
@@ -49291,6 +49413,7 @@ declare const xaiModels: {
|
|
|
49291
49413
|
readonly supportsImages: true;
|
|
49292
49414
|
readonly supportsPromptCache: true;
|
|
49293
49415
|
readonly supportsNativeTools: true;
|
|
49416
|
+
readonly defaultToolProtocol: "native";
|
|
49294
49417
|
readonly inputPrice: 0.2;
|
|
49295
49418
|
readonly outputPrice: 0.5;
|
|
49296
49419
|
readonly cacheWritesPrice: 0.05;
|
|
@@ -49305,6 +49428,7 @@ declare const xaiModels: {
|
|
|
49305
49428
|
readonly supportsImages: true;
|
|
49306
49429
|
readonly supportsPromptCache: true;
|
|
49307
49430
|
readonly supportsNativeTools: true;
|
|
49431
|
+
readonly defaultToolProtocol: "native";
|
|
49308
49432
|
readonly inputPrice: 0.2;
|
|
49309
49433
|
readonly outputPrice: 0.5;
|
|
49310
49434
|
readonly cacheWritesPrice: 0.05;
|
|
@@ -49319,6 +49443,7 @@ declare const xaiModels: {
|
|
|
49319
49443
|
readonly supportsImages: true;
|
|
49320
49444
|
readonly supportsPromptCache: true;
|
|
49321
49445
|
readonly supportsNativeTools: true;
|
|
49446
|
+
readonly defaultToolProtocol: "native";
|
|
49322
49447
|
readonly inputPrice: 0.2;
|
|
49323
49448
|
readonly outputPrice: 0.5;
|
|
49324
49449
|
readonly cacheWritesPrice: 0.05;
|
|
@@ -49333,6 +49458,7 @@ declare const xaiModels: {
|
|
|
49333
49458
|
readonly supportsImages: true;
|
|
49334
49459
|
readonly supportsPromptCache: true;
|
|
49335
49460
|
readonly supportsNativeTools: true;
|
|
49461
|
+
readonly defaultToolProtocol: "native";
|
|
49336
49462
|
readonly inputPrice: 0.2;
|
|
49337
49463
|
readonly outputPrice: 0.5;
|
|
49338
49464
|
readonly cacheWritesPrice: 0.05;
|
|
@@ -49347,6 +49473,7 @@ declare const xaiModels: {
|
|
|
49347
49473
|
readonly supportsImages: true;
|
|
49348
49474
|
readonly supportsPromptCache: true;
|
|
49349
49475
|
readonly supportsNativeTools: true;
|
|
49476
|
+
readonly defaultToolProtocol: "native";
|
|
49350
49477
|
readonly inputPrice: 3;
|
|
49351
49478
|
readonly outputPrice: 15;
|
|
49352
49479
|
readonly cacheWritesPrice: 0.75;
|
|
@@ -49361,6 +49488,7 @@ declare const xaiModels: {
|
|
|
49361
49488
|
readonly supportsImages: true;
|
|
49362
49489
|
readonly supportsPromptCache: true;
|
|
49363
49490
|
readonly supportsNativeTools: true;
|
|
49491
|
+
readonly defaultToolProtocol: "native";
|
|
49364
49492
|
readonly inputPrice: 0.3;
|
|
49365
49493
|
readonly outputPrice: 0.5;
|
|
49366
49494
|
readonly cacheWritesPrice: 0.07;
|
|
@@ -49377,6 +49505,7 @@ declare const xaiModels: {
|
|
|
49377
49505
|
readonly supportsImages: true;
|
|
49378
49506
|
readonly supportsPromptCache: true;
|
|
49379
49507
|
readonly supportsNativeTools: true;
|
|
49508
|
+
readonly defaultToolProtocol: "native";
|
|
49380
49509
|
readonly inputPrice: 3;
|
|
49381
49510
|
readonly outputPrice: 15;
|
|
49382
49511
|
readonly cacheWritesPrice: 0.75;
|
|
@@ -49403,6 +49532,7 @@ declare const internationalZAiModels: {
|
|
|
49403
49532
|
readonly supportsImages: false;
|
|
49404
49533
|
readonly supportsPromptCache: true;
|
|
49405
49534
|
readonly supportsNativeTools: true;
|
|
49535
|
+
readonly defaultToolProtocol: "native";
|
|
49406
49536
|
readonly inputPrice: 0.6;
|
|
49407
49537
|
readonly outputPrice: 2.2;
|
|
49408
49538
|
readonly cacheWritesPrice: 0;
|
|
@@ -49415,6 +49545,7 @@ declare const internationalZAiModels: {
|
|
|
49415
49545
|
readonly supportsImages: false;
|
|
49416
49546
|
readonly supportsPromptCache: true;
|
|
49417
49547
|
readonly supportsNativeTools: true;
|
|
49548
|
+
readonly defaultToolProtocol: "native";
|
|
49418
49549
|
readonly inputPrice: 0.2;
|
|
49419
49550
|
readonly outputPrice: 1.1;
|
|
49420
49551
|
readonly cacheWritesPrice: 0;
|
|
@@ -49427,6 +49558,7 @@ declare const internationalZAiModels: {
|
|
|
49427
49558
|
readonly supportsImages: false;
|
|
49428
49559
|
readonly supportsPromptCache: true;
|
|
49429
49560
|
readonly supportsNativeTools: true;
|
|
49561
|
+
readonly defaultToolProtocol: "native";
|
|
49430
49562
|
readonly inputPrice: 2.2;
|
|
49431
49563
|
readonly outputPrice: 8.9;
|
|
49432
49564
|
readonly cacheWritesPrice: 0;
|
|
@@ -49439,6 +49571,7 @@ declare const internationalZAiModels: {
|
|
|
49439
49571
|
readonly supportsImages: false;
|
|
49440
49572
|
readonly supportsPromptCache: true;
|
|
49441
49573
|
readonly supportsNativeTools: true;
|
|
49574
|
+
readonly defaultToolProtocol: "native";
|
|
49442
49575
|
readonly inputPrice: 1.1;
|
|
49443
49576
|
readonly outputPrice: 4.5;
|
|
49444
49577
|
readonly cacheWritesPrice: 0;
|
|
@@ -49451,6 +49584,7 @@ declare const internationalZAiModels: {
|
|
|
49451
49584
|
readonly supportsImages: false;
|
|
49452
49585
|
readonly supportsPromptCache: true;
|
|
49453
49586
|
readonly supportsNativeTools: true;
|
|
49587
|
+
readonly defaultToolProtocol: "native";
|
|
49454
49588
|
readonly inputPrice: 0;
|
|
49455
49589
|
readonly outputPrice: 0;
|
|
49456
49590
|
readonly cacheWritesPrice: 0;
|
|
@@ -49463,6 +49597,7 @@ declare const internationalZAiModels: {
|
|
|
49463
49597
|
readonly supportsImages: true;
|
|
49464
49598
|
readonly supportsPromptCache: true;
|
|
49465
49599
|
readonly supportsNativeTools: true;
|
|
49600
|
+
readonly defaultToolProtocol: "native";
|
|
49466
49601
|
readonly inputPrice: 0.6;
|
|
49467
49602
|
readonly outputPrice: 1.8;
|
|
49468
49603
|
readonly cacheWritesPrice: 0;
|
|
@@ -49475,6 +49610,7 @@ declare const internationalZAiModels: {
|
|
|
49475
49610
|
readonly supportsImages: false;
|
|
49476
49611
|
readonly supportsPromptCache: true;
|
|
49477
49612
|
readonly supportsNativeTools: true;
|
|
49613
|
+
readonly defaultToolProtocol: "native";
|
|
49478
49614
|
readonly inputPrice: 0.6;
|
|
49479
49615
|
readonly outputPrice: 2.2;
|
|
49480
49616
|
readonly cacheWritesPrice: 0;
|
|
@@ -49487,6 +49623,7 @@ declare const internationalZAiModels: {
|
|
|
49487
49623
|
readonly supportsImages: false;
|
|
49488
49624
|
readonly supportsPromptCache: false;
|
|
49489
49625
|
readonly supportsNativeTools: true;
|
|
49626
|
+
readonly defaultToolProtocol: "native";
|
|
49490
49627
|
readonly inputPrice: 0.1;
|
|
49491
49628
|
readonly outputPrice: 0.1;
|
|
49492
49629
|
readonly cacheWritesPrice: 0;
|
|
@@ -49503,6 +49640,7 @@ declare const mainlandZAiModels: {
|
|
|
49503
49640
|
readonly supportsImages: false;
|
|
49504
49641
|
readonly supportsPromptCache: true;
|
|
49505
49642
|
readonly supportsNativeTools: true;
|
|
49643
|
+
readonly defaultToolProtocol: "native";
|
|
49506
49644
|
readonly inputPrice: 0.29;
|
|
49507
49645
|
readonly outputPrice: 1.14;
|
|
49508
49646
|
readonly cacheWritesPrice: 0;
|
|
@@ -49515,6 +49653,7 @@ declare const mainlandZAiModels: {
|
|
|
49515
49653
|
readonly supportsImages: false;
|
|
49516
49654
|
readonly supportsPromptCache: true;
|
|
49517
49655
|
readonly supportsNativeTools: true;
|
|
49656
|
+
readonly defaultToolProtocol: "native";
|
|
49518
49657
|
readonly inputPrice: 0.1;
|
|
49519
49658
|
readonly outputPrice: 0.6;
|
|
49520
49659
|
readonly cacheWritesPrice: 0;
|
|
@@ -49527,6 +49666,7 @@ declare const mainlandZAiModels: {
|
|
|
49527
49666
|
readonly supportsImages: false;
|
|
49528
49667
|
readonly supportsPromptCache: true;
|
|
49529
49668
|
readonly supportsNativeTools: true;
|
|
49669
|
+
readonly defaultToolProtocol: "native";
|
|
49530
49670
|
readonly inputPrice: 0.29;
|
|
49531
49671
|
readonly outputPrice: 1.14;
|
|
49532
49672
|
readonly cacheWritesPrice: 0;
|
|
@@ -49539,6 +49679,7 @@ declare const mainlandZAiModels: {
|
|
|
49539
49679
|
readonly supportsImages: false;
|
|
49540
49680
|
readonly supportsPromptCache: true;
|
|
49541
49681
|
readonly supportsNativeTools: true;
|
|
49682
|
+
readonly defaultToolProtocol: "native";
|
|
49542
49683
|
readonly inputPrice: 0.1;
|
|
49543
49684
|
readonly outputPrice: 0.6;
|
|
49544
49685
|
readonly cacheWritesPrice: 0;
|
|
@@ -49551,6 +49692,7 @@ declare const mainlandZAiModels: {
|
|
|
49551
49692
|
readonly supportsImages: false;
|
|
49552
49693
|
readonly supportsPromptCache: true;
|
|
49553
49694
|
readonly supportsNativeTools: true;
|
|
49695
|
+
readonly defaultToolProtocol: "native";
|
|
49554
49696
|
readonly inputPrice: 0;
|
|
49555
49697
|
readonly outputPrice: 0;
|
|
49556
49698
|
readonly cacheWritesPrice: 0;
|
|
@@ -49563,6 +49705,7 @@ declare const mainlandZAiModels: {
|
|
|
49563
49705
|
readonly supportsImages: true;
|
|
49564
49706
|
readonly supportsPromptCache: true;
|
|
49565
49707
|
readonly supportsNativeTools: true;
|
|
49708
|
+
readonly defaultToolProtocol: "native";
|
|
49566
49709
|
readonly inputPrice: 0.29;
|
|
49567
49710
|
readonly outputPrice: 0.93;
|
|
49568
49711
|
readonly cacheWritesPrice: 0;
|
|
@@ -49575,6 +49718,7 @@ declare const mainlandZAiModels: {
|
|
|
49575
49718
|
readonly supportsImages: false;
|
|
49576
49719
|
readonly supportsPromptCache: true;
|
|
49577
49720
|
readonly supportsNativeTools: true;
|
|
49721
|
+
readonly defaultToolProtocol: "native";
|
|
49578
49722
|
readonly inputPrice: 0.29;
|
|
49579
49723
|
readonly outputPrice: 1.14;
|
|
49580
49724
|
readonly cacheWritesPrice: 0;
|
|
@@ -49618,6 +49762,7 @@ declare const minimaxModels: {
|
|
|
49618
49762
|
readonly supportsImages: false;
|
|
49619
49763
|
readonly supportsPromptCache: true;
|
|
49620
49764
|
readonly supportsNativeTools: true;
|
|
49765
|
+
readonly defaultToolProtocol: "native";
|
|
49621
49766
|
readonly preserveReasoning: true;
|
|
49622
49767
|
readonly inputPrice: 0.3;
|
|
49623
49768
|
readonly outputPrice: 1.2;
|
|
@@ -49631,6 +49776,7 @@ declare const minimaxModels: {
|
|
|
49631
49776
|
readonly supportsImages: false;
|
|
49632
49777
|
readonly supportsPromptCache: true;
|
|
49633
49778
|
readonly supportsNativeTools: true;
|
|
49779
|
+
readonly defaultToolProtocol: "native";
|
|
49634
49780
|
readonly preserveReasoning: true;
|
|
49635
49781
|
readonly inputPrice: 0.3;
|
|
49636
49782
|
readonly outputPrice: 1.2;
|
|
@@ -49652,4 +49798,4 @@ declare function getProviderDefaultModelId(provider: ProviderName, options?: {
|
|
|
49652
49798
|
isChina?: boolean;
|
|
49653
49799
|
}): string;
|
|
49654
49800
|
|
|
49655
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, ApiProviderError, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_1M_CONTEXT_MODEL_IDS, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_GLOBAL_INFERENCE_MODEL_IDS, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_SERVICE_TIER_MODEL_IDS, BEDROCK_SERVICE_TIER_PRICING, type BasetenModelId, type BedrockModelId, type BedrockServiceTier, type BrowserActionParams, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, CONSENT_COOKIE_NAME, CONTEXT_MANAGEMENT_EVENTS, COOKIE_CONSENT_EVENTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, ConnectionState, type ConsentCookieValue, type ContextCondense, type ContextManagementEvent, type ContextTruncation, type Coordinate, type CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomProvider, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CHECKPOINT_TIMEOUT_SECONDS, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, EXPECTED_API_ERROR_CODES, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FauxProvider, type FeatherlessModelId, type FileEntry, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLOBAL_SECRET_KEYS, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GenerateImageParams, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, IMAGE_GENERATION_MODELS, IMAGE_GENERATION_MODEL_IDS, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type ImageGenerationApiMethod, type ImageGenerationModel, type ImageGenerationProvider, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternalProvider, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LeaveResponse, type LineRange, type LocalProvider, MAX_CHECKPOINT_TIMEOUT_SECONDS, MINIMAX_DEFAULT_MAX_TOKENS, MINIMAX_DEFAULT_TEMPERATURE, MIN_CHECKPOINT_TIMEOUT_SECONDS, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type McpServerUse, type MinimaxModelId, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelIdKey, type ModelInfo, type ModelParameter, type MoonshotModelId, type NonBlockingAsk, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationFeatures, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortExtended, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModel, RooModelSchema, type RooModelsResponse, RooModelsResponseSchema, RooPricingSchema, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type ServiceTier, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type Size, type StaticAppProperties, type SuggestionItem, TOOL_PROTOCOL, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolProtocol, type ToolUsage, type TypicalProvider, type UsageStats, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type WorkspaceTaskVisibility, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, type ZaiApiLine, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, basetenDefaultModelId, basetenModels, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesDefaultModelInfo, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, contextTruncationSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customProviders, customSupportPromptsSchema, deepInfraDefaultModelId, deepInfraDefaultModelInfo, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, extractApiProviderErrorProperties, fauxProviders, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getEffectiveProtocol, getErrorMessage, getErrorStatusCode, getImageGenerationProvider, getModelId, getProviderDefaultModelId, gitPropertiesSchema, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internalProviders, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isApiProviderError, isContextManagementEvent, isCustomProvider, isDynamicProvider, isFauxProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isInternalProvider, isLanguage, isLocalProvider, isModelParameter, isNativeProtocol, isNonBlockingAsk, isProviderName, isResumableAsk, isSecretStateKey, isTypicalProvider, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, localProviders, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, minimaxDefaultModelId, minimaxDefaultModelInfo, minimaxModels, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelIdKeys, modelIdKeysByProvider, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, nonBlockingAsks, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationFeaturesSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, queuedMessageSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortExtendedSchema, reasoningEffortSettingSchema, reasoningEffortSettingValues, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsExtended, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, serviceTierSchema, serviceTiers, shareResponseSchema, shouldReportApiErrorToTelemetry, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, usageStatsSchema, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels, zaiApiLineConfigs, zaiApiLineSchema };
|
|
49801
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, ApiProviderError, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_1M_CONTEXT_MODEL_IDS, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_GLOBAL_INFERENCE_MODEL_IDS, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_SERVICE_TIER_MODEL_IDS, BEDROCK_SERVICE_TIER_PRICING, type BasetenModelId, type BedrockModelId, type BedrockServiceTier, type BrowserActionParams, CODEBASE_INDEX_DEFAULTS, CONSENT_COOKIE_NAME, CONTEXT_MANAGEMENT_EVENTS, COOKIE_CONSENT_EVENTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClaudeCodeRateLimitInfo, type ClaudeCodeReasoningLevel, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, ConnectionState, type ConsentCookieValue, type ContextCondense, type ContextManagementEvent, type ContextTruncation, type Coordinate, type CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomProvider, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CHECKPOINT_TIMEOUT_SECONDS, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, EXPECTED_API_ERROR_CODES, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FauxProvider, type FeatherlessModelId, type FileEntry, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLOBAL_SECRET_KEYS, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GenerateImageParams, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, IMAGE_GENERATION_MODELS, IMAGE_GENERATION_MODEL_IDS, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type ImageGenerationApiMethod, type ImageGenerationModel, type ImageGenerationProvider, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternalProvider, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LeaveResponse, type LineRange, type LocalProvider, MAX_CHECKPOINT_TIMEOUT_SECONDS, MINIMAX_DEFAULT_MAX_TOKENS, MINIMAX_DEFAULT_TEMPERATURE, MIN_CHECKPOINT_TIMEOUT_SECONDS, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type McpServerUse, type MinimaxModelId, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelIdKey, type ModelInfo, type ModelParameter, type MoonshotModelId, type NonBlockingAsk, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationFeatures, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortExtended, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModel, RooModelSchema, type RooModelsResponse, RooModelsResponseSchema, RooPricingSchema, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type ServiceTier, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type Size, type StaticAppProperties, type SuggestionItem, TOOL_PROTOCOL, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolProtocol, type ToolUsage, type TypicalProvider, type UsageStats, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type WorkspaceTaskVisibility, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, type ZaiApiLine, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, basetenDefaultModelId, basetenModels, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesDefaultModelInfo, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, claudeCodeReasoningConfig, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, contextTruncationSchema, customModePromptsSchema, customModesSettingsSchema, customProviders, customSupportPromptsSchema, deepInfraDefaultModelId, deepInfraDefaultModelInfo, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, extractApiProviderErrorProperties, extractMessageFromJsonPayload, fauxProviders, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getEffectiveProtocol, getErrorMessage, getErrorStatusCode, getImageGenerationProvider, getModelId, getProviderDefaultModelId, gitPropertiesSchema, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internalProviders, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isApiProviderError, isContextManagementEvent, isCustomProvider, isDynamicProvider, isFauxProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isInternalProvider, isLanguage, isLocalProvider, isModelParameter, isNativeProtocol, isNonBlockingAsk, isProviderName, isResumableAsk, isSecretStateKey, isTypicalProvider, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, localProviders, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, minimaxDefaultModelId, minimaxDefaultModelInfo, minimaxModels, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelIdKeys, modelIdKeysByProvider, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, nonBlockingAsks, normalizeClaudeCodeModelId, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationFeaturesSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, queuedMessageSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortExtendedSchema, reasoningEffortSettingSchema, reasoningEffortSettingValues, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsExtended, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, serviceTierSchema, serviceTiers, shareResponseSchema, shouldReportApiErrorToTelemetry, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, usageStatsSchema, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels, zaiApiLineConfigs, zaiApiLineSchema };
|