@roo-code/types 1.79.0 → 1.81.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 +294 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +582 -15
- package/dist/index.d.ts +582 -15
- package/dist/index.js +292 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1604,6 +1604,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1604
1604
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
1605
1605
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
1606
1606
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1607
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
1607
1608
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1608
1609
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
1609
1610
|
contextWindow: z.ZodNumber;
|
|
@@ -1648,6 +1649,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1648
1649
|
minTokensPerCachePoint?: number | undefined;
|
|
1649
1650
|
maxCachePoints?: number | undefined;
|
|
1650
1651
|
cachableFields?: string[] | undefined;
|
|
1652
|
+
deprecated?: boolean | undefined;
|
|
1651
1653
|
tiers?: {
|
|
1652
1654
|
contextWindow: number;
|
|
1653
1655
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -1678,6 +1680,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1678
1680
|
minTokensPerCachePoint?: number | undefined;
|
|
1679
1681
|
maxCachePoints?: number | undefined;
|
|
1680
1682
|
cachableFields?: string[] | undefined;
|
|
1683
|
+
deprecated?: boolean | undefined;
|
|
1681
1684
|
tiers?: {
|
|
1682
1685
|
contextWindow: number;
|
|
1683
1686
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -1735,6 +1738,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1735
1738
|
minTokensPerCachePoint?: number | undefined;
|
|
1736
1739
|
maxCachePoints?: number | undefined;
|
|
1737
1740
|
cachableFields?: string[] | undefined;
|
|
1741
|
+
deprecated?: boolean | undefined;
|
|
1738
1742
|
tiers?: {
|
|
1739
1743
|
contextWindow: number;
|
|
1740
1744
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -1790,6 +1794,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1790
1794
|
minTokensPerCachePoint?: number | undefined;
|
|
1791
1795
|
maxCachePoints?: number | undefined;
|
|
1792
1796
|
cachableFields?: string[] | undefined;
|
|
1797
|
+
deprecated?: boolean | undefined;
|
|
1793
1798
|
tiers?: {
|
|
1794
1799
|
contextWindow: number;
|
|
1795
1800
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -1821,6 +1826,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1821
1826
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
1822
1827
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
1823
1828
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
1829
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
1824
1830
|
} & {
|
|
1825
1831
|
apiProvider: z.ZodLiteral<"ollama">;
|
|
1826
1832
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1840,6 +1846,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1840
1846
|
ollamaModelId?: string | undefined;
|
|
1841
1847
|
ollamaBaseUrl?: string | undefined;
|
|
1842
1848
|
ollamaApiKey?: string | undefined;
|
|
1849
|
+
ollamaNumCtx?: number | undefined;
|
|
1843
1850
|
}, {
|
|
1844
1851
|
apiProvider: "ollama";
|
|
1845
1852
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -1857,6 +1864,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1857
1864
|
ollamaModelId?: string | undefined;
|
|
1858
1865
|
ollamaBaseUrl?: string | undefined;
|
|
1859
1866
|
ollamaApiKey?: string | undefined;
|
|
1867
|
+
ollamaNumCtx?: number | undefined;
|
|
1860
1868
|
}>, z.ZodObject<{
|
|
1861
1869
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
1862
1870
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3443,6 +3451,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3443
3451
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3444
3452
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3445
3453
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
3454
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
3446
3455
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3447
3456
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
3448
3457
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3470,6 +3479,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3470
3479
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
3471
3480
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
3472
3481
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3482
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
3473
3483
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3474
3484
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
3475
3485
|
contextWindow: z.ZodNumber;
|
|
@@ -3514,6 +3524,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3514
3524
|
minTokensPerCachePoint?: number | undefined;
|
|
3515
3525
|
maxCachePoints?: number | undefined;
|
|
3516
3526
|
cachableFields?: string[] | undefined;
|
|
3527
|
+
deprecated?: boolean | undefined;
|
|
3517
3528
|
tiers?: {
|
|
3518
3529
|
contextWindow: number;
|
|
3519
3530
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -3544,6 +3555,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3544
3555
|
minTokensPerCachePoint?: number | undefined;
|
|
3545
3556
|
maxCachePoints?: number | undefined;
|
|
3546
3557
|
cachableFields?: string[] | undefined;
|
|
3558
|
+
deprecated?: boolean | undefined;
|
|
3547
3559
|
tiers?: {
|
|
3548
3560
|
contextWindow: number;
|
|
3549
3561
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -3675,6 +3687,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3675
3687
|
minTokensPerCachePoint?: number | undefined;
|
|
3676
3688
|
maxCachePoints?: number | undefined;
|
|
3677
3689
|
cachableFields?: string[] | undefined;
|
|
3690
|
+
deprecated?: boolean | undefined;
|
|
3678
3691
|
tiers?: {
|
|
3679
3692
|
contextWindow: number;
|
|
3680
3693
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -3692,6 +3705,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3692
3705
|
ollamaModelId?: string | undefined;
|
|
3693
3706
|
ollamaBaseUrl?: string | undefined;
|
|
3694
3707
|
ollamaApiKey?: string | undefined;
|
|
3708
|
+
ollamaNumCtx?: number | undefined;
|
|
3695
3709
|
vsCodeLmModelSelector?: {
|
|
3696
3710
|
id?: string | undefined;
|
|
3697
3711
|
family?: string | undefined;
|
|
@@ -3831,6 +3845,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3831
3845
|
minTokensPerCachePoint?: number | undefined;
|
|
3832
3846
|
maxCachePoints?: number | undefined;
|
|
3833
3847
|
cachableFields?: string[] | undefined;
|
|
3848
|
+
deprecated?: boolean | undefined;
|
|
3834
3849
|
tiers?: {
|
|
3835
3850
|
contextWindow: number;
|
|
3836
3851
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -3848,6 +3863,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3848
3863
|
ollamaModelId?: string | undefined;
|
|
3849
3864
|
ollamaBaseUrl?: string | undefined;
|
|
3850
3865
|
ollamaApiKey?: string | undefined;
|
|
3866
|
+
ollamaNumCtx?: number | undefined;
|
|
3851
3867
|
vsCodeLmModelSelector?: {
|
|
3852
3868
|
id?: string | undefined;
|
|
3853
3869
|
family?: string | undefined;
|
|
@@ -3997,6 +4013,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3997
4013
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3998
4014
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3999
4015
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
4016
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
4000
4017
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4001
4018
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
4002
4019
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4024,6 +4041,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4024
4041
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
4025
4042
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
4026
4043
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4044
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
4027
4045
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4028
4046
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
4029
4047
|
contextWindow: z.ZodNumber;
|
|
@@ -4068,6 +4086,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4068
4086
|
minTokensPerCachePoint?: number | undefined;
|
|
4069
4087
|
maxCachePoints?: number | undefined;
|
|
4070
4088
|
cachableFields?: string[] | undefined;
|
|
4089
|
+
deprecated?: boolean | undefined;
|
|
4071
4090
|
tiers?: {
|
|
4072
4091
|
contextWindow: number;
|
|
4073
4092
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -4098,6 +4117,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4098
4117
|
minTokensPerCachePoint?: number | undefined;
|
|
4099
4118
|
maxCachePoints?: number | undefined;
|
|
4100
4119
|
cachableFields?: string[] | undefined;
|
|
4120
|
+
deprecated?: boolean | undefined;
|
|
4101
4121
|
tiers?: {
|
|
4102
4122
|
contextWindow: number;
|
|
4103
4123
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -4232,6 +4252,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4232
4252
|
minTokensPerCachePoint?: number | undefined;
|
|
4233
4253
|
maxCachePoints?: number | undefined;
|
|
4234
4254
|
cachableFields?: string[] | undefined;
|
|
4255
|
+
deprecated?: boolean | undefined;
|
|
4235
4256
|
tiers?: {
|
|
4236
4257
|
contextWindow: number;
|
|
4237
4258
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -4249,6 +4270,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4249
4270
|
ollamaModelId?: string | undefined;
|
|
4250
4271
|
ollamaBaseUrl?: string | undefined;
|
|
4251
4272
|
ollamaApiKey?: string | undefined;
|
|
4273
|
+
ollamaNumCtx?: number | undefined;
|
|
4252
4274
|
vsCodeLmModelSelector?: {
|
|
4253
4275
|
id?: string | undefined;
|
|
4254
4276
|
family?: string | undefined;
|
|
@@ -4389,6 +4411,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4389
4411
|
minTokensPerCachePoint?: number | undefined;
|
|
4390
4412
|
maxCachePoints?: number | undefined;
|
|
4391
4413
|
cachableFields?: string[] | undefined;
|
|
4414
|
+
deprecated?: boolean | undefined;
|
|
4392
4415
|
tiers?: {
|
|
4393
4416
|
contextWindow: number;
|
|
4394
4417
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -4406,6 +4429,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4406
4429
|
ollamaModelId?: string | undefined;
|
|
4407
4430
|
ollamaBaseUrl?: string | undefined;
|
|
4408
4431
|
ollamaApiKey?: string | undefined;
|
|
4432
|
+
ollamaNumCtx?: number | undefined;
|
|
4409
4433
|
vsCodeLmModelSelector?: {
|
|
4410
4434
|
id?: string | undefined;
|
|
4411
4435
|
family?: string | undefined;
|
|
@@ -4885,6 +4909,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4885
4909
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
4886
4910
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
4887
4911
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4912
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
4888
4913
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4889
4914
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
4890
4915
|
contextWindow: z.ZodNumber;
|
|
@@ -4929,6 +4954,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4929
4954
|
minTokensPerCachePoint?: number | undefined;
|
|
4930
4955
|
maxCachePoints?: number | undefined;
|
|
4931
4956
|
cachableFields?: string[] | undefined;
|
|
4957
|
+
deprecated?: boolean | undefined;
|
|
4932
4958
|
tiers?: {
|
|
4933
4959
|
contextWindow: number;
|
|
4934
4960
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -4959,6 +4985,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4959
4985
|
minTokensPerCachePoint?: number | undefined;
|
|
4960
4986
|
maxCachePoints?: number | undefined;
|
|
4961
4987
|
cachableFields?: string[] | undefined;
|
|
4988
|
+
deprecated?: boolean | undefined;
|
|
4962
4989
|
tiers?: {
|
|
4963
4990
|
contextWindow: number;
|
|
4964
4991
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -5016,6 +5043,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5016
5043
|
minTokensPerCachePoint?: number | undefined;
|
|
5017
5044
|
maxCachePoints?: number | undefined;
|
|
5018
5045
|
cachableFields?: string[] | undefined;
|
|
5046
|
+
deprecated?: boolean | undefined;
|
|
5019
5047
|
tiers?: {
|
|
5020
5048
|
contextWindow: number;
|
|
5021
5049
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -5071,6 +5099,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5071
5099
|
minTokensPerCachePoint?: number | undefined;
|
|
5072
5100
|
maxCachePoints?: number | undefined;
|
|
5073
5101
|
cachableFields?: string[] | undefined;
|
|
5102
|
+
deprecated?: boolean | undefined;
|
|
5074
5103
|
tiers?: {
|
|
5075
5104
|
contextWindow: number;
|
|
5076
5105
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -5102,6 +5131,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5102
5131
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
5103
5132
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5104
5133
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
5134
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
5105
5135
|
} & {
|
|
5106
5136
|
apiProvider: z.ZodLiteral<"ollama">;
|
|
5107
5137
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5121,6 +5151,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5121
5151
|
ollamaModelId?: string | undefined;
|
|
5122
5152
|
ollamaBaseUrl?: string | undefined;
|
|
5123
5153
|
ollamaApiKey?: string | undefined;
|
|
5154
|
+
ollamaNumCtx?: number | undefined;
|
|
5124
5155
|
}, {
|
|
5125
5156
|
apiProvider: "ollama";
|
|
5126
5157
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -5138,6 +5169,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5138
5169
|
ollamaModelId?: string | undefined;
|
|
5139
5170
|
ollamaBaseUrl?: string | undefined;
|
|
5140
5171
|
ollamaApiKey?: string | undefined;
|
|
5172
|
+
ollamaNumCtx?: number | undefined;
|
|
5141
5173
|
}>, z.ZodObject<{
|
|
5142
5174
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
5143
5175
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6639,7 +6671,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6639
6671
|
id?: string | undefined;
|
|
6640
6672
|
}>>;
|
|
6641
6673
|
type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
|
|
6642
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "ollamaApiKey", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "openAiNativeServiceTier", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "deepInfraBaseUrl", "deepInfraApiKey", "deepInfraModelId", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "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"];
|
|
6674
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "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", "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"];
|
|
6643
6675
|
/**
|
|
6644
6676
|
* ModelIdKey
|
|
6645
6677
|
*/
|
|
@@ -6660,7 +6692,7 @@ declare const getApiProtocol: (provider: ProviderName | undefined, modelId?: str
|
|
|
6660
6692
|
/**
|
|
6661
6693
|
* MODELS_BY_PROVIDER
|
|
6662
6694
|
*/
|
|
6663
|
-
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "
|
|
6695
|
+
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "openai">, {
|
|
6664
6696
|
id: ProviderName;
|
|
6665
6697
|
label: string;
|
|
6666
6698
|
models: string[];
|
|
@@ -7032,6 +7064,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7032
7064
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
7033
7065
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
7034
7066
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7067
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7035
7068
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
7036
7069
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
7037
7070
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -7197,6 +7230,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7197
7230
|
enhancementApiConfigId?: string | undefined;
|
|
7198
7231
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
7199
7232
|
historyPreviewCollapsed?: boolean | undefined;
|
|
7233
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
7200
7234
|
profileThresholds?: Record<string, number> | undefined;
|
|
7201
7235
|
hasOpenedModeSelector?: boolean | undefined;
|
|
7202
7236
|
lastModeExportPath?: string | undefined;
|
|
@@ -7362,13 +7396,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7362
7396
|
enhancementApiConfigId?: string | undefined;
|
|
7363
7397
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
7364
7398
|
historyPreviewCollapsed?: boolean | undefined;
|
|
7399
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
7365
7400
|
profileThresholds?: Record<string, number> | undefined;
|
|
7366
7401
|
hasOpenedModeSelector?: boolean | undefined;
|
|
7367
7402
|
lastModeExportPath?: string | undefined;
|
|
7368
7403
|
lastModeImportPath?: string | undefined;
|
|
7369
7404
|
}>;
|
|
7370
7405
|
type GlobalSettings = z.infer<typeof globalSettingsSchema>;
|
|
7371
|
-
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "mode", "language", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "dismissedUpsells", "openRouterImageApiKey", "openRouterImageGenerationSelectedModel", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "commandExecutionTimeout", "commandTimeoutAllowlist", "preventCompletionWithOpenTodos", "allowedMaxRequests", "allowedMaxCost", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "includeDiagnosticMessages", "maxDiagnosticMessages", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "maxImageFileSize", "maxTotalImageSize", "terminalOutputLineLimit", "terminalOutputCharacterLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "diagnosticsEnabled", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "includeTaskHistoryInEnhance", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
|
|
7406
|
+
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "mode", "language", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "dismissedUpsells", "openRouterImageApiKey", "openRouterImageGenerationSelectedModel", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "commandExecutionTimeout", "commandTimeoutAllowlist", "preventCompletionWithOpenTodos", "allowedMaxRequests", "allowedMaxCost", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "includeDiagnosticMessages", "maxDiagnosticMessages", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "maxImageFileSize", "maxTotalImageSize", "terminalOutputLineLimit", "terminalOutputCharacterLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "diagnosticsEnabled", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "includeTaskHistoryInEnhance", "historyPreviewCollapsed", "reasoningBlockCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
|
|
7372
7407
|
/**
|
|
7373
7408
|
* RooCodeSettings
|
|
7374
7409
|
*/
|
|
@@ -7461,6 +7496,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7461
7496
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
7462
7497
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7463
7498
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
7499
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
7464
7500
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7465
7501
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
7466
7502
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7488,6 +7524,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7488
7524
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
7489
7525
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
7490
7526
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7527
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
7491
7528
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7492
7529
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
7493
7530
|
contextWindow: z.ZodNumber;
|
|
@@ -7532,6 +7569,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7532
7569
|
minTokensPerCachePoint?: number | undefined;
|
|
7533
7570
|
maxCachePoints?: number | undefined;
|
|
7534
7571
|
cachableFields?: string[] | undefined;
|
|
7572
|
+
deprecated?: boolean | undefined;
|
|
7535
7573
|
tiers?: {
|
|
7536
7574
|
contextWindow: number;
|
|
7537
7575
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -7562,6 +7600,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7562
7600
|
minTokensPerCachePoint?: number | undefined;
|
|
7563
7601
|
maxCachePoints?: number | undefined;
|
|
7564
7602
|
cachableFields?: string[] | undefined;
|
|
7603
|
+
deprecated?: boolean | undefined;
|
|
7565
7604
|
tiers?: {
|
|
7566
7605
|
contextWindow: number;
|
|
7567
7606
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -7952,6 +7991,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7952
7991
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
7953
7992
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
7954
7993
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7994
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7955
7995
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
7956
7996
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
7957
7997
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -8040,6 +8080,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8040
8080
|
minTokensPerCachePoint?: number | undefined;
|
|
8041
8081
|
maxCachePoints?: number | undefined;
|
|
8042
8082
|
cachableFields?: string[] | undefined;
|
|
8083
|
+
deprecated?: boolean | undefined;
|
|
8043
8084
|
tiers?: {
|
|
8044
8085
|
contextWindow: number;
|
|
8045
8086
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -8057,6 +8098,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8057
8098
|
ollamaModelId?: string | undefined;
|
|
8058
8099
|
ollamaBaseUrl?: string | undefined;
|
|
8059
8100
|
ollamaApiKey?: string | undefined;
|
|
8101
|
+
ollamaNumCtx?: number | undefined;
|
|
8060
8102
|
vsCodeLmModelSelector?: {
|
|
8061
8103
|
id?: string | undefined;
|
|
8062
8104
|
family?: string | undefined;
|
|
@@ -8269,6 +8311,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8269
8311
|
enhancementApiConfigId?: string | undefined;
|
|
8270
8312
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
8271
8313
|
historyPreviewCollapsed?: boolean | undefined;
|
|
8314
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
8272
8315
|
profileThresholds?: Record<string, number> | undefined;
|
|
8273
8316
|
hasOpenedModeSelector?: boolean | undefined;
|
|
8274
8317
|
lastModeExportPath?: string | undefined;
|
|
@@ -8357,6 +8400,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8357
8400
|
minTokensPerCachePoint?: number | undefined;
|
|
8358
8401
|
maxCachePoints?: number | undefined;
|
|
8359
8402
|
cachableFields?: string[] | undefined;
|
|
8403
|
+
deprecated?: boolean | undefined;
|
|
8360
8404
|
tiers?: {
|
|
8361
8405
|
contextWindow: number;
|
|
8362
8406
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -8374,6 +8418,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8374
8418
|
ollamaModelId?: string | undefined;
|
|
8375
8419
|
ollamaBaseUrl?: string | undefined;
|
|
8376
8420
|
ollamaApiKey?: string | undefined;
|
|
8421
|
+
ollamaNumCtx?: number | undefined;
|
|
8377
8422
|
vsCodeLmModelSelector?: {
|
|
8378
8423
|
id?: string | undefined;
|
|
8379
8424
|
family?: string | undefined;
|
|
@@ -8586,6 +8631,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8586
8631
|
enhancementApiConfigId?: string | undefined;
|
|
8587
8632
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
8588
8633
|
historyPreviewCollapsed?: boolean | undefined;
|
|
8634
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
8589
8635
|
profileThresholds?: Record<string, number> | undefined;
|
|
8590
8636
|
hasOpenedModeSelector?: boolean | undefined;
|
|
8591
8637
|
lastModeExportPath?: string | undefined;
|
|
@@ -8753,6 +8799,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8753
8799
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
8754
8800
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8755
8801
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
8802
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
8756
8803
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8757
8804
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
8758
8805
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8780,6 +8827,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8780
8827
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
8781
8828
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
8782
8829
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8830
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
8783
8831
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8784
8832
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
8785
8833
|
contextWindow: z.ZodNumber;
|
|
@@ -8824,6 +8872,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8824
8872
|
minTokensPerCachePoint?: number | undefined;
|
|
8825
8873
|
maxCachePoints?: number | undefined;
|
|
8826
8874
|
cachableFields?: string[] | undefined;
|
|
8875
|
+
deprecated?: boolean | undefined;
|
|
8827
8876
|
tiers?: {
|
|
8828
8877
|
contextWindow: number;
|
|
8829
8878
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -8854,6 +8903,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8854
8903
|
minTokensPerCachePoint?: number | undefined;
|
|
8855
8904
|
maxCachePoints?: number | undefined;
|
|
8856
8905
|
cachableFields?: string[] | undefined;
|
|
8906
|
+
deprecated?: boolean | undefined;
|
|
8857
8907
|
tiers?: {
|
|
8858
8908
|
contextWindow: number;
|
|
8859
8909
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -9244,6 +9294,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9244
9294
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
9245
9295
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
9246
9296
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
9297
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
9247
9298
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9248
9299
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
9249
9300
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -9332,6 +9383,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9332
9383
|
minTokensPerCachePoint?: number | undefined;
|
|
9333
9384
|
maxCachePoints?: number | undefined;
|
|
9334
9385
|
cachableFields?: string[] | undefined;
|
|
9386
|
+
deprecated?: boolean | undefined;
|
|
9335
9387
|
tiers?: {
|
|
9336
9388
|
contextWindow: number;
|
|
9337
9389
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -9349,6 +9401,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9349
9401
|
ollamaModelId?: string | undefined;
|
|
9350
9402
|
ollamaBaseUrl?: string | undefined;
|
|
9351
9403
|
ollamaApiKey?: string | undefined;
|
|
9404
|
+
ollamaNumCtx?: number | undefined;
|
|
9352
9405
|
vsCodeLmModelSelector?: {
|
|
9353
9406
|
id?: string | undefined;
|
|
9354
9407
|
family?: string | undefined;
|
|
@@ -9561,6 +9614,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9561
9614
|
enhancementApiConfigId?: string | undefined;
|
|
9562
9615
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
9563
9616
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9617
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
9564
9618
|
profileThresholds?: Record<string, number> | undefined;
|
|
9565
9619
|
hasOpenedModeSelector?: boolean | undefined;
|
|
9566
9620
|
lastModeExportPath?: string | undefined;
|
|
@@ -9649,6 +9703,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9649
9703
|
minTokensPerCachePoint?: number | undefined;
|
|
9650
9704
|
maxCachePoints?: number | undefined;
|
|
9651
9705
|
cachableFields?: string[] | undefined;
|
|
9706
|
+
deprecated?: boolean | undefined;
|
|
9652
9707
|
tiers?: {
|
|
9653
9708
|
contextWindow: number;
|
|
9654
9709
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -9666,6 +9721,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9666
9721
|
ollamaModelId?: string | undefined;
|
|
9667
9722
|
ollamaBaseUrl?: string | undefined;
|
|
9668
9723
|
ollamaApiKey?: string | undefined;
|
|
9724
|
+
ollamaNumCtx?: number | undefined;
|
|
9669
9725
|
vsCodeLmModelSelector?: {
|
|
9670
9726
|
id?: string | undefined;
|
|
9671
9727
|
family?: string | undefined;
|
|
@@ -9878,6 +9934,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9878
9934
|
enhancementApiConfigId?: string | undefined;
|
|
9879
9935
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
9880
9936
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9937
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
9881
9938
|
profileThresholds?: Record<string, number> | undefined;
|
|
9882
9939
|
hasOpenedModeSelector?: boolean | undefined;
|
|
9883
9940
|
lastModeExportPath?: string | undefined;
|
|
@@ -9972,6 +10029,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9972
10029
|
minTokensPerCachePoint?: number | undefined;
|
|
9973
10030
|
maxCachePoints?: number | undefined;
|
|
9974
10031
|
cachableFields?: string[] | undefined;
|
|
10032
|
+
deprecated?: boolean | undefined;
|
|
9975
10033
|
tiers?: {
|
|
9976
10034
|
contextWindow: number;
|
|
9977
10035
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -9989,6 +10047,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9989
10047
|
ollamaModelId?: string | undefined;
|
|
9990
10048
|
ollamaBaseUrl?: string | undefined;
|
|
9991
10049
|
ollamaApiKey?: string | undefined;
|
|
10050
|
+
ollamaNumCtx?: number | undefined;
|
|
9992
10051
|
vsCodeLmModelSelector?: {
|
|
9993
10052
|
id?: string | undefined;
|
|
9994
10053
|
family?: string | undefined;
|
|
@@ -10201,6 +10260,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10201
10260
|
enhancementApiConfigId?: string | undefined;
|
|
10202
10261
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
10203
10262
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10263
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
10204
10264
|
profileThresholds?: Record<string, number> | undefined;
|
|
10205
10265
|
hasOpenedModeSelector?: boolean | undefined;
|
|
10206
10266
|
lastModeExportPath?: string | undefined;
|
|
@@ -10294,6 +10354,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10294
10354
|
minTokensPerCachePoint?: number | undefined;
|
|
10295
10355
|
maxCachePoints?: number | undefined;
|
|
10296
10356
|
cachableFields?: string[] | undefined;
|
|
10357
|
+
deprecated?: boolean | undefined;
|
|
10297
10358
|
tiers?: {
|
|
10298
10359
|
contextWindow: number;
|
|
10299
10360
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -10311,6 +10372,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10311
10372
|
ollamaModelId?: string | undefined;
|
|
10312
10373
|
ollamaBaseUrl?: string | undefined;
|
|
10313
10374
|
ollamaApiKey?: string | undefined;
|
|
10375
|
+
ollamaNumCtx?: number | undefined;
|
|
10314
10376
|
vsCodeLmModelSelector?: {
|
|
10315
10377
|
id?: string | undefined;
|
|
10316
10378
|
family?: string | undefined;
|
|
@@ -10523,6 +10585,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10523
10585
|
enhancementApiConfigId?: string | undefined;
|
|
10524
10586
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
10525
10587
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10588
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
10526
10589
|
profileThresholds?: Record<string, number> | undefined;
|
|
10527
10590
|
hasOpenedModeSelector?: boolean | undefined;
|
|
10528
10591
|
lastModeExportPath?: string | undefined;
|
|
@@ -10619,6 +10682,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10619
10682
|
minTokensPerCachePoint?: number | undefined;
|
|
10620
10683
|
maxCachePoints?: number | undefined;
|
|
10621
10684
|
cachableFields?: string[] | undefined;
|
|
10685
|
+
deprecated?: boolean | undefined;
|
|
10622
10686
|
tiers?: {
|
|
10623
10687
|
contextWindow: number;
|
|
10624
10688
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -10636,6 +10700,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10636
10700
|
ollamaModelId?: string | undefined;
|
|
10637
10701
|
ollamaBaseUrl?: string | undefined;
|
|
10638
10702
|
ollamaApiKey?: string | undefined;
|
|
10703
|
+
ollamaNumCtx?: number | undefined;
|
|
10639
10704
|
vsCodeLmModelSelector?: {
|
|
10640
10705
|
id?: string | undefined;
|
|
10641
10706
|
family?: string | undefined;
|
|
@@ -10848,6 +10913,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10848
10913
|
enhancementApiConfigId?: string | undefined;
|
|
10849
10914
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
10850
10915
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10916
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
10851
10917
|
profileThresholds?: Record<string, number> | undefined;
|
|
10852
10918
|
hasOpenedModeSelector?: boolean | undefined;
|
|
10853
10919
|
lastModeExportPath?: string | undefined;
|
|
@@ -10944,6 +11010,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10944
11010
|
minTokensPerCachePoint?: number | undefined;
|
|
10945
11011
|
maxCachePoints?: number | undefined;
|
|
10946
11012
|
cachableFields?: string[] | undefined;
|
|
11013
|
+
deprecated?: boolean | undefined;
|
|
10947
11014
|
tiers?: {
|
|
10948
11015
|
contextWindow: number;
|
|
10949
11016
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -10961,6 +11028,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10961
11028
|
ollamaModelId?: string | undefined;
|
|
10962
11029
|
ollamaBaseUrl?: string | undefined;
|
|
10963
11030
|
ollamaApiKey?: string | undefined;
|
|
11031
|
+
ollamaNumCtx?: number | undefined;
|
|
10964
11032
|
vsCodeLmModelSelector?: {
|
|
10965
11033
|
id?: string | undefined;
|
|
10966
11034
|
family?: string | undefined;
|
|
@@ -11173,6 +11241,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11173
11241
|
enhancementApiConfigId?: string | undefined;
|
|
11174
11242
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
11175
11243
|
historyPreviewCollapsed?: boolean | undefined;
|
|
11244
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
11176
11245
|
profileThresholds?: Record<string, number> | undefined;
|
|
11177
11246
|
hasOpenedModeSelector?: boolean | undefined;
|
|
11178
11247
|
lastModeExportPath?: string | undefined;
|
|
@@ -11341,6 +11410,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11341
11410
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
11342
11411
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11343
11412
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
11413
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
11344
11414
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11345
11415
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
11346
11416
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11368,6 +11438,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11368
11438
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
11369
11439
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
11370
11440
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11441
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
11371
11442
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11372
11443
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
11373
11444
|
contextWindow: z.ZodNumber;
|
|
@@ -11412,6 +11483,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11412
11483
|
minTokensPerCachePoint?: number | undefined;
|
|
11413
11484
|
maxCachePoints?: number | undefined;
|
|
11414
11485
|
cachableFields?: string[] | undefined;
|
|
11486
|
+
deprecated?: boolean | undefined;
|
|
11415
11487
|
tiers?: {
|
|
11416
11488
|
contextWindow: number;
|
|
11417
11489
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -11442,6 +11514,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11442
11514
|
minTokensPerCachePoint?: number | undefined;
|
|
11443
11515
|
maxCachePoints?: number | undefined;
|
|
11444
11516
|
cachableFields?: string[] | undefined;
|
|
11517
|
+
deprecated?: boolean | undefined;
|
|
11445
11518
|
tiers?: {
|
|
11446
11519
|
contextWindow: number;
|
|
11447
11520
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -11832,6 +11905,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11832
11905
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
11833
11906
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
11834
11907
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
11908
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
11835
11909
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
11836
11910
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
11837
11911
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -11920,6 +11994,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11920
11994
|
minTokensPerCachePoint?: number | undefined;
|
|
11921
11995
|
maxCachePoints?: number | undefined;
|
|
11922
11996
|
cachableFields?: string[] | undefined;
|
|
11997
|
+
deprecated?: boolean | undefined;
|
|
11923
11998
|
tiers?: {
|
|
11924
11999
|
contextWindow: number;
|
|
11925
12000
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -11937,6 +12012,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11937
12012
|
ollamaModelId?: string | undefined;
|
|
11938
12013
|
ollamaBaseUrl?: string | undefined;
|
|
11939
12014
|
ollamaApiKey?: string | undefined;
|
|
12015
|
+
ollamaNumCtx?: number | undefined;
|
|
11940
12016
|
vsCodeLmModelSelector?: {
|
|
11941
12017
|
id?: string | undefined;
|
|
11942
12018
|
family?: string | undefined;
|
|
@@ -12149,6 +12225,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12149
12225
|
enhancementApiConfigId?: string | undefined;
|
|
12150
12226
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
12151
12227
|
historyPreviewCollapsed?: boolean | undefined;
|
|
12228
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
12152
12229
|
profileThresholds?: Record<string, number> | undefined;
|
|
12153
12230
|
hasOpenedModeSelector?: boolean | undefined;
|
|
12154
12231
|
lastModeExportPath?: string | undefined;
|
|
@@ -12237,6 +12314,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12237
12314
|
minTokensPerCachePoint?: number | undefined;
|
|
12238
12315
|
maxCachePoints?: number | undefined;
|
|
12239
12316
|
cachableFields?: string[] | undefined;
|
|
12317
|
+
deprecated?: boolean | undefined;
|
|
12240
12318
|
tiers?: {
|
|
12241
12319
|
contextWindow: number;
|
|
12242
12320
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -12254,6 +12332,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12254
12332
|
ollamaModelId?: string | undefined;
|
|
12255
12333
|
ollamaBaseUrl?: string | undefined;
|
|
12256
12334
|
ollamaApiKey?: string | undefined;
|
|
12335
|
+
ollamaNumCtx?: number | undefined;
|
|
12257
12336
|
vsCodeLmModelSelector?: {
|
|
12258
12337
|
id?: string | undefined;
|
|
12259
12338
|
family?: string | undefined;
|
|
@@ -12466,6 +12545,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12466
12545
|
enhancementApiConfigId?: string | undefined;
|
|
12467
12546
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
12468
12547
|
historyPreviewCollapsed?: boolean | undefined;
|
|
12548
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
12469
12549
|
profileThresholds?: Record<string, number> | undefined;
|
|
12470
12550
|
hasOpenedModeSelector?: boolean | undefined;
|
|
12471
12551
|
lastModeExportPath?: string | undefined;
|
|
@@ -12560,6 +12640,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12560
12640
|
minTokensPerCachePoint?: number | undefined;
|
|
12561
12641
|
maxCachePoints?: number | undefined;
|
|
12562
12642
|
cachableFields?: string[] | undefined;
|
|
12643
|
+
deprecated?: boolean | undefined;
|
|
12563
12644
|
tiers?: {
|
|
12564
12645
|
contextWindow: number;
|
|
12565
12646
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -12577,6 +12658,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12577
12658
|
ollamaModelId?: string | undefined;
|
|
12578
12659
|
ollamaBaseUrl?: string | undefined;
|
|
12579
12660
|
ollamaApiKey?: string | undefined;
|
|
12661
|
+
ollamaNumCtx?: number | undefined;
|
|
12580
12662
|
vsCodeLmModelSelector?: {
|
|
12581
12663
|
id?: string | undefined;
|
|
12582
12664
|
family?: string | undefined;
|
|
@@ -12789,6 +12871,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12789
12871
|
enhancementApiConfigId?: string | undefined;
|
|
12790
12872
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
12791
12873
|
historyPreviewCollapsed?: boolean | undefined;
|
|
12874
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
12792
12875
|
profileThresholds?: Record<string, number> | undefined;
|
|
12793
12876
|
hasOpenedModeSelector?: boolean | undefined;
|
|
12794
12877
|
lastModeExportPath?: string | undefined;
|
|
@@ -12882,6 +12965,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12882
12965
|
minTokensPerCachePoint?: number | undefined;
|
|
12883
12966
|
maxCachePoints?: number | undefined;
|
|
12884
12967
|
cachableFields?: string[] | undefined;
|
|
12968
|
+
deprecated?: boolean | undefined;
|
|
12885
12969
|
tiers?: {
|
|
12886
12970
|
contextWindow: number;
|
|
12887
12971
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -12899,6 +12983,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12899
12983
|
ollamaModelId?: string | undefined;
|
|
12900
12984
|
ollamaBaseUrl?: string | undefined;
|
|
12901
12985
|
ollamaApiKey?: string | undefined;
|
|
12986
|
+
ollamaNumCtx?: number | undefined;
|
|
12902
12987
|
vsCodeLmModelSelector?: {
|
|
12903
12988
|
id?: string | undefined;
|
|
12904
12989
|
family?: string | undefined;
|
|
@@ -13111,6 +13196,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13111
13196
|
enhancementApiConfigId?: string | undefined;
|
|
13112
13197
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
13113
13198
|
historyPreviewCollapsed?: boolean | undefined;
|
|
13199
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
13114
13200
|
profileThresholds?: Record<string, number> | undefined;
|
|
13115
13201
|
hasOpenedModeSelector?: boolean | undefined;
|
|
13116
13202
|
lastModeExportPath?: string | undefined;
|
|
@@ -13207,6 +13293,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13207
13293
|
minTokensPerCachePoint?: number | undefined;
|
|
13208
13294
|
maxCachePoints?: number | undefined;
|
|
13209
13295
|
cachableFields?: string[] | undefined;
|
|
13296
|
+
deprecated?: boolean | undefined;
|
|
13210
13297
|
tiers?: {
|
|
13211
13298
|
contextWindow: number;
|
|
13212
13299
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -13224,6 +13311,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13224
13311
|
ollamaModelId?: string | undefined;
|
|
13225
13312
|
ollamaBaseUrl?: string | undefined;
|
|
13226
13313
|
ollamaApiKey?: string | undefined;
|
|
13314
|
+
ollamaNumCtx?: number | undefined;
|
|
13227
13315
|
vsCodeLmModelSelector?: {
|
|
13228
13316
|
id?: string | undefined;
|
|
13229
13317
|
family?: string | undefined;
|
|
@@ -13436,6 +13524,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13436
13524
|
enhancementApiConfigId?: string | undefined;
|
|
13437
13525
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
13438
13526
|
historyPreviewCollapsed?: boolean | undefined;
|
|
13527
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
13439
13528
|
profileThresholds?: Record<string, number> | undefined;
|
|
13440
13529
|
hasOpenedModeSelector?: boolean | undefined;
|
|
13441
13530
|
lastModeExportPath?: string | undefined;
|
|
@@ -13532,6 +13621,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13532
13621
|
minTokensPerCachePoint?: number | undefined;
|
|
13533
13622
|
maxCachePoints?: number | undefined;
|
|
13534
13623
|
cachableFields?: string[] | undefined;
|
|
13624
|
+
deprecated?: boolean | undefined;
|
|
13535
13625
|
tiers?: {
|
|
13536
13626
|
contextWindow: number;
|
|
13537
13627
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -13549,6 +13639,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13549
13639
|
ollamaModelId?: string | undefined;
|
|
13550
13640
|
ollamaBaseUrl?: string | undefined;
|
|
13551
13641
|
ollamaApiKey?: string | undefined;
|
|
13642
|
+
ollamaNumCtx?: number | undefined;
|
|
13552
13643
|
vsCodeLmModelSelector?: {
|
|
13553
13644
|
id?: string | undefined;
|
|
13554
13645
|
family?: string | undefined;
|
|
@@ -13761,6 +13852,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13761
13852
|
enhancementApiConfigId?: string | undefined;
|
|
13762
13853
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
13763
13854
|
historyPreviewCollapsed?: boolean | undefined;
|
|
13855
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
13764
13856
|
profileThresholds?: Record<string, number> | undefined;
|
|
13765
13857
|
hasOpenedModeSelector?: boolean | undefined;
|
|
13766
13858
|
lastModeExportPath?: string | undefined;
|
|
@@ -13888,6 +13980,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13888
13980
|
minTokensPerCachePoint?: number | undefined;
|
|
13889
13981
|
maxCachePoints?: number | undefined;
|
|
13890
13982
|
cachableFields?: string[] | undefined;
|
|
13983
|
+
deprecated?: boolean | undefined;
|
|
13891
13984
|
tiers?: {
|
|
13892
13985
|
contextWindow: number;
|
|
13893
13986
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -13905,6 +13998,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13905
13998
|
ollamaModelId?: string | undefined;
|
|
13906
13999
|
ollamaBaseUrl?: string | undefined;
|
|
13907
14000
|
ollamaApiKey?: string | undefined;
|
|
14001
|
+
ollamaNumCtx?: number | undefined;
|
|
13908
14002
|
vsCodeLmModelSelector?: {
|
|
13909
14003
|
id?: string | undefined;
|
|
13910
14004
|
family?: string | undefined;
|
|
@@ -14117,6 +14211,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14117
14211
|
enhancementApiConfigId?: string | undefined;
|
|
14118
14212
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
14119
14213
|
historyPreviewCollapsed?: boolean | undefined;
|
|
14214
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
14120
14215
|
profileThresholds?: Record<string, number> | undefined;
|
|
14121
14216
|
hasOpenedModeSelector?: boolean | undefined;
|
|
14122
14217
|
lastModeExportPath?: string | undefined;
|
|
@@ -14227,6 +14322,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14227
14322
|
minTokensPerCachePoint?: number | undefined;
|
|
14228
14323
|
maxCachePoints?: number | undefined;
|
|
14229
14324
|
cachableFields?: string[] | undefined;
|
|
14325
|
+
deprecated?: boolean | undefined;
|
|
14230
14326
|
tiers?: {
|
|
14231
14327
|
contextWindow: number;
|
|
14232
14328
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -14244,6 +14340,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14244
14340
|
ollamaModelId?: string | undefined;
|
|
14245
14341
|
ollamaBaseUrl?: string | undefined;
|
|
14246
14342
|
ollamaApiKey?: string | undefined;
|
|
14343
|
+
ollamaNumCtx?: number | undefined;
|
|
14247
14344
|
vsCodeLmModelSelector?: {
|
|
14248
14345
|
id?: string | undefined;
|
|
14249
14346
|
family?: string | undefined;
|
|
@@ -14456,6 +14553,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14456
14553
|
enhancementApiConfigId?: string | undefined;
|
|
14457
14554
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
14458
14555
|
historyPreviewCollapsed?: boolean | undefined;
|
|
14556
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
14459
14557
|
profileThresholds?: Record<string, number> | undefined;
|
|
14460
14558
|
hasOpenedModeSelector?: boolean | undefined;
|
|
14461
14559
|
lastModeExportPath?: string | undefined;
|
|
@@ -15566,7 +15664,7 @@ declare function isResumableAsk(ask: ClineAsk): ask is ResumableAsk;
|
|
|
15566
15664
|
*
|
|
15567
15665
|
* Asks that put the task into an "user interaction required" state.
|
|
15568
15666
|
*/
|
|
15569
|
-
declare const interactiveAsks: readonly ["command", "tool", "browser_action_launch", "use_mcp_server"];
|
|
15667
|
+
declare const interactiveAsks: readonly ["followup", "command", "tool", "browser_action_launch", "use_mcp_server"];
|
|
15570
15668
|
type InteractiveAsk = (typeof interactiveAsks)[number];
|
|
15571
15669
|
declare function isInteractiveAsk(ask: ClineAsk): ask is InteractiveAsk;
|
|
15572
15670
|
/**
|
|
@@ -15893,11 +15991,15 @@ declare enum TelemetryEventName {
|
|
|
15893
15991
|
ACCOUNT_CONNECT_SUCCESS = "Account Connect Success",
|
|
15894
15992
|
ACCOUNT_LOGOUT_CLICKED = "Account Logout Clicked",
|
|
15895
15993
|
ACCOUNT_LOGOUT_SUCCESS = "Account Logout Success",
|
|
15994
|
+
FEATURED_PROVIDER_CLICKED = "Featured Provider Clicked",
|
|
15995
|
+
UPSELL_DISMISSED = "Upsell Dismissed",
|
|
15996
|
+
UPSELL_CLICKED = "Upsell Clicked",
|
|
15896
15997
|
SCHEMA_VALIDATION_ERROR = "Schema Validation Error",
|
|
15897
15998
|
DIFF_APPLICATION_ERROR = "Diff Application Error",
|
|
15898
15999
|
SHELL_INTEGRATION_ERROR = "Shell Integration Error",
|
|
15899
16000
|
CONSECUTIVE_MISTAKE_ERROR = "Consecutive Mistake Error",
|
|
15900
|
-
CODE_INDEX_ERROR = "Code Index Error"
|
|
16001
|
+
CODE_INDEX_ERROR = "Code Index Error",
|
|
16002
|
+
TELEMETRY_SETTINGS_CHANGED = "Telemetry Settings Changed"
|
|
15901
16003
|
}
|
|
15902
16004
|
/**
|
|
15903
16005
|
* TelemetryProperties
|
|
@@ -16133,7 +16235,7 @@ type TelemetryEvent = {
|
|
|
16133
16235
|
* RooCodeTelemetryEvent
|
|
16134
16236
|
*/
|
|
16135
16237
|
declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
16136
|
-
type: z.ZodEnum<[TelemetryEventName.TASK_CREATED, TelemetryEventName.TASK_RESTARTED, TelemetryEventName.TASK_COMPLETED, TelemetryEventName.TASK_CONVERSATION_MESSAGE, TelemetryEventName.MODE_SWITCH, TelemetryEventName.MODE_SELECTOR_OPENED, TelemetryEventName.TOOL_USED, TelemetryEventName.CHECKPOINT_CREATED, TelemetryEventName.CHECKPOINT_RESTORED, TelemetryEventName.CHECKPOINT_DIFFED, TelemetryEventName.CODE_ACTION_USED, TelemetryEventName.PROMPT_ENHANCED, TelemetryEventName.TITLE_BUTTON_CLICKED, TelemetryEventName.AUTHENTICATION_INITIATED, TelemetryEventName.MARKETPLACE_ITEM_INSTALLED, TelemetryEventName.MARKETPLACE_ITEM_REMOVED, TelemetryEventName.MARKETPLACE_TAB_VIEWED, TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED, TelemetryEventName.SHARE_BUTTON_CLICKED, TelemetryEventName.SHARE_ORGANIZATION_CLICKED, TelemetryEventName.SHARE_PUBLIC_CLICKED, TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED, TelemetryEventName.ACCOUNT_CONNECT_CLICKED, TelemetryEventName.ACCOUNT_CONNECT_SUCCESS, TelemetryEventName.ACCOUNT_LOGOUT_CLICKED, TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS, TelemetryEventName.SCHEMA_VALIDATION_ERROR, TelemetryEventName.DIFF_APPLICATION_ERROR, TelemetryEventName.SHELL_INTEGRATION_ERROR, TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR, TelemetryEventName.CODE_INDEX_ERROR, TelemetryEventName.CONTEXT_CONDENSED, TelemetryEventName.SLIDING_WINDOW_TRUNCATION, TelemetryEventName.TAB_SHOWN, TelemetryEventName.MODE_SETTINGS_CHANGED, TelemetryEventName.CUSTOM_MODE_CREATED]>;
|
|
16238
|
+
type: z.ZodEnum<[TelemetryEventName.TASK_CREATED, TelemetryEventName.TASK_RESTARTED, TelemetryEventName.TASK_COMPLETED, TelemetryEventName.TASK_CONVERSATION_MESSAGE, TelemetryEventName.MODE_SWITCH, TelemetryEventName.MODE_SELECTOR_OPENED, TelemetryEventName.TOOL_USED, TelemetryEventName.CHECKPOINT_CREATED, TelemetryEventName.CHECKPOINT_RESTORED, TelemetryEventName.CHECKPOINT_DIFFED, TelemetryEventName.CODE_ACTION_USED, TelemetryEventName.PROMPT_ENHANCED, TelemetryEventName.TITLE_BUTTON_CLICKED, TelemetryEventName.AUTHENTICATION_INITIATED, TelemetryEventName.MARKETPLACE_ITEM_INSTALLED, TelemetryEventName.MARKETPLACE_ITEM_REMOVED, TelemetryEventName.MARKETPLACE_TAB_VIEWED, TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED, TelemetryEventName.SHARE_BUTTON_CLICKED, TelemetryEventName.SHARE_ORGANIZATION_CLICKED, TelemetryEventName.SHARE_PUBLIC_CLICKED, TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED, TelemetryEventName.ACCOUNT_CONNECT_CLICKED, TelemetryEventName.ACCOUNT_CONNECT_SUCCESS, TelemetryEventName.ACCOUNT_LOGOUT_CLICKED, TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS, TelemetryEventName.FEATURED_PROVIDER_CLICKED, TelemetryEventName.UPSELL_DISMISSED, TelemetryEventName.UPSELL_CLICKED, TelemetryEventName.SCHEMA_VALIDATION_ERROR, TelemetryEventName.DIFF_APPLICATION_ERROR, TelemetryEventName.SHELL_INTEGRATION_ERROR, TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR, TelemetryEventName.CODE_INDEX_ERROR, TelemetryEventName.CONTEXT_CONDENSED, TelemetryEventName.SLIDING_WINDOW_TRUNCATION, TelemetryEventName.TAB_SHOWN, TelemetryEventName.MODE_SETTINGS_CHANGED, TelemetryEventName.CUSTOM_MODE_CREATED]>;
|
|
16137
16239
|
properties: z.ZodObject<{
|
|
16138
16240
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16139
16241
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
@@ -16218,7 +16320,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16218
16320
|
defaultBranch?: string | undefined;
|
|
16219
16321
|
}>;
|
|
16220
16322
|
}, "strip", z.ZodTypeAny, {
|
|
16221
|
-
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.MODE_SELECTOR_OPENED | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.TAB_SHOWN | TelemetryEventName.MODE_SETTINGS_CHANGED | TelemetryEventName.CUSTOM_MODE_CREATED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.MARKETPLACE_TAB_VIEWED | TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED | TelemetryEventName.SHARE_BUTTON_CLICKED | TelemetryEventName.SHARE_ORGANIZATION_CLICKED | TelemetryEventName.SHARE_PUBLIC_CLICKED | TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_SUCCESS | TelemetryEventName.ACCOUNT_LOGOUT_CLICKED | TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR | TelemetryEventName.CODE_INDEX_ERROR;
|
|
16323
|
+
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.MODE_SELECTOR_OPENED | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.TAB_SHOWN | TelemetryEventName.MODE_SETTINGS_CHANGED | TelemetryEventName.CUSTOM_MODE_CREATED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.MARKETPLACE_TAB_VIEWED | TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED | TelemetryEventName.SHARE_BUTTON_CLICKED | TelemetryEventName.SHARE_ORGANIZATION_CLICKED | TelemetryEventName.SHARE_PUBLIC_CLICKED | TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_SUCCESS | TelemetryEventName.ACCOUNT_LOGOUT_CLICKED | TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS | TelemetryEventName.FEATURED_PROVIDER_CLICKED | TelemetryEventName.UPSELL_DISMISSED | TelemetryEventName.UPSELL_CLICKED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR | TelemetryEventName.CODE_INDEX_ERROR;
|
|
16222
16324
|
properties: {
|
|
16223
16325
|
mode: string;
|
|
16224
16326
|
appName: string;
|
|
@@ -16245,7 +16347,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16245
16347
|
defaultBranch?: string | undefined;
|
|
16246
16348
|
};
|
|
16247
16349
|
}, {
|
|
16248
|
-
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.MODE_SELECTOR_OPENED | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.TAB_SHOWN | TelemetryEventName.MODE_SETTINGS_CHANGED | TelemetryEventName.CUSTOM_MODE_CREATED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.MARKETPLACE_TAB_VIEWED | TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED | TelemetryEventName.SHARE_BUTTON_CLICKED | TelemetryEventName.SHARE_ORGANIZATION_CLICKED | TelemetryEventName.SHARE_PUBLIC_CLICKED | TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_SUCCESS | TelemetryEventName.ACCOUNT_LOGOUT_CLICKED | TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR | TelemetryEventName.CODE_INDEX_ERROR;
|
|
16350
|
+
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.MODE_SELECTOR_OPENED | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.TAB_SHOWN | TelemetryEventName.MODE_SETTINGS_CHANGED | TelemetryEventName.CUSTOM_MODE_CREATED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.MARKETPLACE_TAB_VIEWED | TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED | TelemetryEventName.SHARE_BUTTON_CLICKED | TelemetryEventName.SHARE_ORGANIZATION_CLICKED | TelemetryEventName.SHARE_PUBLIC_CLICKED | TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_SUCCESS | TelemetryEventName.ACCOUNT_LOGOUT_CLICKED | TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS | TelemetryEventName.FEATURED_PROVIDER_CLICKED | TelemetryEventName.UPSELL_DISMISSED | TelemetryEventName.UPSELL_CLICKED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR | TelemetryEventName.CODE_INDEX_ERROR;
|
|
16249
16351
|
properties: {
|
|
16250
16352
|
mode: string;
|
|
16251
16353
|
appName: string;
|
|
@@ -16271,6 +16373,155 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16271
16373
|
repositoryName?: string | undefined;
|
|
16272
16374
|
defaultBranch?: string | undefined;
|
|
16273
16375
|
};
|
|
16376
|
+
}>, z.ZodObject<{
|
|
16377
|
+
type: z.ZodLiteral<TelemetryEventName.TELEMETRY_SETTINGS_CHANGED>;
|
|
16378
|
+
properties: z.ZodObject<{
|
|
16379
|
+
previousSetting: z.ZodEnum<["unset", "enabled", "disabled"]>;
|
|
16380
|
+
newSetting: z.ZodEnum<["unset", "enabled", "disabled"]>;
|
|
16381
|
+
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16382
|
+
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16383
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16384
|
+
taskId: z.ZodOptional<z.ZodString>;
|
|
16385
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["openrouter", "vercel-ai-gateway", "huggingface", "litellm", "deepinfra", "io-intelligence", "requesty", "unbound", "glama", "ollama", "lmstudio", "vscode-lm", "openai", "fake-ai", "human-relay", "anthropic", "bedrock", "cerebras", "chutes", "claude-code", "doubao", "deepseek", "featherless", "fireworks", "gemini", "gemini-cli", "groq", "mistral", "moonshot", "openai-native", "qwen-code", "roo", "sambanova", "vertex", "xai", "zai"]>>;
|
|
16386
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
16387
|
+
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16388
|
+
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
16389
|
+
todos: z.ZodOptional<z.ZodObject<{
|
|
16390
|
+
total: z.ZodNumber;
|
|
16391
|
+
completed: z.ZodNumber;
|
|
16392
|
+
inProgress: z.ZodNumber;
|
|
16393
|
+
pending: z.ZodNumber;
|
|
16394
|
+
}, "strip", z.ZodTypeAny, {
|
|
16395
|
+
total: number;
|
|
16396
|
+
completed: number;
|
|
16397
|
+
inProgress: number;
|
|
16398
|
+
pending: number;
|
|
16399
|
+
}, {
|
|
16400
|
+
total: number;
|
|
16401
|
+
completed: number;
|
|
16402
|
+
inProgress: number;
|
|
16403
|
+
pending: number;
|
|
16404
|
+
}>>;
|
|
16405
|
+
cloudIsAuthenticated: z.ZodOptional<z.ZodBoolean>;
|
|
16406
|
+
language: z.ZodString;
|
|
16407
|
+
mode: z.ZodString;
|
|
16408
|
+
appName: z.ZodString;
|
|
16409
|
+
appVersion: z.ZodString;
|
|
16410
|
+
vscodeVersion: z.ZodString;
|
|
16411
|
+
platform: z.ZodString;
|
|
16412
|
+
editorName: z.ZodString;
|
|
16413
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
16414
|
+
}, "strip", z.ZodTypeAny, {
|
|
16415
|
+
mode: string;
|
|
16416
|
+
appName: string;
|
|
16417
|
+
appVersion: string;
|
|
16418
|
+
vscodeVersion: string;
|
|
16419
|
+
platform: string;
|
|
16420
|
+
editorName: string;
|
|
16421
|
+
language: string;
|
|
16422
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16423
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16424
|
+
isSubtask?: boolean | undefined;
|
|
16425
|
+
taskId?: string | undefined;
|
|
16426
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
|
|
16427
|
+
modelId?: string | undefined;
|
|
16428
|
+
hostname?: string | undefined;
|
|
16429
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16430
|
+
diffStrategy?: string | undefined;
|
|
16431
|
+
todos?: {
|
|
16432
|
+
total: number;
|
|
16433
|
+
completed: number;
|
|
16434
|
+
inProgress: number;
|
|
16435
|
+
pending: number;
|
|
16436
|
+
} | undefined;
|
|
16437
|
+
repositoryUrl?: string | undefined;
|
|
16438
|
+
repositoryName?: string | undefined;
|
|
16439
|
+
defaultBranch?: string | undefined;
|
|
16440
|
+
}, {
|
|
16441
|
+
mode: string;
|
|
16442
|
+
appName: string;
|
|
16443
|
+
appVersion: string;
|
|
16444
|
+
vscodeVersion: string;
|
|
16445
|
+
platform: string;
|
|
16446
|
+
editorName: string;
|
|
16447
|
+
language: string;
|
|
16448
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16449
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16450
|
+
isSubtask?: boolean | undefined;
|
|
16451
|
+
taskId?: string | undefined;
|
|
16452
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
|
|
16453
|
+
modelId?: string | undefined;
|
|
16454
|
+
hostname?: string | undefined;
|
|
16455
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16456
|
+
diffStrategy?: string | undefined;
|
|
16457
|
+
todos?: {
|
|
16458
|
+
total: number;
|
|
16459
|
+
completed: number;
|
|
16460
|
+
inProgress: number;
|
|
16461
|
+
pending: number;
|
|
16462
|
+
} | undefined;
|
|
16463
|
+
repositoryUrl?: string | undefined;
|
|
16464
|
+
repositoryName?: string | undefined;
|
|
16465
|
+
defaultBranch?: string | undefined;
|
|
16466
|
+
}>;
|
|
16467
|
+
}, "strip", z.ZodTypeAny, {
|
|
16468
|
+
type: TelemetryEventName.TELEMETRY_SETTINGS_CHANGED;
|
|
16469
|
+
properties: {
|
|
16470
|
+
mode: string;
|
|
16471
|
+
appName: string;
|
|
16472
|
+
appVersion: string;
|
|
16473
|
+
vscodeVersion: string;
|
|
16474
|
+
platform: string;
|
|
16475
|
+
editorName: string;
|
|
16476
|
+
language: string;
|
|
16477
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16478
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16479
|
+
isSubtask?: boolean | undefined;
|
|
16480
|
+
taskId?: string | undefined;
|
|
16481
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
|
|
16482
|
+
modelId?: string | undefined;
|
|
16483
|
+
hostname?: string | undefined;
|
|
16484
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16485
|
+
diffStrategy?: string | undefined;
|
|
16486
|
+
todos?: {
|
|
16487
|
+
total: number;
|
|
16488
|
+
completed: number;
|
|
16489
|
+
inProgress: number;
|
|
16490
|
+
pending: number;
|
|
16491
|
+
} | undefined;
|
|
16492
|
+
repositoryUrl?: string | undefined;
|
|
16493
|
+
repositoryName?: string | undefined;
|
|
16494
|
+
defaultBranch?: string | undefined;
|
|
16495
|
+
};
|
|
16496
|
+
}, {
|
|
16497
|
+
type: TelemetryEventName.TELEMETRY_SETTINGS_CHANGED;
|
|
16498
|
+
properties: {
|
|
16499
|
+
mode: string;
|
|
16500
|
+
appName: string;
|
|
16501
|
+
appVersion: string;
|
|
16502
|
+
vscodeVersion: string;
|
|
16503
|
+
platform: string;
|
|
16504
|
+
editorName: string;
|
|
16505
|
+
language: string;
|
|
16506
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16507
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16508
|
+
isSubtask?: boolean | undefined;
|
|
16509
|
+
taskId?: string | undefined;
|
|
16510
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "glama" | "lmstudio" | "vscode-lm" | "fake-ai" | "human-relay" | "bedrock" | "cerebras" | "chutes" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "openai-native" | "qwen-code" | "roo" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
|
|
16511
|
+
modelId?: string | undefined;
|
|
16512
|
+
hostname?: string | undefined;
|
|
16513
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16514
|
+
diffStrategy?: string | undefined;
|
|
16515
|
+
todos?: {
|
|
16516
|
+
total: number;
|
|
16517
|
+
completed: number;
|
|
16518
|
+
inProgress: number;
|
|
16519
|
+
pending: number;
|
|
16520
|
+
} | undefined;
|
|
16521
|
+
repositoryUrl?: string | undefined;
|
|
16522
|
+
repositoryName?: string | undefined;
|
|
16523
|
+
defaultBranch?: string | undefined;
|
|
16524
|
+
};
|
|
16274
16525
|
}>, z.ZodObject<{
|
|
16275
16526
|
type: z.ZodLiteral<TelemetryEventName.TASK_MESSAGE>;
|
|
16276
16527
|
properties: z.ZodObject<{
|
|
@@ -17479,6 +17730,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17479
17730
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
17480
17731
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
17481
17732
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
17733
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
17482
17734
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
17483
17735
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
17484
17736
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17506,6 +17758,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17506
17758
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
17507
17759
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
17508
17760
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17761
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
17509
17762
|
tiers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
17510
17763
|
name: z.ZodOptional<z.ZodEnum<["default", "flex", "priority"]>>;
|
|
17511
17764
|
contextWindow: z.ZodNumber;
|
|
@@ -17550,6 +17803,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17550
17803
|
minTokensPerCachePoint?: number | undefined;
|
|
17551
17804
|
maxCachePoints?: number | undefined;
|
|
17552
17805
|
cachableFields?: string[] | undefined;
|
|
17806
|
+
deprecated?: boolean | undefined;
|
|
17553
17807
|
tiers?: {
|
|
17554
17808
|
contextWindow: number;
|
|
17555
17809
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -17580,6 +17834,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17580
17834
|
minTokensPerCachePoint?: number | undefined;
|
|
17581
17835
|
maxCachePoints?: number | undefined;
|
|
17582
17836
|
cachableFields?: string[] | undefined;
|
|
17837
|
+
deprecated?: boolean | undefined;
|
|
17583
17838
|
tiers?: {
|
|
17584
17839
|
contextWindow: number;
|
|
17585
17840
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -17714,6 +17969,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17714
17969
|
minTokensPerCachePoint?: number | undefined;
|
|
17715
17970
|
maxCachePoints?: number | undefined;
|
|
17716
17971
|
cachableFields?: string[] | undefined;
|
|
17972
|
+
deprecated?: boolean | undefined;
|
|
17717
17973
|
tiers?: {
|
|
17718
17974
|
contextWindow: number;
|
|
17719
17975
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -17731,6 +17987,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17731
17987
|
ollamaModelId?: string | undefined;
|
|
17732
17988
|
ollamaBaseUrl?: string | undefined;
|
|
17733
17989
|
ollamaApiKey?: string | undefined;
|
|
17990
|
+
ollamaNumCtx?: number | undefined;
|
|
17734
17991
|
vsCodeLmModelSelector?: {
|
|
17735
17992
|
id?: string | undefined;
|
|
17736
17993
|
family?: string | undefined;
|
|
@@ -17871,6 +18128,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17871
18128
|
minTokensPerCachePoint?: number | undefined;
|
|
17872
18129
|
maxCachePoints?: number | undefined;
|
|
17873
18130
|
cachableFields?: string[] | undefined;
|
|
18131
|
+
deprecated?: boolean | undefined;
|
|
17874
18132
|
tiers?: {
|
|
17875
18133
|
contextWindow: number;
|
|
17876
18134
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -17888,6 +18146,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17888
18146
|
ollamaModelId?: string | undefined;
|
|
17889
18147
|
ollamaBaseUrl?: string | undefined;
|
|
17890
18148
|
ollamaApiKey?: string | undefined;
|
|
18149
|
+
ollamaNumCtx?: number | undefined;
|
|
17891
18150
|
vsCodeLmModelSelector?: {
|
|
17892
18151
|
id?: string | undefined;
|
|
17893
18152
|
family?: string | undefined;
|
|
@@ -18090,6 +18349,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
18090
18349
|
minTokensPerCachePoint?: number | undefined;
|
|
18091
18350
|
maxCachePoints?: number | undefined;
|
|
18092
18351
|
cachableFields?: string[] | undefined;
|
|
18352
|
+
deprecated?: boolean | undefined;
|
|
18093
18353
|
tiers?: {
|
|
18094
18354
|
contextWindow: number;
|
|
18095
18355
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -18107,6 +18367,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
18107
18367
|
ollamaModelId?: string | undefined;
|
|
18108
18368
|
ollamaBaseUrl?: string | undefined;
|
|
18109
18369
|
ollamaApiKey?: string | undefined;
|
|
18370
|
+
ollamaNumCtx?: number | undefined;
|
|
18110
18371
|
vsCodeLmModelSelector?: {
|
|
18111
18372
|
id?: string | undefined;
|
|
18112
18373
|
family?: string | undefined;
|
|
@@ -18309,6 +18570,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
18309
18570
|
minTokensPerCachePoint?: number | undefined;
|
|
18310
18571
|
maxCachePoints?: number | undefined;
|
|
18311
18572
|
cachableFields?: string[] | undefined;
|
|
18573
|
+
deprecated?: boolean | undefined;
|
|
18312
18574
|
tiers?: {
|
|
18313
18575
|
contextWindow: number;
|
|
18314
18576
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -18326,6 +18588,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
18326
18588
|
ollamaModelId?: string | undefined;
|
|
18327
18589
|
ollamaBaseUrl?: string | undefined;
|
|
18328
18590
|
ollamaApiKey?: string | undefined;
|
|
18591
|
+
ollamaNumCtx?: number | undefined;
|
|
18329
18592
|
vsCodeLmModelSelector?: {
|
|
18330
18593
|
id?: string | undefined;
|
|
18331
18594
|
family?: string | undefined;
|
|
@@ -18484,9 +18747,10 @@ type AuthState = "initializing" | "logged-out" | "active-session" | "attempting-
|
|
|
18484
18747
|
interface AuthService extends EventEmitter$1<AuthServiceEvents> {
|
|
18485
18748
|
initialize(): Promise<void>;
|
|
18486
18749
|
broadcast(): void;
|
|
18487
|
-
login(): Promise<void>;
|
|
18750
|
+
login(landingPageSlug?: string): Promise<void>;
|
|
18488
18751
|
logout(): Promise<void>;
|
|
18489
18752
|
handleCallback(code: string | null, state: string | null, organizationId?: string | null): Promise<void>;
|
|
18753
|
+
switchOrganization(organizationId: string | null): Promise<void>;
|
|
18490
18754
|
getState(): AuthState;
|
|
18491
18755
|
isAuthenticated(): boolean;
|
|
18492
18756
|
hasActiveSession(): boolean;
|
|
@@ -18494,6 +18758,7 @@ interface AuthService extends EventEmitter$1<AuthServiceEvents> {
|
|
|
18494
18758
|
getSessionToken(): string | undefined;
|
|
18495
18759
|
getUserInfo(): CloudUserInfo | null;
|
|
18496
18760
|
getStoredOrganizationId(): string | null;
|
|
18761
|
+
getOrganizationMemberships(): Promise<CloudOrganizationMembership[]>;
|
|
18497
18762
|
}
|
|
18498
18763
|
/**
|
|
18499
18764
|
* AuthServiceEvents
|
|
@@ -39062,6 +39327,81 @@ type LeaveResponse = {
|
|
|
39062
39327
|
taskId?: string;
|
|
39063
39328
|
timestamp?: string;
|
|
39064
39329
|
};
|
|
39330
|
+
/**
|
|
39331
|
+
* UsageStats
|
|
39332
|
+
*/
|
|
39333
|
+
declare const usageStatsSchema: z.ZodObject<{
|
|
39334
|
+
success: z.ZodBoolean;
|
|
39335
|
+
data: z.ZodObject<{
|
|
39336
|
+
dates: z.ZodArray<z.ZodString, "many">;
|
|
39337
|
+
tasks: z.ZodArray<z.ZodNumber, "many">;
|
|
39338
|
+
tokens: z.ZodArray<z.ZodNumber, "many">;
|
|
39339
|
+
costs: z.ZodArray<z.ZodNumber, "many">;
|
|
39340
|
+
totals: z.ZodObject<{
|
|
39341
|
+
tasks: z.ZodNumber;
|
|
39342
|
+
tokens: z.ZodNumber;
|
|
39343
|
+
cost: z.ZodNumber;
|
|
39344
|
+
}, "strip", z.ZodTypeAny, {
|
|
39345
|
+
cost: number;
|
|
39346
|
+
tasks: number;
|
|
39347
|
+
tokens: number;
|
|
39348
|
+
}, {
|
|
39349
|
+
cost: number;
|
|
39350
|
+
tasks: number;
|
|
39351
|
+
tokens: number;
|
|
39352
|
+
}>;
|
|
39353
|
+
}, "strip", z.ZodTypeAny, {
|
|
39354
|
+
dates: string[];
|
|
39355
|
+
tasks: number[];
|
|
39356
|
+
tokens: number[];
|
|
39357
|
+
costs: number[];
|
|
39358
|
+
totals: {
|
|
39359
|
+
cost: number;
|
|
39360
|
+
tasks: number;
|
|
39361
|
+
tokens: number;
|
|
39362
|
+
};
|
|
39363
|
+
}, {
|
|
39364
|
+
dates: string[];
|
|
39365
|
+
tasks: number[];
|
|
39366
|
+
tokens: number[];
|
|
39367
|
+
costs: number[];
|
|
39368
|
+
totals: {
|
|
39369
|
+
cost: number;
|
|
39370
|
+
tasks: number;
|
|
39371
|
+
tokens: number;
|
|
39372
|
+
};
|
|
39373
|
+
}>;
|
|
39374
|
+
period: z.ZodNumber;
|
|
39375
|
+
}, "strip", z.ZodTypeAny, {
|
|
39376
|
+
data: {
|
|
39377
|
+
dates: string[];
|
|
39378
|
+
tasks: number[];
|
|
39379
|
+
tokens: number[];
|
|
39380
|
+
costs: number[];
|
|
39381
|
+
totals: {
|
|
39382
|
+
cost: number;
|
|
39383
|
+
tasks: number;
|
|
39384
|
+
tokens: number;
|
|
39385
|
+
};
|
|
39386
|
+
};
|
|
39387
|
+
success: boolean;
|
|
39388
|
+
period: number;
|
|
39389
|
+
}, {
|
|
39390
|
+
data: {
|
|
39391
|
+
dates: string[];
|
|
39392
|
+
tasks: number[];
|
|
39393
|
+
tokens: number[];
|
|
39394
|
+
costs: number[];
|
|
39395
|
+
totals: {
|
|
39396
|
+
cost: number;
|
|
39397
|
+
tasks: number;
|
|
39398
|
+
tokens: number;
|
|
39399
|
+
};
|
|
39400
|
+
};
|
|
39401
|
+
success: boolean;
|
|
39402
|
+
period: number;
|
|
39403
|
+
}>;
|
|
39404
|
+
type UsageStats = z.infer<typeof usageStatsSchema>;
|
|
39065
39405
|
|
|
39066
39406
|
/**
|
|
39067
39407
|
* Codebase Index Constants
|
|
@@ -40152,6 +40492,7 @@ declare const modelInfoSchema: z.ZodObject<{
|
|
|
40152
40492
|
minTokensPerCachePoint: z.ZodOptional<z.ZodNumber>;
|
|
40153
40493
|
maxCachePoints: z.ZodOptional<z.ZodNumber>;
|
|
40154
40494
|
cachableFields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
40495
|
+
deprecated: z.ZodOptional<z.ZodBoolean>;
|
|
40155
40496
|
/**
|
|
40156
40497
|
* Service tiers with pricing information.
|
|
40157
40498
|
* Each tier can have a name (for OpenAI service tiers) and pricing overrides.
|
|
@@ -40201,6 +40542,7 @@ declare const modelInfoSchema: z.ZodObject<{
|
|
|
40201
40542
|
minTokensPerCachePoint?: number | undefined;
|
|
40202
40543
|
maxCachePoints?: number | undefined;
|
|
40203
40544
|
cachableFields?: string[] | undefined;
|
|
40545
|
+
deprecated?: boolean | undefined;
|
|
40204
40546
|
tiers?: {
|
|
40205
40547
|
contextWindow: number;
|
|
40206
40548
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -40231,6 +40573,7 @@ declare const modelInfoSchema: z.ZodObject<{
|
|
|
40231
40573
|
minTokensPerCachePoint?: number | undefined;
|
|
40232
40574
|
maxCachePoints?: number | undefined;
|
|
40233
40575
|
cachableFields?: string[] | undefined;
|
|
40576
|
+
deprecated?: boolean | undefined;
|
|
40234
40577
|
tiers?: {
|
|
40235
40578
|
contextWindow: number;
|
|
40236
40579
|
name?: "default" | "flex" | "priority" | undefined;
|
|
@@ -40333,7 +40676,7 @@ type TerminalActionPromptType = `TERMINAL_${TerminalActionName}`;
|
|
|
40333
40676
|
/**
|
|
40334
40677
|
* Command
|
|
40335
40678
|
*/
|
|
40336
|
-
declare const commandIds: readonly ["activationCompleted", "plusButtonClicked", "promptsButtonClicked", "mcpButtonClicked", "historyButtonClicked", "marketplaceButtonClicked", "popoutButtonClicked", "cloudButtonClicked", "settingsButtonClicked", "openInNewTab", "showHumanRelayDialog", "registerHumanRelayCallback", "unregisterHumanRelayCallback", "handleHumanRelayResponse", "newTask", "setCustomStoragePath", "importSettings", "focusInput", "acceptInput", "focusPanel"];
|
|
40679
|
+
declare const commandIds: readonly ["activationCompleted", "plusButtonClicked", "promptsButtonClicked", "mcpButtonClicked", "historyButtonClicked", "marketplaceButtonClicked", "popoutButtonClicked", "cloudButtonClicked", "settingsButtonClicked", "openInNewTab", "showHumanRelayDialog", "registerHumanRelayCallback", "unregisterHumanRelayCallback", "handleHumanRelayResponse", "newTask", "setCustomStoragePath", "importSettings", "focusInput", "acceptInput", "focusPanel", "toggleAutoApprove"];
|
|
40337
40680
|
type CommandId = (typeof commandIds)[number];
|
|
40338
40681
|
/**
|
|
40339
40682
|
* Language
|
|
@@ -40346,6 +40689,25 @@ declare const isLanguage: (value: string) => value is Language;
|
|
|
40346
40689
|
type AnthropicModelId = keyof typeof anthropicModels;
|
|
40347
40690
|
declare const anthropicDefaultModelId: AnthropicModelId;
|
|
40348
40691
|
declare const anthropicModels: {
|
|
40692
|
+
readonly "claude-sonnet-4-5": {
|
|
40693
|
+
readonly maxTokens: 64000;
|
|
40694
|
+
readonly contextWindow: 200000;
|
|
40695
|
+
readonly supportsImages: true;
|
|
40696
|
+
readonly supportsComputerUse: true;
|
|
40697
|
+
readonly supportsPromptCache: true;
|
|
40698
|
+
readonly inputPrice: 3;
|
|
40699
|
+
readonly outputPrice: 15;
|
|
40700
|
+
readonly cacheWritesPrice: 3.75;
|
|
40701
|
+
readonly cacheReadsPrice: 0.3;
|
|
40702
|
+
readonly supportsReasoningBudget: true;
|
|
40703
|
+
readonly tiers: [{
|
|
40704
|
+
readonly contextWindow: 1000000;
|
|
40705
|
+
readonly inputPrice: 6;
|
|
40706
|
+
readonly outputPrice: 22.5;
|
|
40707
|
+
readonly cacheWritesPrice: 7.5;
|
|
40708
|
+
readonly cacheReadsPrice: 0.6;
|
|
40709
|
+
}];
|
|
40710
|
+
};
|
|
40349
40711
|
readonly "claude-sonnet-4-20250514": {
|
|
40350
40712
|
readonly maxTokens: 64000;
|
|
40351
40713
|
readonly contextWindow: 200000;
|
|
@@ -40461,6 +40823,21 @@ type BedrockModelId = keyof typeof bedrockModels;
|
|
|
40461
40823
|
declare const bedrockDefaultModelId: BedrockModelId;
|
|
40462
40824
|
declare const bedrockDefaultPromptRouterModelId: BedrockModelId;
|
|
40463
40825
|
declare const bedrockModels: {
|
|
40826
|
+
readonly "anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
40827
|
+
readonly maxTokens: 8192;
|
|
40828
|
+
readonly contextWindow: 200000;
|
|
40829
|
+
readonly supportsImages: true;
|
|
40830
|
+
readonly supportsComputerUse: true;
|
|
40831
|
+
readonly supportsPromptCache: true;
|
|
40832
|
+
readonly supportsReasoningBudget: true;
|
|
40833
|
+
readonly inputPrice: 3;
|
|
40834
|
+
readonly outputPrice: 15;
|
|
40835
|
+
readonly cacheWritesPrice: 3.75;
|
|
40836
|
+
readonly cacheReadsPrice: 0.3;
|
|
40837
|
+
readonly minTokensPerCachePoint: 1024;
|
|
40838
|
+
readonly maxCachePoints: 4;
|
|
40839
|
+
readonly cachableFields: ["system", "messages", "tools"];
|
|
40840
|
+
};
|
|
40464
40841
|
readonly "amazon.nova-pro-v1:0": {
|
|
40465
40842
|
readonly maxTokens: 5000;
|
|
40466
40843
|
readonly contextWindow: 300000;
|
|
@@ -40844,7 +41221,7 @@ declare const BEDROCK_REGIONS: {
|
|
|
40844
41221
|
value: string;
|
|
40845
41222
|
label: string;
|
|
40846
41223
|
}[];
|
|
40847
|
-
declare const
|
|
41224
|
+
declare const BEDROCK_1M_CONTEXT_MODEL_IDS: readonly ["anthropic.claude-sonnet-4-20250514-v1:0", "anthropic.claude-sonnet-4-5-20250929-v1:0"];
|
|
40848
41225
|
|
|
40849
41226
|
type CerebrasModelId = keyof typeof cerebrasModels;
|
|
40850
41227
|
declare const cerebrasDefaultModelId: CerebrasModelId;
|
|
@@ -40915,7 +41292,7 @@ declare const cerebrasModels: {
|
|
|
40915
41292
|
};
|
|
40916
41293
|
};
|
|
40917
41294
|
|
|
40918
|
-
type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "deepseek-ai/DeepSeek-V3.1" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-235B-A22B-Instruct-2507" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera" | "zai-org/GLM-4.5-Air" | "zai-org/GLM-4.5-FP8" | "moonshotai/Kimi-K2-Instruct-75k" | "moonshotai/Kimi-K2-Instruct-0905" | "Qwen/Qwen3-235B-A22B-Thinking-2507" | "Qwen/Qwen3-Next-80B-A3B-Instruct" | "Qwen/Qwen3-Next-80B-A3B-Thinking";
|
|
41295
|
+
type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "deepseek-ai/DeepSeek-V3.1" | "deepseek-ai/DeepSeek-V3.1-Terminus" | "deepseek-ai/DeepSeek-V3.1-turbo" | "deepseek-ai/DeepSeek-V3.2-Exp" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-235B-A22B-Instruct-2507" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera" | "zai-org/GLM-4.5-Air" | "zai-org/GLM-4.5-FP8" | "zai-org/GLM-4.5-turbo" | "zai-org/GLM-4.6-FP8" | "moonshotai/Kimi-K2-Instruct-75k" | "moonshotai/Kimi-K2-Instruct-0905" | "Qwen/Qwen3-235B-A22B-Thinking-2507" | "Qwen/Qwen3-Next-80B-A3B-Instruct" | "Qwen/Qwen3-Next-80B-A3B-Thinking" | "Qwen/Qwen3-VL-235B-A22B-Thinking";
|
|
40919
41296
|
declare const chutesDefaultModelId: ChutesModelId;
|
|
40920
41297
|
declare const chutesModels: {
|
|
40921
41298
|
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
@@ -40954,6 +41331,33 @@ declare const chutesModels: {
|
|
|
40954
41331
|
readonly outputPrice: 0;
|
|
40955
41332
|
readonly description: "DeepSeek V3.1 model.";
|
|
40956
41333
|
};
|
|
41334
|
+
readonly "deepseek-ai/DeepSeek-V3.1-Terminus": {
|
|
41335
|
+
readonly maxTokens: 163840;
|
|
41336
|
+
readonly contextWindow: 163840;
|
|
41337
|
+
readonly supportsImages: false;
|
|
41338
|
+
readonly supportsPromptCache: false;
|
|
41339
|
+
readonly inputPrice: 0.23;
|
|
41340
|
+
readonly outputPrice: 0.9;
|
|
41341
|
+
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.";
|
|
41342
|
+
};
|
|
41343
|
+
readonly "deepseek-ai/DeepSeek-V3.1-turbo": {
|
|
41344
|
+
readonly maxTokens: 32768;
|
|
41345
|
+
readonly contextWindow: 163840;
|
|
41346
|
+
readonly supportsImages: false;
|
|
41347
|
+
readonly supportsPromptCache: false;
|
|
41348
|
+
readonly inputPrice: 1;
|
|
41349
|
+
readonly outputPrice: 3;
|
|
41350
|
+
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.";
|
|
41351
|
+
};
|
|
41352
|
+
readonly "deepseek-ai/DeepSeek-V3.2-Exp": {
|
|
41353
|
+
readonly maxTokens: 163840;
|
|
41354
|
+
readonly contextWindow: 163840;
|
|
41355
|
+
readonly supportsImages: false;
|
|
41356
|
+
readonly supportsPromptCache: false;
|
|
41357
|
+
readonly inputPrice: 0.25;
|
|
41358
|
+
readonly outputPrice: 0.35;
|
|
41359
|
+
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.";
|
|
41360
|
+
};
|
|
40957
41361
|
readonly "unsloth/Llama-3.3-70B-Instruct": {
|
|
40958
41362
|
readonly maxTokens: 32768;
|
|
40959
41363
|
readonly contextWindow: 131072;
|
|
@@ -41152,6 +41556,24 @@ declare const chutesModels: {
|
|
|
41152
41556
|
readonly outputPrice: 0;
|
|
41153
41557
|
readonly description: "GLM-4.5-FP8 model with 128k token context window, optimized for agent-based applications with MoE architecture.";
|
|
41154
41558
|
};
|
|
41559
|
+
readonly "zai-org/GLM-4.5-turbo": {
|
|
41560
|
+
readonly maxTokens: 32768;
|
|
41561
|
+
readonly contextWindow: 131072;
|
|
41562
|
+
readonly supportsImages: false;
|
|
41563
|
+
readonly supportsPromptCache: false;
|
|
41564
|
+
readonly inputPrice: 1;
|
|
41565
|
+
readonly outputPrice: 3;
|
|
41566
|
+
readonly description: "GLM-4.5-turbo model with 128K token context window, optimized for fast inference.";
|
|
41567
|
+
};
|
|
41568
|
+
readonly "zai-org/GLM-4.6-FP8": {
|
|
41569
|
+
readonly maxTokens: 32768;
|
|
41570
|
+
readonly contextWindow: 202752;
|
|
41571
|
+
readonly supportsImages: false;
|
|
41572
|
+
readonly supportsPromptCache: false;
|
|
41573
|
+
readonly inputPrice: 0;
|
|
41574
|
+
readonly outputPrice: 0;
|
|
41575
|
+
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.";
|
|
41576
|
+
};
|
|
41155
41577
|
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
|
|
41156
41578
|
readonly maxTokens: 32768;
|
|
41157
41579
|
readonly contextWindow: 262144;
|
|
@@ -41206,6 +41628,15 @@ declare const chutesModels: {
|
|
|
41206
41628
|
readonly outputPrice: 0;
|
|
41207
41629
|
readonly description: "Reasoning-first model with structured thinking traces for multi-step problems, math proofs, and code synthesis.";
|
|
41208
41630
|
};
|
|
41631
|
+
readonly "Qwen/Qwen3-VL-235B-A22B-Thinking": {
|
|
41632
|
+
readonly maxTokens: 262144;
|
|
41633
|
+
readonly contextWindow: 262144;
|
|
41634
|
+
readonly supportsImages: true;
|
|
41635
|
+
readonly supportsPromptCache: false;
|
|
41636
|
+
readonly inputPrice: 0.16;
|
|
41637
|
+
readonly outputPrice: 0.65;
|
|
41638
|
+
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.";
|
|
41639
|
+
};
|
|
41209
41640
|
};
|
|
41210
41641
|
|
|
41211
41642
|
/**
|
|
@@ -41235,6 +41666,27 @@ declare const CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS = 16000;
|
|
|
41235
41666
|
*/
|
|
41236
41667
|
declare function getClaudeCodeModelId(baseModelId: ClaudeCodeModelId, useVertex?: boolean): string;
|
|
41237
41668
|
declare const claudeCodeModels: {
|
|
41669
|
+
readonly "claude-sonnet-4-5": {
|
|
41670
|
+
readonly supportsImages: false;
|
|
41671
|
+
readonly supportsPromptCache: true;
|
|
41672
|
+
readonly supportsReasoningEffort: false;
|
|
41673
|
+
readonly supportsReasoningBudget: false;
|
|
41674
|
+
readonly requiredReasoningBudget: false;
|
|
41675
|
+
readonly maxTokens: 64000;
|
|
41676
|
+
readonly contextWindow: 200000;
|
|
41677
|
+
readonly supportsComputerUse: true;
|
|
41678
|
+
readonly inputPrice: 3;
|
|
41679
|
+
readonly outputPrice: 15;
|
|
41680
|
+
readonly cacheWritesPrice: 3.75;
|
|
41681
|
+
readonly cacheReadsPrice: 0.3;
|
|
41682
|
+
readonly tiers: [{
|
|
41683
|
+
readonly contextWindow: 1000000;
|
|
41684
|
+
readonly inputPrice: 6;
|
|
41685
|
+
readonly outputPrice: 22.5;
|
|
41686
|
+
readonly cacheWritesPrice: 7.5;
|
|
41687
|
+
readonly cacheReadsPrice: 0.6;
|
|
41688
|
+
}];
|
|
41689
|
+
};
|
|
41238
41690
|
readonly "claude-sonnet-4-20250514": {
|
|
41239
41691
|
readonly supportsImages: false;
|
|
41240
41692
|
readonly supportsPromptCache: true;
|
|
@@ -42212,6 +42664,20 @@ declare const openAiNativeModels: {
|
|
|
42212
42664
|
readonly cacheReadsPrice: 0.0025;
|
|
42213
42665
|
}];
|
|
42214
42666
|
};
|
|
42667
|
+
readonly "gpt-5-codex": {
|
|
42668
|
+
readonly maxTokens: 128000;
|
|
42669
|
+
readonly contextWindow: 400000;
|
|
42670
|
+
readonly supportsImages: true;
|
|
42671
|
+
readonly supportsPromptCache: true;
|
|
42672
|
+
readonly supportsReasoningEffort: true;
|
|
42673
|
+
readonly reasoningEffort: "medium";
|
|
42674
|
+
readonly inputPrice: 1.25;
|
|
42675
|
+
readonly outputPrice: 10;
|
|
42676
|
+
readonly cacheReadsPrice: 0.13;
|
|
42677
|
+
readonly description: "GPT-5-Codex: A version of GPT-5 optimized for agentic coding in Codex";
|
|
42678
|
+
readonly supportsVerbosity: true;
|
|
42679
|
+
readonly supportsTemperature: false;
|
|
42680
|
+
};
|
|
42215
42681
|
readonly "gpt-4.1": {
|
|
42216
42682
|
readonly maxTokens: 32768;
|
|
42217
42683
|
readonly contextWindow: 1047576;
|
|
@@ -42511,7 +42977,7 @@ declare const qwenCodeModels: {
|
|
|
42511
42977
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
42512
42978
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
42513
42979
|
|
|
42514
|
-
type RooModelId = "xai/grok-code-fast-1";
|
|
42980
|
+
type RooModelId = "xai/grok-code-fast-1" | "roo/code-supernova-1-million" | "xai/grok-4-fast" | "deepseek/deepseek-chat-v3.1";
|
|
42515
42981
|
declare const rooDefaultModelId: RooModelId;
|
|
42516
42982
|
declare const rooModels: {
|
|
42517
42983
|
readonly "xai/grok-code-fast-1": {
|
|
@@ -42523,9 +42989,37 @@ declare const rooModels: {
|
|
|
42523
42989
|
readonly outputPrice: 0;
|
|
42524
42990
|
readonly description: "A reasoning model that is blazing fast and excels at agentic coding, accessible for free through Roo Code Cloud for a limited time. (Note: the free prompts and completions are logged by xAI and used to improve the model.)";
|
|
42525
42991
|
};
|
|
42992
|
+
readonly "roo/code-supernova-1-million": {
|
|
42993
|
+
readonly maxTokens: 30000;
|
|
42994
|
+
readonly contextWindow: 1000000;
|
|
42995
|
+
readonly supportsImages: true;
|
|
42996
|
+
readonly supportsPromptCache: true;
|
|
42997
|
+
readonly inputPrice: 0;
|
|
42998
|
+
readonly outputPrice: 0;
|
|
42999
|
+
readonly description: "A versatile agentic coding stealth model with a 1M token context window that supports image inputs, accessible for free through Roo Code Cloud for a limited time. (Note: the free prompts and completions are logged by the model provider and used to improve the model.)";
|
|
43000
|
+
};
|
|
43001
|
+
readonly "xai/grok-4-fast": {
|
|
43002
|
+
readonly maxTokens: 30000;
|
|
43003
|
+
readonly contextWindow: 2000000;
|
|
43004
|
+
readonly supportsImages: false;
|
|
43005
|
+
readonly supportsPromptCache: false;
|
|
43006
|
+
readonly inputPrice: 0;
|
|
43007
|
+
readonly outputPrice: 0;
|
|
43008
|
+
readonly description: "Grok 4 Fast is xAI's latest multimodal model with SOTA cost-efficiency and a 2M token context window. (Note: prompts and completions are logged by xAI and used to improve the model.)";
|
|
43009
|
+
readonly deprecated: true;
|
|
43010
|
+
};
|
|
43011
|
+
readonly "deepseek/deepseek-chat-v3.1": {
|
|
43012
|
+
readonly maxTokens: 16384;
|
|
43013
|
+
readonly contextWindow: 163840;
|
|
43014
|
+
readonly supportsImages: false;
|
|
43015
|
+
readonly supportsPromptCache: false;
|
|
43016
|
+
readonly inputPrice: 0;
|
|
43017
|
+
readonly outputPrice: 0;
|
|
43018
|
+
readonly description: "DeepSeek-V3.1 is a large hybrid reasoning model (671B parameters, 37B active). It extends the DeepSeek-V3 base with a two-phase long-context training process, reaching up to 128K tokens, and uses FP8 microscaling for efficient inference.";
|
|
43019
|
+
};
|
|
42526
43020
|
};
|
|
42527
43021
|
|
|
42528
|
-
type SambaNovaModelId = "Meta-Llama-3.1-8B-Instruct" | "Meta-Llama-3.3-70B-Instruct" | "DeepSeek-R1" | "DeepSeek-V3-0324" | "DeepSeek-R1-Distill-Llama-70B" | "Llama-4-Maverick-17B-128E-Instruct" | "Llama-3.3-Swallow-70B-Instruct-v0.4" | "Qwen3-32B";
|
|
43022
|
+
type SambaNovaModelId = "Meta-Llama-3.1-8B-Instruct" | "Meta-Llama-3.3-70B-Instruct" | "DeepSeek-R1" | "DeepSeek-V3-0324" | "DeepSeek-V3.1" | "DeepSeek-R1-Distill-Llama-70B" | "Llama-4-Maverick-17B-128E-Instruct" | "Llama-3.3-Swallow-70B-Instruct-v0.4" | "Qwen3-32B" | "gpt-oss-120b";
|
|
42529
43023
|
declare const sambaNovaDefaultModelId: SambaNovaModelId;
|
|
42530
43024
|
declare const sambaNovaModels: {
|
|
42531
43025
|
readonly "Meta-Llama-3.1-8B-Instruct": {
|
|
@@ -42565,6 +43059,15 @@ declare const sambaNovaModels: {
|
|
|
42565
43059
|
readonly outputPrice: 4.5;
|
|
42566
43060
|
readonly description: "DeepSeek V3 model with 32K context window.";
|
|
42567
43061
|
};
|
|
43062
|
+
readonly "DeepSeek-V3.1": {
|
|
43063
|
+
readonly maxTokens: 8192;
|
|
43064
|
+
readonly contextWindow: 32768;
|
|
43065
|
+
readonly supportsImages: false;
|
|
43066
|
+
readonly supportsPromptCache: false;
|
|
43067
|
+
readonly inputPrice: 3;
|
|
43068
|
+
readonly outputPrice: 4.5;
|
|
43069
|
+
readonly description: "DeepSeek V3.1 model with 32K context window.";
|
|
43070
|
+
};
|
|
42568
43071
|
readonly "DeepSeek-R1-Distill-Llama-70B": {
|
|
42569
43072
|
readonly maxTokens: 8192;
|
|
42570
43073
|
readonly contextWindow: 131072;
|
|
@@ -42601,6 +43104,15 @@ declare const sambaNovaModels: {
|
|
|
42601
43104
|
readonly outputPrice: 0.8;
|
|
42602
43105
|
readonly description: "Alibaba Qwen 3 32B model with 8K context window.";
|
|
42603
43106
|
};
|
|
43107
|
+
readonly "gpt-oss-120b": {
|
|
43108
|
+
readonly maxTokens: 8192;
|
|
43109
|
+
readonly contextWindow: 131072;
|
|
43110
|
+
readonly supportsImages: false;
|
|
43111
|
+
readonly supportsPromptCache: false;
|
|
43112
|
+
readonly inputPrice: 0.22;
|
|
43113
|
+
readonly outputPrice: 0.59;
|
|
43114
|
+
readonly description: "OpenAI gpt oss 120b model with 128k context window.";
|
|
43115
|
+
};
|
|
42604
43116
|
};
|
|
42605
43117
|
|
|
42606
43118
|
declare const unboundDefaultModelId = "anthropic/claude-3-7-sonnet-20250219";
|
|
@@ -42775,6 +43287,18 @@ declare const vertexModels: {
|
|
|
42775
43287
|
readonly cacheReadsPrice: 0.3;
|
|
42776
43288
|
readonly supportsReasoningBudget: true;
|
|
42777
43289
|
};
|
|
43290
|
+
readonly "claude-sonnet-4-5@20250929": {
|
|
43291
|
+
readonly maxTokens: 8192;
|
|
43292
|
+
readonly contextWindow: 200000;
|
|
43293
|
+
readonly supportsImages: true;
|
|
43294
|
+
readonly supportsComputerUse: true;
|
|
43295
|
+
readonly supportsPromptCache: true;
|
|
43296
|
+
readonly inputPrice: 3;
|
|
43297
|
+
readonly outputPrice: 15;
|
|
43298
|
+
readonly cacheWritesPrice: 3.75;
|
|
43299
|
+
readonly cacheReadsPrice: 0.3;
|
|
43300
|
+
readonly supportsReasoningBudget: true;
|
|
43301
|
+
};
|
|
42778
43302
|
readonly "claude-opus-4-1@20250805": {
|
|
42779
43303
|
readonly maxTokens: 8192;
|
|
42780
43304
|
readonly contextWindow: 200000;
|
|
@@ -43262,6 +43786,17 @@ declare const internationalZAiModels: {
|
|
|
43262
43786
|
readonly cacheReadsPrice: 0.03;
|
|
43263
43787
|
readonly description: "GLM-4.5-Air is the lightweight version of GLM-4.5. It balances performance and cost-effectiveness, and can flexibly switch to hybrid thinking models.";
|
|
43264
43788
|
};
|
|
43789
|
+
readonly "glm-4.6": {
|
|
43790
|
+
readonly maxTokens: 98304;
|
|
43791
|
+
readonly contextWindow: 204800;
|
|
43792
|
+
readonly supportsImages: false;
|
|
43793
|
+
readonly supportsPromptCache: true;
|
|
43794
|
+
readonly inputPrice: 0.6;
|
|
43795
|
+
readonly outputPrice: 2.2;
|
|
43796
|
+
readonly cacheWritesPrice: 0;
|
|
43797
|
+
readonly cacheReadsPrice: 0.11;
|
|
43798
|
+
readonly description: "GLM-4.6 is Zhipu's newest model with an extended context window of up to 200k tokens, providing enhanced capabilities for processing longer documents and conversations.";
|
|
43799
|
+
};
|
|
43265
43800
|
};
|
|
43266
43801
|
type MainlandZAiModelId = keyof typeof mainlandZAiModels;
|
|
43267
43802
|
declare const mainlandZAiDefaultModelId: MainlandZAiModelId;
|
|
@@ -43320,6 +43855,38 @@ declare const mainlandZAiModels: {
|
|
|
43320
43855
|
readonly cacheReadsPrice: 0.02;
|
|
43321
43856
|
}];
|
|
43322
43857
|
};
|
|
43858
|
+
readonly "glm-4.6": {
|
|
43859
|
+
readonly maxTokens: 98304;
|
|
43860
|
+
readonly contextWindow: 204800;
|
|
43861
|
+
readonly supportsImages: false;
|
|
43862
|
+
readonly supportsPromptCache: true;
|
|
43863
|
+
readonly inputPrice: 0.29;
|
|
43864
|
+
readonly outputPrice: 1.14;
|
|
43865
|
+
readonly cacheWritesPrice: 0;
|
|
43866
|
+
readonly cacheReadsPrice: 0.057;
|
|
43867
|
+
readonly description: "GLM-4.6 is Zhipu's newest model with an extended context window of up to 200k tokens, providing enhanced capabilities for processing longer documents and conversations.";
|
|
43868
|
+
readonly tiers: [{
|
|
43869
|
+
readonly contextWindow: 32000;
|
|
43870
|
+
readonly inputPrice: 0.21;
|
|
43871
|
+
readonly outputPrice: 1;
|
|
43872
|
+
readonly cacheReadsPrice: 0.043;
|
|
43873
|
+
}, {
|
|
43874
|
+
readonly contextWindow: 128000;
|
|
43875
|
+
readonly inputPrice: 0.29;
|
|
43876
|
+
readonly outputPrice: 1.14;
|
|
43877
|
+
readonly cacheReadsPrice: 0.057;
|
|
43878
|
+
}, {
|
|
43879
|
+
readonly contextWindow: 200000;
|
|
43880
|
+
readonly inputPrice: 0.29;
|
|
43881
|
+
readonly outputPrice: 1.14;
|
|
43882
|
+
readonly cacheReadsPrice: 0.057;
|
|
43883
|
+
}, {
|
|
43884
|
+
readonly contextWindow: number;
|
|
43885
|
+
readonly inputPrice: 0.29;
|
|
43886
|
+
readonly outputPrice: 1.14;
|
|
43887
|
+
readonly cacheReadsPrice: 0.057;
|
|
43888
|
+
}];
|
|
43889
|
+
};
|
|
43323
43890
|
};
|
|
43324
43891
|
declare const ZAI_DEFAULT_TEMPERATURE = 0;
|
|
43325
43892
|
declare const zaiApiLineConfigs: {
|
|
@@ -43348,4 +43915,4 @@ declare const zaiApiLineConfigs: {
|
|
|
43348
43915
|
declare const deepInfraDefaultModelId = "Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo";
|
|
43349
43916
|
declare const deepInfraDefaultModelInfo: ModelInfo;
|
|
43350
43917
|
|
|
43351
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState,
|
|
43918
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_1M_CONTEXT_MODEL_IDS, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, CONSENT_COOKIE_NAME, 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 CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomProvider, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, 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, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FauxProvider, type FeatherlessModelId, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SECRET_KEYS, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, 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, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternalProvider, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LeaveResponse, type LocalProvider, 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 MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelIdKey, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, 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 ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type ServiceTier, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type StaticAppProperties, type SuggestionItem, 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 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 XAIModelId, ZAI_DEFAULT_TEMPERATURE, type ZaiApiLine, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customProviders, customSupportPromptsSchema, deepInfraDefaultModelId, deepInfraDefaultModelInfo, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, fauxProviders, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internalProviders, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isCustomProvider, isDynamicProvider, isFauxProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isInternalProvider, isLanguage, isLocalProvider, isModelParameter, isProviderName, isResumableAsk, isSecretStateKey, isTypicalProvider, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, localProviders, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelIdKeys, modelIdKeysByProvider, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationFeaturesSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, queuedMessageSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, serviceTierSchema, serviceTiers, shareResponseSchema, 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 };
|