@roo-code/types 1.79.0 → 1.80.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 +241 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +480 -14
- package/dist/index.d.ts +480 -14
- package/dist/index.js +239 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1821,6 +1821,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1821
1821
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
1822
1822
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
1823
1823
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
1824
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
1824
1825
|
} & {
|
|
1825
1826
|
apiProvider: z.ZodLiteral<"ollama">;
|
|
1826
1827
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1840,6 +1841,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1840
1841
|
ollamaModelId?: string | undefined;
|
|
1841
1842
|
ollamaBaseUrl?: string | undefined;
|
|
1842
1843
|
ollamaApiKey?: string | undefined;
|
|
1844
|
+
ollamaNumCtx?: number | undefined;
|
|
1843
1845
|
}, {
|
|
1844
1846
|
apiProvider: "ollama";
|
|
1845
1847
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -1857,6 +1859,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1857
1859
|
ollamaModelId?: string | undefined;
|
|
1858
1860
|
ollamaBaseUrl?: string | undefined;
|
|
1859
1861
|
ollamaApiKey?: string | undefined;
|
|
1862
|
+
ollamaNumCtx?: number | undefined;
|
|
1860
1863
|
}>, z.ZodObject<{
|
|
1861
1864
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
1862
1865
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3443,6 +3446,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3443
3446
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3444
3447
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3445
3448
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
3449
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
3446
3450
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3447
3451
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
3448
3452
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3692,6 +3696,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3692
3696
|
ollamaModelId?: string | undefined;
|
|
3693
3697
|
ollamaBaseUrl?: string | undefined;
|
|
3694
3698
|
ollamaApiKey?: string | undefined;
|
|
3699
|
+
ollamaNumCtx?: number | undefined;
|
|
3695
3700
|
vsCodeLmModelSelector?: {
|
|
3696
3701
|
id?: string | undefined;
|
|
3697
3702
|
family?: string | undefined;
|
|
@@ -3848,6 +3853,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3848
3853
|
ollamaModelId?: string | undefined;
|
|
3849
3854
|
ollamaBaseUrl?: string | undefined;
|
|
3850
3855
|
ollamaApiKey?: string | undefined;
|
|
3856
|
+
ollamaNumCtx?: number | undefined;
|
|
3851
3857
|
vsCodeLmModelSelector?: {
|
|
3852
3858
|
id?: string | undefined;
|
|
3853
3859
|
family?: string | undefined;
|
|
@@ -3997,6 +4003,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3997
4003
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3998
4004
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3999
4005
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
4006
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
4000
4007
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4001
4008
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
4002
4009
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4249,6 +4256,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4249
4256
|
ollamaModelId?: string | undefined;
|
|
4250
4257
|
ollamaBaseUrl?: string | undefined;
|
|
4251
4258
|
ollamaApiKey?: string | undefined;
|
|
4259
|
+
ollamaNumCtx?: number | undefined;
|
|
4252
4260
|
vsCodeLmModelSelector?: {
|
|
4253
4261
|
id?: string | undefined;
|
|
4254
4262
|
family?: string | undefined;
|
|
@@ -4406,6 +4414,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4406
4414
|
ollamaModelId?: string | undefined;
|
|
4407
4415
|
ollamaBaseUrl?: string | undefined;
|
|
4408
4416
|
ollamaApiKey?: string | undefined;
|
|
4417
|
+
ollamaNumCtx?: number | undefined;
|
|
4409
4418
|
vsCodeLmModelSelector?: {
|
|
4410
4419
|
id?: string | undefined;
|
|
4411
4420
|
family?: string | undefined;
|
|
@@ -5102,6 +5111,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5102
5111
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
5103
5112
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5104
5113
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
5114
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
5105
5115
|
} & {
|
|
5106
5116
|
apiProvider: z.ZodLiteral<"ollama">;
|
|
5107
5117
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5121,6 +5131,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5121
5131
|
ollamaModelId?: string | undefined;
|
|
5122
5132
|
ollamaBaseUrl?: string | undefined;
|
|
5123
5133
|
ollamaApiKey?: string | undefined;
|
|
5134
|
+
ollamaNumCtx?: number | undefined;
|
|
5124
5135
|
}, {
|
|
5125
5136
|
apiProvider: "ollama";
|
|
5126
5137
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -5138,6 +5149,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5138
5149
|
ollamaModelId?: string | undefined;
|
|
5139
5150
|
ollamaBaseUrl?: string | undefined;
|
|
5140
5151
|
ollamaApiKey?: string | undefined;
|
|
5152
|
+
ollamaNumCtx?: number | undefined;
|
|
5141
5153
|
}>, z.ZodObject<{
|
|
5142
5154
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
5143
5155
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6639,7 +6651,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6639
6651
|
id?: string | undefined;
|
|
6640
6652
|
}>>;
|
|
6641
6653
|
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"];
|
|
6654
|
+
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
6655
|
/**
|
|
6644
6656
|
* ModelIdKey
|
|
6645
6657
|
*/
|
|
@@ -7032,6 +7044,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7032
7044
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
7033
7045
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
7034
7046
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7047
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7035
7048
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
7036
7049
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
7037
7050
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -7197,6 +7210,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7197
7210
|
enhancementApiConfigId?: string | undefined;
|
|
7198
7211
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
7199
7212
|
historyPreviewCollapsed?: boolean | undefined;
|
|
7213
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
7200
7214
|
profileThresholds?: Record<string, number> | undefined;
|
|
7201
7215
|
hasOpenedModeSelector?: boolean | undefined;
|
|
7202
7216
|
lastModeExportPath?: string | undefined;
|
|
@@ -7362,13 +7376,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
7362
7376
|
enhancementApiConfigId?: string | undefined;
|
|
7363
7377
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
7364
7378
|
historyPreviewCollapsed?: boolean | undefined;
|
|
7379
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
7365
7380
|
profileThresholds?: Record<string, number> | undefined;
|
|
7366
7381
|
hasOpenedModeSelector?: boolean | undefined;
|
|
7367
7382
|
lastModeExportPath?: string | undefined;
|
|
7368
7383
|
lastModeImportPath?: string | undefined;
|
|
7369
7384
|
}>;
|
|
7370
7385
|
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"];
|
|
7386
|
+
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
7387
|
/**
|
|
7373
7388
|
* RooCodeSettings
|
|
7374
7389
|
*/
|
|
@@ -7461,6 +7476,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7461
7476
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
7462
7477
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7463
7478
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
7479
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
7464
7480
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7465
7481
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
7466
7482
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7952,6 +7968,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7952
7968
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
7953
7969
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
7954
7970
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7971
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
7955
7972
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
7956
7973
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
7957
7974
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -8057,6 +8074,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8057
8074
|
ollamaModelId?: string | undefined;
|
|
8058
8075
|
ollamaBaseUrl?: string | undefined;
|
|
8059
8076
|
ollamaApiKey?: string | undefined;
|
|
8077
|
+
ollamaNumCtx?: number | undefined;
|
|
8060
8078
|
vsCodeLmModelSelector?: {
|
|
8061
8079
|
id?: string | undefined;
|
|
8062
8080
|
family?: string | undefined;
|
|
@@ -8269,6 +8287,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8269
8287
|
enhancementApiConfigId?: string | undefined;
|
|
8270
8288
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
8271
8289
|
historyPreviewCollapsed?: boolean | undefined;
|
|
8290
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
8272
8291
|
profileThresholds?: Record<string, number> | undefined;
|
|
8273
8292
|
hasOpenedModeSelector?: boolean | undefined;
|
|
8274
8293
|
lastModeExportPath?: string | undefined;
|
|
@@ -8374,6 +8393,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8374
8393
|
ollamaModelId?: string | undefined;
|
|
8375
8394
|
ollamaBaseUrl?: string | undefined;
|
|
8376
8395
|
ollamaApiKey?: string | undefined;
|
|
8396
|
+
ollamaNumCtx?: number | undefined;
|
|
8377
8397
|
vsCodeLmModelSelector?: {
|
|
8378
8398
|
id?: string | undefined;
|
|
8379
8399
|
family?: string | undefined;
|
|
@@ -8586,6 +8606,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8586
8606
|
enhancementApiConfigId?: string | undefined;
|
|
8587
8607
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
8588
8608
|
historyPreviewCollapsed?: boolean | undefined;
|
|
8609
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
8589
8610
|
profileThresholds?: Record<string, number> | undefined;
|
|
8590
8611
|
hasOpenedModeSelector?: boolean | undefined;
|
|
8591
8612
|
lastModeExportPath?: string | undefined;
|
|
@@ -8753,6 +8774,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8753
8774
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
8754
8775
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8755
8776
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
8777
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
8756
8778
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8757
8779
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
8758
8780
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9244,6 +9266,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9244
9266
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
9245
9267
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
9246
9268
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
9269
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
9247
9270
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
9248
9271
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
9249
9272
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -9349,6 +9372,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9349
9372
|
ollamaModelId?: string | undefined;
|
|
9350
9373
|
ollamaBaseUrl?: string | undefined;
|
|
9351
9374
|
ollamaApiKey?: string | undefined;
|
|
9375
|
+
ollamaNumCtx?: number | undefined;
|
|
9352
9376
|
vsCodeLmModelSelector?: {
|
|
9353
9377
|
id?: string | undefined;
|
|
9354
9378
|
family?: string | undefined;
|
|
@@ -9561,6 +9585,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9561
9585
|
enhancementApiConfigId?: string | undefined;
|
|
9562
9586
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
9563
9587
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9588
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
9564
9589
|
profileThresholds?: Record<string, number> | undefined;
|
|
9565
9590
|
hasOpenedModeSelector?: boolean | undefined;
|
|
9566
9591
|
lastModeExportPath?: string | undefined;
|
|
@@ -9666,6 +9691,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9666
9691
|
ollamaModelId?: string | undefined;
|
|
9667
9692
|
ollamaBaseUrl?: string | undefined;
|
|
9668
9693
|
ollamaApiKey?: string | undefined;
|
|
9694
|
+
ollamaNumCtx?: number | undefined;
|
|
9669
9695
|
vsCodeLmModelSelector?: {
|
|
9670
9696
|
id?: string | undefined;
|
|
9671
9697
|
family?: string | undefined;
|
|
@@ -9878,6 +9904,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9878
9904
|
enhancementApiConfigId?: string | undefined;
|
|
9879
9905
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
9880
9906
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9907
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
9881
9908
|
profileThresholds?: Record<string, number> | undefined;
|
|
9882
9909
|
hasOpenedModeSelector?: boolean | undefined;
|
|
9883
9910
|
lastModeExportPath?: string | undefined;
|
|
@@ -9989,6 +10016,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9989
10016
|
ollamaModelId?: string | undefined;
|
|
9990
10017
|
ollamaBaseUrl?: string | undefined;
|
|
9991
10018
|
ollamaApiKey?: string | undefined;
|
|
10019
|
+
ollamaNumCtx?: number | undefined;
|
|
9992
10020
|
vsCodeLmModelSelector?: {
|
|
9993
10021
|
id?: string | undefined;
|
|
9994
10022
|
family?: string | undefined;
|
|
@@ -10201,6 +10229,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10201
10229
|
enhancementApiConfigId?: string | undefined;
|
|
10202
10230
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
10203
10231
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10232
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
10204
10233
|
profileThresholds?: Record<string, number> | undefined;
|
|
10205
10234
|
hasOpenedModeSelector?: boolean | undefined;
|
|
10206
10235
|
lastModeExportPath?: string | undefined;
|
|
@@ -10311,6 +10340,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10311
10340
|
ollamaModelId?: string | undefined;
|
|
10312
10341
|
ollamaBaseUrl?: string | undefined;
|
|
10313
10342
|
ollamaApiKey?: string | undefined;
|
|
10343
|
+
ollamaNumCtx?: number | undefined;
|
|
10314
10344
|
vsCodeLmModelSelector?: {
|
|
10315
10345
|
id?: string | undefined;
|
|
10316
10346
|
family?: string | undefined;
|
|
@@ -10523,6 +10553,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10523
10553
|
enhancementApiConfigId?: string | undefined;
|
|
10524
10554
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
10525
10555
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10556
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
10526
10557
|
profileThresholds?: Record<string, number> | undefined;
|
|
10527
10558
|
hasOpenedModeSelector?: boolean | undefined;
|
|
10528
10559
|
lastModeExportPath?: string | undefined;
|
|
@@ -10636,6 +10667,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10636
10667
|
ollamaModelId?: string | undefined;
|
|
10637
10668
|
ollamaBaseUrl?: string | undefined;
|
|
10638
10669
|
ollamaApiKey?: string | undefined;
|
|
10670
|
+
ollamaNumCtx?: number | undefined;
|
|
10639
10671
|
vsCodeLmModelSelector?: {
|
|
10640
10672
|
id?: string | undefined;
|
|
10641
10673
|
family?: string | undefined;
|
|
@@ -10848,6 +10880,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10848
10880
|
enhancementApiConfigId?: string | undefined;
|
|
10849
10881
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
10850
10882
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10883
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
10851
10884
|
profileThresholds?: Record<string, number> | undefined;
|
|
10852
10885
|
hasOpenedModeSelector?: boolean | undefined;
|
|
10853
10886
|
lastModeExportPath?: string | undefined;
|
|
@@ -10961,6 +10994,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10961
10994
|
ollamaModelId?: string | undefined;
|
|
10962
10995
|
ollamaBaseUrl?: string | undefined;
|
|
10963
10996
|
ollamaApiKey?: string | undefined;
|
|
10997
|
+
ollamaNumCtx?: number | undefined;
|
|
10964
10998
|
vsCodeLmModelSelector?: {
|
|
10965
10999
|
id?: string | undefined;
|
|
10966
11000
|
family?: string | undefined;
|
|
@@ -11173,6 +11207,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
11173
11207
|
enhancementApiConfigId?: string | undefined;
|
|
11174
11208
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
11175
11209
|
historyPreviewCollapsed?: boolean | undefined;
|
|
11210
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
11176
11211
|
profileThresholds?: Record<string, number> | undefined;
|
|
11177
11212
|
hasOpenedModeSelector?: boolean | undefined;
|
|
11178
11213
|
lastModeExportPath?: string | undefined;
|
|
@@ -11341,6 +11376,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11341
11376
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
11342
11377
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11343
11378
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
11379
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
11344
11380
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11345
11381
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
11346
11382
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11832,6 +11868,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11832
11868
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
11833
11869
|
includeTaskHistoryInEnhance: z.ZodOptional<z.ZodBoolean>;
|
|
11834
11870
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
11871
|
+
reasoningBlockCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
11835
11872
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
11836
11873
|
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
11837
11874
|
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
@@ -11937,6 +11974,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11937
11974
|
ollamaModelId?: string | undefined;
|
|
11938
11975
|
ollamaBaseUrl?: string | undefined;
|
|
11939
11976
|
ollamaApiKey?: string | undefined;
|
|
11977
|
+
ollamaNumCtx?: number | undefined;
|
|
11940
11978
|
vsCodeLmModelSelector?: {
|
|
11941
11979
|
id?: string | undefined;
|
|
11942
11980
|
family?: string | undefined;
|
|
@@ -12149,6 +12187,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12149
12187
|
enhancementApiConfigId?: string | undefined;
|
|
12150
12188
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
12151
12189
|
historyPreviewCollapsed?: boolean | undefined;
|
|
12190
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
12152
12191
|
profileThresholds?: Record<string, number> | undefined;
|
|
12153
12192
|
hasOpenedModeSelector?: boolean | undefined;
|
|
12154
12193
|
lastModeExportPath?: string | undefined;
|
|
@@ -12254,6 +12293,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12254
12293
|
ollamaModelId?: string | undefined;
|
|
12255
12294
|
ollamaBaseUrl?: string | undefined;
|
|
12256
12295
|
ollamaApiKey?: string | undefined;
|
|
12296
|
+
ollamaNumCtx?: number | undefined;
|
|
12257
12297
|
vsCodeLmModelSelector?: {
|
|
12258
12298
|
id?: string | undefined;
|
|
12259
12299
|
family?: string | undefined;
|
|
@@ -12466,6 +12506,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12466
12506
|
enhancementApiConfigId?: string | undefined;
|
|
12467
12507
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
12468
12508
|
historyPreviewCollapsed?: boolean | undefined;
|
|
12509
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
12469
12510
|
profileThresholds?: Record<string, number> | undefined;
|
|
12470
12511
|
hasOpenedModeSelector?: boolean | undefined;
|
|
12471
12512
|
lastModeExportPath?: string | undefined;
|
|
@@ -12577,6 +12618,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12577
12618
|
ollamaModelId?: string | undefined;
|
|
12578
12619
|
ollamaBaseUrl?: string | undefined;
|
|
12579
12620
|
ollamaApiKey?: string | undefined;
|
|
12621
|
+
ollamaNumCtx?: number | undefined;
|
|
12580
12622
|
vsCodeLmModelSelector?: {
|
|
12581
12623
|
id?: string | undefined;
|
|
12582
12624
|
family?: string | undefined;
|
|
@@ -12789,6 +12831,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12789
12831
|
enhancementApiConfigId?: string | undefined;
|
|
12790
12832
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
12791
12833
|
historyPreviewCollapsed?: boolean | undefined;
|
|
12834
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
12792
12835
|
profileThresholds?: Record<string, number> | undefined;
|
|
12793
12836
|
hasOpenedModeSelector?: boolean | undefined;
|
|
12794
12837
|
lastModeExportPath?: string | undefined;
|
|
@@ -12899,6 +12942,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12899
12942
|
ollamaModelId?: string | undefined;
|
|
12900
12943
|
ollamaBaseUrl?: string | undefined;
|
|
12901
12944
|
ollamaApiKey?: string | undefined;
|
|
12945
|
+
ollamaNumCtx?: number | undefined;
|
|
12902
12946
|
vsCodeLmModelSelector?: {
|
|
12903
12947
|
id?: string | undefined;
|
|
12904
12948
|
family?: string | undefined;
|
|
@@ -13111,6 +13155,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13111
13155
|
enhancementApiConfigId?: string | undefined;
|
|
13112
13156
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
13113
13157
|
historyPreviewCollapsed?: boolean | undefined;
|
|
13158
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
13114
13159
|
profileThresholds?: Record<string, number> | undefined;
|
|
13115
13160
|
hasOpenedModeSelector?: boolean | undefined;
|
|
13116
13161
|
lastModeExportPath?: string | undefined;
|
|
@@ -13224,6 +13269,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13224
13269
|
ollamaModelId?: string | undefined;
|
|
13225
13270
|
ollamaBaseUrl?: string | undefined;
|
|
13226
13271
|
ollamaApiKey?: string | undefined;
|
|
13272
|
+
ollamaNumCtx?: number | undefined;
|
|
13227
13273
|
vsCodeLmModelSelector?: {
|
|
13228
13274
|
id?: string | undefined;
|
|
13229
13275
|
family?: string | undefined;
|
|
@@ -13436,6 +13482,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13436
13482
|
enhancementApiConfigId?: string | undefined;
|
|
13437
13483
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
13438
13484
|
historyPreviewCollapsed?: boolean | undefined;
|
|
13485
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
13439
13486
|
profileThresholds?: Record<string, number> | undefined;
|
|
13440
13487
|
hasOpenedModeSelector?: boolean | undefined;
|
|
13441
13488
|
lastModeExportPath?: string | undefined;
|
|
@@ -13549,6 +13596,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13549
13596
|
ollamaModelId?: string | undefined;
|
|
13550
13597
|
ollamaBaseUrl?: string | undefined;
|
|
13551
13598
|
ollamaApiKey?: string | undefined;
|
|
13599
|
+
ollamaNumCtx?: number | undefined;
|
|
13552
13600
|
vsCodeLmModelSelector?: {
|
|
13553
13601
|
id?: string | undefined;
|
|
13554
13602
|
family?: string | undefined;
|
|
@@ -13761,6 +13809,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13761
13809
|
enhancementApiConfigId?: string | undefined;
|
|
13762
13810
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
13763
13811
|
historyPreviewCollapsed?: boolean | undefined;
|
|
13812
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
13764
13813
|
profileThresholds?: Record<string, number> | undefined;
|
|
13765
13814
|
hasOpenedModeSelector?: boolean | undefined;
|
|
13766
13815
|
lastModeExportPath?: string | undefined;
|
|
@@ -13905,6 +13954,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13905
13954
|
ollamaModelId?: string | undefined;
|
|
13906
13955
|
ollamaBaseUrl?: string | undefined;
|
|
13907
13956
|
ollamaApiKey?: string | undefined;
|
|
13957
|
+
ollamaNumCtx?: number | undefined;
|
|
13908
13958
|
vsCodeLmModelSelector?: {
|
|
13909
13959
|
id?: string | undefined;
|
|
13910
13960
|
family?: string | undefined;
|
|
@@ -14117,6 +14167,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14117
14167
|
enhancementApiConfigId?: string | undefined;
|
|
14118
14168
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
14119
14169
|
historyPreviewCollapsed?: boolean | undefined;
|
|
14170
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
14120
14171
|
profileThresholds?: Record<string, number> | undefined;
|
|
14121
14172
|
hasOpenedModeSelector?: boolean | undefined;
|
|
14122
14173
|
lastModeExportPath?: string | undefined;
|
|
@@ -14244,6 +14295,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14244
14295
|
ollamaModelId?: string | undefined;
|
|
14245
14296
|
ollamaBaseUrl?: string | undefined;
|
|
14246
14297
|
ollamaApiKey?: string | undefined;
|
|
14298
|
+
ollamaNumCtx?: number | undefined;
|
|
14247
14299
|
vsCodeLmModelSelector?: {
|
|
14248
14300
|
id?: string | undefined;
|
|
14249
14301
|
family?: string | undefined;
|
|
@@ -14456,6 +14508,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
14456
14508
|
enhancementApiConfigId?: string | undefined;
|
|
14457
14509
|
includeTaskHistoryInEnhance?: boolean | undefined;
|
|
14458
14510
|
historyPreviewCollapsed?: boolean | undefined;
|
|
14511
|
+
reasoningBlockCollapsed?: boolean | undefined;
|
|
14459
14512
|
profileThresholds?: Record<string, number> | undefined;
|
|
14460
14513
|
hasOpenedModeSelector?: boolean | undefined;
|
|
14461
14514
|
lastModeExportPath?: string | undefined;
|
|
@@ -15566,7 +15619,7 @@ declare function isResumableAsk(ask: ClineAsk): ask is ResumableAsk;
|
|
|
15566
15619
|
*
|
|
15567
15620
|
* Asks that put the task into an "user interaction required" state.
|
|
15568
15621
|
*/
|
|
15569
|
-
declare const interactiveAsks: readonly ["command", "tool", "browser_action_launch", "use_mcp_server"];
|
|
15622
|
+
declare const interactiveAsks: readonly ["followup", "command", "tool", "browser_action_launch", "use_mcp_server"];
|
|
15570
15623
|
type InteractiveAsk = (typeof interactiveAsks)[number];
|
|
15571
15624
|
declare function isInteractiveAsk(ask: ClineAsk): ask is InteractiveAsk;
|
|
15572
15625
|
/**
|
|
@@ -15893,11 +15946,15 @@ declare enum TelemetryEventName {
|
|
|
15893
15946
|
ACCOUNT_CONNECT_SUCCESS = "Account Connect Success",
|
|
15894
15947
|
ACCOUNT_LOGOUT_CLICKED = "Account Logout Clicked",
|
|
15895
15948
|
ACCOUNT_LOGOUT_SUCCESS = "Account Logout Success",
|
|
15949
|
+
FEATURED_PROVIDER_CLICKED = "Featured Provider Clicked",
|
|
15950
|
+
UPSELL_DISMISSED = "Upsell Dismissed",
|
|
15951
|
+
UPSELL_CLICKED = "Upsell Clicked",
|
|
15896
15952
|
SCHEMA_VALIDATION_ERROR = "Schema Validation Error",
|
|
15897
15953
|
DIFF_APPLICATION_ERROR = "Diff Application Error",
|
|
15898
15954
|
SHELL_INTEGRATION_ERROR = "Shell Integration Error",
|
|
15899
15955
|
CONSECUTIVE_MISTAKE_ERROR = "Consecutive Mistake Error",
|
|
15900
|
-
CODE_INDEX_ERROR = "Code Index Error"
|
|
15956
|
+
CODE_INDEX_ERROR = "Code Index Error",
|
|
15957
|
+
TELEMETRY_SETTINGS_CHANGED = "Telemetry Settings Changed"
|
|
15901
15958
|
}
|
|
15902
15959
|
/**
|
|
15903
15960
|
* TelemetryProperties
|
|
@@ -16133,7 +16190,7 @@ type TelemetryEvent = {
|
|
|
16133
16190
|
* RooCodeTelemetryEvent
|
|
16134
16191
|
*/
|
|
16135
16192
|
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]>;
|
|
16193
|
+
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
16194
|
properties: z.ZodObject<{
|
|
16138
16195
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16139
16196
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
@@ -16218,7 +16275,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16218
16275
|
defaultBranch?: string | undefined;
|
|
16219
16276
|
}>;
|
|
16220
16277
|
}, "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;
|
|
16278
|
+
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
16279
|
properties: {
|
|
16223
16280
|
mode: string;
|
|
16224
16281
|
appName: string;
|
|
@@ -16245,7 +16302,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16245
16302
|
defaultBranch?: string | undefined;
|
|
16246
16303
|
};
|
|
16247
16304
|
}, {
|
|
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;
|
|
16305
|
+
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
16306
|
properties: {
|
|
16250
16307
|
mode: string;
|
|
16251
16308
|
appName: string;
|
|
@@ -16271,6 +16328,155 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16271
16328
|
repositoryName?: string | undefined;
|
|
16272
16329
|
defaultBranch?: string | undefined;
|
|
16273
16330
|
};
|
|
16331
|
+
}>, z.ZodObject<{
|
|
16332
|
+
type: z.ZodLiteral<TelemetryEventName.TELEMETRY_SETTINGS_CHANGED>;
|
|
16333
|
+
properties: z.ZodObject<{
|
|
16334
|
+
previousSetting: z.ZodEnum<["unset", "enabled", "disabled"]>;
|
|
16335
|
+
newSetting: z.ZodEnum<["unset", "enabled", "disabled"]>;
|
|
16336
|
+
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16337
|
+
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16338
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16339
|
+
taskId: z.ZodOptional<z.ZodString>;
|
|
16340
|
+
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"]>>;
|
|
16341
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
16342
|
+
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16343
|
+
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
16344
|
+
todos: z.ZodOptional<z.ZodObject<{
|
|
16345
|
+
total: z.ZodNumber;
|
|
16346
|
+
completed: z.ZodNumber;
|
|
16347
|
+
inProgress: z.ZodNumber;
|
|
16348
|
+
pending: z.ZodNumber;
|
|
16349
|
+
}, "strip", z.ZodTypeAny, {
|
|
16350
|
+
total: number;
|
|
16351
|
+
completed: number;
|
|
16352
|
+
inProgress: number;
|
|
16353
|
+
pending: number;
|
|
16354
|
+
}, {
|
|
16355
|
+
total: number;
|
|
16356
|
+
completed: number;
|
|
16357
|
+
inProgress: number;
|
|
16358
|
+
pending: number;
|
|
16359
|
+
}>>;
|
|
16360
|
+
cloudIsAuthenticated: z.ZodOptional<z.ZodBoolean>;
|
|
16361
|
+
language: z.ZodString;
|
|
16362
|
+
mode: z.ZodString;
|
|
16363
|
+
appName: z.ZodString;
|
|
16364
|
+
appVersion: z.ZodString;
|
|
16365
|
+
vscodeVersion: z.ZodString;
|
|
16366
|
+
platform: z.ZodString;
|
|
16367
|
+
editorName: z.ZodString;
|
|
16368
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
16369
|
+
}, "strip", z.ZodTypeAny, {
|
|
16370
|
+
mode: string;
|
|
16371
|
+
appName: string;
|
|
16372
|
+
appVersion: string;
|
|
16373
|
+
vscodeVersion: string;
|
|
16374
|
+
platform: string;
|
|
16375
|
+
editorName: string;
|
|
16376
|
+
language: string;
|
|
16377
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16378
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16379
|
+
isSubtask?: boolean | undefined;
|
|
16380
|
+
taskId?: string | undefined;
|
|
16381
|
+
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;
|
|
16382
|
+
modelId?: string | undefined;
|
|
16383
|
+
hostname?: string | undefined;
|
|
16384
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16385
|
+
diffStrategy?: string | undefined;
|
|
16386
|
+
todos?: {
|
|
16387
|
+
total: number;
|
|
16388
|
+
completed: number;
|
|
16389
|
+
inProgress: number;
|
|
16390
|
+
pending: number;
|
|
16391
|
+
} | undefined;
|
|
16392
|
+
repositoryUrl?: string | undefined;
|
|
16393
|
+
repositoryName?: string | undefined;
|
|
16394
|
+
defaultBranch?: string | undefined;
|
|
16395
|
+
}, {
|
|
16396
|
+
mode: string;
|
|
16397
|
+
appName: string;
|
|
16398
|
+
appVersion: string;
|
|
16399
|
+
vscodeVersion: string;
|
|
16400
|
+
platform: string;
|
|
16401
|
+
editorName: string;
|
|
16402
|
+
language: string;
|
|
16403
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16404
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16405
|
+
isSubtask?: boolean | undefined;
|
|
16406
|
+
taskId?: string | undefined;
|
|
16407
|
+
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;
|
|
16408
|
+
modelId?: string | undefined;
|
|
16409
|
+
hostname?: string | undefined;
|
|
16410
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16411
|
+
diffStrategy?: string | undefined;
|
|
16412
|
+
todos?: {
|
|
16413
|
+
total: number;
|
|
16414
|
+
completed: number;
|
|
16415
|
+
inProgress: number;
|
|
16416
|
+
pending: number;
|
|
16417
|
+
} | undefined;
|
|
16418
|
+
repositoryUrl?: string | undefined;
|
|
16419
|
+
repositoryName?: string | undefined;
|
|
16420
|
+
defaultBranch?: string | undefined;
|
|
16421
|
+
}>;
|
|
16422
|
+
}, "strip", z.ZodTypeAny, {
|
|
16423
|
+
type: TelemetryEventName.TELEMETRY_SETTINGS_CHANGED;
|
|
16424
|
+
properties: {
|
|
16425
|
+
mode: string;
|
|
16426
|
+
appName: string;
|
|
16427
|
+
appVersion: string;
|
|
16428
|
+
vscodeVersion: string;
|
|
16429
|
+
platform: string;
|
|
16430
|
+
editorName: string;
|
|
16431
|
+
language: string;
|
|
16432
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16433
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16434
|
+
isSubtask?: boolean | undefined;
|
|
16435
|
+
taskId?: string | undefined;
|
|
16436
|
+
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;
|
|
16437
|
+
modelId?: string | undefined;
|
|
16438
|
+
hostname?: string | undefined;
|
|
16439
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16440
|
+
diffStrategy?: string | undefined;
|
|
16441
|
+
todos?: {
|
|
16442
|
+
total: number;
|
|
16443
|
+
completed: number;
|
|
16444
|
+
inProgress: number;
|
|
16445
|
+
pending: number;
|
|
16446
|
+
} | undefined;
|
|
16447
|
+
repositoryUrl?: string | undefined;
|
|
16448
|
+
repositoryName?: string | undefined;
|
|
16449
|
+
defaultBranch?: string | undefined;
|
|
16450
|
+
};
|
|
16451
|
+
}, {
|
|
16452
|
+
type: TelemetryEventName.TELEMETRY_SETTINGS_CHANGED;
|
|
16453
|
+
properties: {
|
|
16454
|
+
mode: string;
|
|
16455
|
+
appName: string;
|
|
16456
|
+
appVersion: string;
|
|
16457
|
+
vscodeVersion: string;
|
|
16458
|
+
platform: string;
|
|
16459
|
+
editorName: string;
|
|
16460
|
+
language: string;
|
|
16461
|
+
previousSetting: "unset" | "enabled" | "disabled";
|
|
16462
|
+
newSetting: "unset" | "enabled" | "disabled";
|
|
16463
|
+
isSubtask?: boolean | undefined;
|
|
16464
|
+
taskId?: string | undefined;
|
|
16465
|
+
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;
|
|
16466
|
+
modelId?: string | undefined;
|
|
16467
|
+
hostname?: string | undefined;
|
|
16468
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16469
|
+
diffStrategy?: string | undefined;
|
|
16470
|
+
todos?: {
|
|
16471
|
+
total: number;
|
|
16472
|
+
completed: number;
|
|
16473
|
+
inProgress: number;
|
|
16474
|
+
pending: number;
|
|
16475
|
+
} | undefined;
|
|
16476
|
+
repositoryUrl?: string | undefined;
|
|
16477
|
+
repositoryName?: string | undefined;
|
|
16478
|
+
defaultBranch?: string | undefined;
|
|
16479
|
+
};
|
|
16274
16480
|
}>, z.ZodObject<{
|
|
16275
16481
|
type: z.ZodLiteral<TelemetryEventName.TASK_MESSAGE>;
|
|
16276
16482
|
properties: z.ZodObject<{
|
|
@@ -17479,6 +17685,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17479
17685
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
17480
17686
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
17481
17687
|
ollamaApiKey: z.ZodOptional<z.ZodString>;
|
|
17688
|
+
ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
|
|
17482
17689
|
openAiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
17483
17690
|
openAiApiKey: z.ZodOptional<z.ZodString>;
|
|
17484
17691
|
openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17731,6 +17938,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17731
17938
|
ollamaModelId?: string | undefined;
|
|
17732
17939
|
ollamaBaseUrl?: string | undefined;
|
|
17733
17940
|
ollamaApiKey?: string | undefined;
|
|
17941
|
+
ollamaNumCtx?: number | undefined;
|
|
17734
17942
|
vsCodeLmModelSelector?: {
|
|
17735
17943
|
id?: string | undefined;
|
|
17736
17944
|
family?: string | undefined;
|
|
@@ -17888,6 +18096,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
17888
18096
|
ollamaModelId?: string | undefined;
|
|
17889
18097
|
ollamaBaseUrl?: string | undefined;
|
|
17890
18098
|
ollamaApiKey?: string | undefined;
|
|
18099
|
+
ollamaNumCtx?: number | undefined;
|
|
17891
18100
|
vsCodeLmModelSelector?: {
|
|
17892
18101
|
id?: string | undefined;
|
|
17893
18102
|
family?: string | undefined;
|
|
@@ -18107,6 +18316,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
18107
18316
|
ollamaModelId?: string | undefined;
|
|
18108
18317
|
ollamaBaseUrl?: string | undefined;
|
|
18109
18318
|
ollamaApiKey?: string | undefined;
|
|
18319
|
+
ollamaNumCtx?: number | undefined;
|
|
18110
18320
|
vsCodeLmModelSelector?: {
|
|
18111
18321
|
id?: string | undefined;
|
|
18112
18322
|
family?: string | undefined;
|
|
@@ -18326,6 +18536,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
|
|
|
18326
18536
|
ollamaModelId?: string | undefined;
|
|
18327
18537
|
ollamaBaseUrl?: string | undefined;
|
|
18328
18538
|
ollamaApiKey?: string | undefined;
|
|
18539
|
+
ollamaNumCtx?: number | undefined;
|
|
18329
18540
|
vsCodeLmModelSelector?: {
|
|
18330
18541
|
id?: string | undefined;
|
|
18331
18542
|
family?: string | undefined;
|
|
@@ -18484,9 +18695,10 @@ type AuthState = "initializing" | "logged-out" | "active-session" | "attempting-
|
|
|
18484
18695
|
interface AuthService extends EventEmitter$1<AuthServiceEvents> {
|
|
18485
18696
|
initialize(): Promise<void>;
|
|
18486
18697
|
broadcast(): void;
|
|
18487
|
-
login(): Promise<void>;
|
|
18698
|
+
login(landingPageSlug?: string): Promise<void>;
|
|
18488
18699
|
logout(): Promise<void>;
|
|
18489
18700
|
handleCallback(code: string | null, state: string | null, organizationId?: string | null): Promise<void>;
|
|
18701
|
+
switchOrganization(organizationId: string | null): Promise<void>;
|
|
18490
18702
|
getState(): AuthState;
|
|
18491
18703
|
isAuthenticated(): boolean;
|
|
18492
18704
|
hasActiveSession(): boolean;
|
|
@@ -18494,6 +18706,7 @@ interface AuthService extends EventEmitter$1<AuthServiceEvents> {
|
|
|
18494
18706
|
getSessionToken(): string | undefined;
|
|
18495
18707
|
getUserInfo(): CloudUserInfo | null;
|
|
18496
18708
|
getStoredOrganizationId(): string | null;
|
|
18709
|
+
getOrganizationMemberships(): Promise<CloudOrganizationMembership[]>;
|
|
18497
18710
|
}
|
|
18498
18711
|
/**
|
|
18499
18712
|
* AuthServiceEvents
|
|
@@ -39062,6 +39275,81 @@ type LeaveResponse = {
|
|
|
39062
39275
|
taskId?: string;
|
|
39063
39276
|
timestamp?: string;
|
|
39064
39277
|
};
|
|
39278
|
+
/**
|
|
39279
|
+
* UsageStats
|
|
39280
|
+
*/
|
|
39281
|
+
declare const usageStatsSchema: z.ZodObject<{
|
|
39282
|
+
success: z.ZodBoolean;
|
|
39283
|
+
data: z.ZodObject<{
|
|
39284
|
+
dates: z.ZodArray<z.ZodString, "many">;
|
|
39285
|
+
tasks: z.ZodArray<z.ZodNumber, "many">;
|
|
39286
|
+
tokens: z.ZodArray<z.ZodNumber, "many">;
|
|
39287
|
+
costs: z.ZodArray<z.ZodNumber, "many">;
|
|
39288
|
+
totals: z.ZodObject<{
|
|
39289
|
+
tasks: z.ZodNumber;
|
|
39290
|
+
tokens: z.ZodNumber;
|
|
39291
|
+
cost: z.ZodNumber;
|
|
39292
|
+
}, "strip", z.ZodTypeAny, {
|
|
39293
|
+
cost: number;
|
|
39294
|
+
tasks: number;
|
|
39295
|
+
tokens: number;
|
|
39296
|
+
}, {
|
|
39297
|
+
cost: number;
|
|
39298
|
+
tasks: number;
|
|
39299
|
+
tokens: number;
|
|
39300
|
+
}>;
|
|
39301
|
+
}, "strip", z.ZodTypeAny, {
|
|
39302
|
+
dates: string[];
|
|
39303
|
+
tasks: number[];
|
|
39304
|
+
tokens: number[];
|
|
39305
|
+
costs: number[];
|
|
39306
|
+
totals: {
|
|
39307
|
+
cost: number;
|
|
39308
|
+
tasks: number;
|
|
39309
|
+
tokens: number;
|
|
39310
|
+
};
|
|
39311
|
+
}, {
|
|
39312
|
+
dates: string[];
|
|
39313
|
+
tasks: number[];
|
|
39314
|
+
tokens: number[];
|
|
39315
|
+
costs: number[];
|
|
39316
|
+
totals: {
|
|
39317
|
+
cost: number;
|
|
39318
|
+
tasks: number;
|
|
39319
|
+
tokens: number;
|
|
39320
|
+
};
|
|
39321
|
+
}>;
|
|
39322
|
+
period: z.ZodNumber;
|
|
39323
|
+
}, "strip", z.ZodTypeAny, {
|
|
39324
|
+
data: {
|
|
39325
|
+
dates: string[];
|
|
39326
|
+
tasks: number[];
|
|
39327
|
+
tokens: number[];
|
|
39328
|
+
costs: number[];
|
|
39329
|
+
totals: {
|
|
39330
|
+
cost: number;
|
|
39331
|
+
tasks: number;
|
|
39332
|
+
tokens: number;
|
|
39333
|
+
};
|
|
39334
|
+
};
|
|
39335
|
+
success: boolean;
|
|
39336
|
+
period: number;
|
|
39337
|
+
}, {
|
|
39338
|
+
data: {
|
|
39339
|
+
dates: string[];
|
|
39340
|
+
tasks: number[];
|
|
39341
|
+
tokens: number[];
|
|
39342
|
+
costs: number[];
|
|
39343
|
+
totals: {
|
|
39344
|
+
cost: number;
|
|
39345
|
+
tasks: number;
|
|
39346
|
+
tokens: number;
|
|
39347
|
+
};
|
|
39348
|
+
};
|
|
39349
|
+
success: boolean;
|
|
39350
|
+
period: number;
|
|
39351
|
+
}>;
|
|
39352
|
+
type UsageStats = z.infer<typeof usageStatsSchema>;
|
|
39065
39353
|
|
|
39066
39354
|
/**
|
|
39067
39355
|
* Codebase Index Constants
|
|
@@ -40333,7 +40621,7 @@ type TerminalActionPromptType = `TERMINAL_${TerminalActionName}`;
|
|
|
40333
40621
|
/**
|
|
40334
40622
|
* Command
|
|
40335
40623
|
*/
|
|
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"];
|
|
40624
|
+
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
40625
|
type CommandId = (typeof commandIds)[number];
|
|
40338
40626
|
/**
|
|
40339
40627
|
* Language
|
|
@@ -40346,6 +40634,25 @@ declare const isLanguage: (value: string) => value is Language;
|
|
|
40346
40634
|
type AnthropicModelId = keyof typeof anthropicModels;
|
|
40347
40635
|
declare const anthropicDefaultModelId: AnthropicModelId;
|
|
40348
40636
|
declare const anthropicModels: {
|
|
40637
|
+
readonly "claude-sonnet-4-5": {
|
|
40638
|
+
readonly maxTokens: 64000;
|
|
40639
|
+
readonly contextWindow: 200000;
|
|
40640
|
+
readonly supportsImages: true;
|
|
40641
|
+
readonly supportsComputerUse: true;
|
|
40642
|
+
readonly supportsPromptCache: true;
|
|
40643
|
+
readonly inputPrice: 3;
|
|
40644
|
+
readonly outputPrice: 15;
|
|
40645
|
+
readonly cacheWritesPrice: 3.75;
|
|
40646
|
+
readonly cacheReadsPrice: 0.3;
|
|
40647
|
+
readonly supportsReasoningBudget: true;
|
|
40648
|
+
readonly tiers: [{
|
|
40649
|
+
readonly contextWindow: 1000000;
|
|
40650
|
+
readonly inputPrice: 6;
|
|
40651
|
+
readonly outputPrice: 22.5;
|
|
40652
|
+
readonly cacheWritesPrice: 7.5;
|
|
40653
|
+
readonly cacheReadsPrice: 0.6;
|
|
40654
|
+
}];
|
|
40655
|
+
};
|
|
40349
40656
|
readonly "claude-sonnet-4-20250514": {
|
|
40350
40657
|
readonly maxTokens: 64000;
|
|
40351
40658
|
readonly contextWindow: 200000;
|
|
@@ -40461,6 +40768,21 @@ type BedrockModelId = keyof typeof bedrockModels;
|
|
|
40461
40768
|
declare const bedrockDefaultModelId: BedrockModelId;
|
|
40462
40769
|
declare const bedrockDefaultPromptRouterModelId: BedrockModelId;
|
|
40463
40770
|
declare const bedrockModels: {
|
|
40771
|
+
readonly "anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
40772
|
+
readonly maxTokens: 8192;
|
|
40773
|
+
readonly contextWindow: 200000;
|
|
40774
|
+
readonly supportsImages: true;
|
|
40775
|
+
readonly supportsComputerUse: true;
|
|
40776
|
+
readonly supportsPromptCache: true;
|
|
40777
|
+
readonly supportsReasoningBudget: true;
|
|
40778
|
+
readonly inputPrice: 3;
|
|
40779
|
+
readonly outputPrice: 15;
|
|
40780
|
+
readonly cacheWritesPrice: 3.75;
|
|
40781
|
+
readonly cacheReadsPrice: 0.3;
|
|
40782
|
+
readonly minTokensPerCachePoint: 1024;
|
|
40783
|
+
readonly maxCachePoints: 4;
|
|
40784
|
+
readonly cachableFields: ["system", "messages", "tools"];
|
|
40785
|
+
};
|
|
40464
40786
|
readonly "amazon.nova-pro-v1:0": {
|
|
40465
40787
|
readonly maxTokens: 5000;
|
|
40466
40788
|
readonly contextWindow: 300000;
|
|
@@ -40844,7 +41166,7 @@ declare const BEDROCK_REGIONS: {
|
|
|
40844
41166
|
value: string;
|
|
40845
41167
|
label: string;
|
|
40846
41168
|
}[];
|
|
40847
|
-
declare const
|
|
41169
|
+
declare const BEDROCK_1M_CONTEXT_MODEL_IDS: readonly ["anthropic.claude-sonnet-4-20250514-v1:0", "anthropic.claude-sonnet-4-5-20250929-v1:0"];
|
|
40848
41170
|
|
|
40849
41171
|
type CerebrasModelId = keyof typeof cerebrasModels;
|
|
40850
41172
|
declare const cerebrasDefaultModelId: CerebrasModelId;
|
|
@@ -40915,7 +41237,7 @@ declare const cerebrasModels: {
|
|
|
40915
41237
|
};
|
|
40916
41238
|
};
|
|
40917
41239
|
|
|
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";
|
|
41240
|
+
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" | "zai-org/GLM-4.5-turbo" | "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";
|
|
40919
41241
|
declare const chutesDefaultModelId: ChutesModelId;
|
|
40920
41242
|
declare const chutesModels: {
|
|
40921
41243
|
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
@@ -41152,6 +41474,15 @@ declare const chutesModels: {
|
|
|
41152
41474
|
readonly outputPrice: 0;
|
|
41153
41475
|
readonly description: "GLM-4.5-FP8 model with 128k token context window, optimized for agent-based applications with MoE architecture.";
|
|
41154
41476
|
};
|
|
41477
|
+
readonly "zai-org/GLM-4.5-turbo": {
|
|
41478
|
+
readonly maxTokens: 32768;
|
|
41479
|
+
readonly contextWindow: 131072;
|
|
41480
|
+
readonly supportsImages: false;
|
|
41481
|
+
readonly supportsPromptCache: false;
|
|
41482
|
+
readonly inputPrice: 1;
|
|
41483
|
+
readonly outputPrice: 3;
|
|
41484
|
+
readonly description: "GLM-4.5-turbo model with 128K token context window, optimized for fast inference.";
|
|
41485
|
+
};
|
|
41155
41486
|
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
|
|
41156
41487
|
readonly maxTokens: 32768;
|
|
41157
41488
|
readonly contextWindow: 262144;
|
|
@@ -41235,6 +41566,27 @@ declare const CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS = 16000;
|
|
|
41235
41566
|
*/
|
|
41236
41567
|
declare function getClaudeCodeModelId(baseModelId: ClaudeCodeModelId, useVertex?: boolean): string;
|
|
41237
41568
|
declare const claudeCodeModels: {
|
|
41569
|
+
readonly "claude-sonnet-4-5": {
|
|
41570
|
+
readonly supportsImages: false;
|
|
41571
|
+
readonly supportsPromptCache: true;
|
|
41572
|
+
readonly supportsReasoningEffort: false;
|
|
41573
|
+
readonly supportsReasoningBudget: false;
|
|
41574
|
+
readonly requiredReasoningBudget: false;
|
|
41575
|
+
readonly maxTokens: 64000;
|
|
41576
|
+
readonly contextWindow: 200000;
|
|
41577
|
+
readonly supportsComputerUse: true;
|
|
41578
|
+
readonly inputPrice: 3;
|
|
41579
|
+
readonly outputPrice: 15;
|
|
41580
|
+
readonly cacheWritesPrice: 3.75;
|
|
41581
|
+
readonly cacheReadsPrice: 0.3;
|
|
41582
|
+
readonly tiers: [{
|
|
41583
|
+
readonly contextWindow: 1000000;
|
|
41584
|
+
readonly inputPrice: 6;
|
|
41585
|
+
readonly outputPrice: 22.5;
|
|
41586
|
+
readonly cacheWritesPrice: 7.5;
|
|
41587
|
+
readonly cacheReadsPrice: 0.6;
|
|
41588
|
+
}];
|
|
41589
|
+
};
|
|
41238
41590
|
readonly "claude-sonnet-4-20250514": {
|
|
41239
41591
|
readonly supportsImages: false;
|
|
41240
41592
|
readonly supportsPromptCache: true;
|
|
@@ -42212,6 +42564,20 @@ declare const openAiNativeModels: {
|
|
|
42212
42564
|
readonly cacheReadsPrice: 0.0025;
|
|
42213
42565
|
}];
|
|
42214
42566
|
};
|
|
42567
|
+
readonly "gpt-5-codex": {
|
|
42568
|
+
readonly maxTokens: 128000;
|
|
42569
|
+
readonly contextWindow: 400000;
|
|
42570
|
+
readonly supportsImages: true;
|
|
42571
|
+
readonly supportsPromptCache: true;
|
|
42572
|
+
readonly supportsReasoningEffort: true;
|
|
42573
|
+
readonly reasoningEffort: "medium";
|
|
42574
|
+
readonly inputPrice: 1.25;
|
|
42575
|
+
readonly outputPrice: 10;
|
|
42576
|
+
readonly cacheReadsPrice: 0.13;
|
|
42577
|
+
readonly description: "GPT-5-Codex: A version of GPT-5 optimized for agentic coding in Codex";
|
|
42578
|
+
readonly supportsVerbosity: true;
|
|
42579
|
+
readonly supportsTemperature: false;
|
|
42580
|
+
};
|
|
42215
42581
|
readonly "gpt-4.1": {
|
|
42216
42582
|
readonly maxTokens: 32768;
|
|
42217
42583
|
readonly contextWindow: 1047576;
|
|
@@ -42511,7 +42877,7 @@ declare const qwenCodeModels: {
|
|
|
42511
42877
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
42512
42878
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
42513
42879
|
|
|
42514
|
-
type RooModelId = "xai/grok-code-fast-1";
|
|
42880
|
+
type RooModelId = "xai/grok-code-fast-1" | "roo/code-supernova-1-million" | "xai/grok-4-fast" | "deepseek/deepseek-chat-v3.1";
|
|
42515
42881
|
declare const rooDefaultModelId: RooModelId;
|
|
42516
42882
|
declare const rooModels: {
|
|
42517
42883
|
readonly "xai/grok-code-fast-1": {
|
|
@@ -42523,9 +42889,36 @@ declare const rooModels: {
|
|
|
42523
42889
|
readonly outputPrice: 0;
|
|
42524
42890
|
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
42891
|
};
|
|
42892
|
+
readonly "roo/code-supernova-1-million": {
|
|
42893
|
+
readonly maxTokens: 30000;
|
|
42894
|
+
readonly contextWindow: 1000000;
|
|
42895
|
+
readonly supportsImages: true;
|
|
42896
|
+
readonly supportsPromptCache: true;
|
|
42897
|
+
readonly inputPrice: 0;
|
|
42898
|
+
readonly outputPrice: 0;
|
|
42899
|
+
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.)";
|
|
42900
|
+
};
|
|
42901
|
+
readonly "xai/grok-4-fast": {
|
|
42902
|
+
readonly maxTokens: 30000;
|
|
42903
|
+
readonly contextWindow: 2000000;
|
|
42904
|
+
readonly supportsImages: false;
|
|
42905
|
+
readonly supportsPromptCache: false;
|
|
42906
|
+
readonly inputPrice: 0;
|
|
42907
|
+
readonly outputPrice: 0;
|
|
42908
|
+
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.)";
|
|
42909
|
+
};
|
|
42910
|
+
readonly "deepseek/deepseek-chat-v3.1": {
|
|
42911
|
+
readonly maxTokens: 16384;
|
|
42912
|
+
readonly contextWindow: 163840;
|
|
42913
|
+
readonly supportsImages: false;
|
|
42914
|
+
readonly supportsPromptCache: false;
|
|
42915
|
+
readonly inputPrice: 0;
|
|
42916
|
+
readonly outputPrice: 0;
|
|
42917
|
+
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.";
|
|
42918
|
+
};
|
|
42526
42919
|
};
|
|
42527
42920
|
|
|
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";
|
|
42921
|
+
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
42922
|
declare const sambaNovaDefaultModelId: SambaNovaModelId;
|
|
42530
42923
|
declare const sambaNovaModels: {
|
|
42531
42924
|
readonly "Meta-Llama-3.1-8B-Instruct": {
|
|
@@ -42565,6 +42958,15 @@ declare const sambaNovaModels: {
|
|
|
42565
42958
|
readonly outputPrice: 4.5;
|
|
42566
42959
|
readonly description: "DeepSeek V3 model with 32K context window.";
|
|
42567
42960
|
};
|
|
42961
|
+
readonly "DeepSeek-V3.1": {
|
|
42962
|
+
readonly maxTokens: 8192;
|
|
42963
|
+
readonly contextWindow: 32768;
|
|
42964
|
+
readonly supportsImages: false;
|
|
42965
|
+
readonly supportsPromptCache: false;
|
|
42966
|
+
readonly inputPrice: 3;
|
|
42967
|
+
readonly outputPrice: 4.5;
|
|
42968
|
+
readonly description: "DeepSeek V3.1 model with 32K context window.";
|
|
42969
|
+
};
|
|
42568
42970
|
readonly "DeepSeek-R1-Distill-Llama-70B": {
|
|
42569
42971
|
readonly maxTokens: 8192;
|
|
42570
42972
|
readonly contextWindow: 131072;
|
|
@@ -42601,6 +43003,15 @@ declare const sambaNovaModels: {
|
|
|
42601
43003
|
readonly outputPrice: 0.8;
|
|
42602
43004
|
readonly description: "Alibaba Qwen 3 32B model with 8K context window.";
|
|
42603
43005
|
};
|
|
43006
|
+
readonly "gpt-oss-120b": {
|
|
43007
|
+
readonly maxTokens: 8192;
|
|
43008
|
+
readonly contextWindow: 131072;
|
|
43009
|
+
readonly supportsImages: false;
|
|
43010
|
+
readonly supportsPromptCache: false;
|
|
43011
|
+
readonly inputPrice: 0.22;
|
|
43012
|
+
readonly outputPrice: 0.59;
|
|
43013
|
+
readonly description: "OpenAI gpt oss 120b model with 128k context window.";
|
|
43014
|
+
};
|
|
42604
43015
|
};
|
|
42605
43016
|
|
|
42606
43017
|
declare const unboundDefaultModelId = "anthropic/claude-3-7-sonnet-20250219";
|
|
@@ -42775,6 +43186,18 @@ declare const vertexModels: {
|
|
|
42775
43186
|
readonly cacheReadsPrice: 0.3;
|
|
42776
43187
|
readonly supportsReasoningBudget: true;
|
|
42777
43188
|
};
|
|
43189
|
+
readonly "claude-sonnet-4-5@20250929": {
|
|
43190
|
+
readonly maxTokens: 8192;
|
|
43191
|
+
readonly contextWindow: 200000;
|
|
43192
|
+
readonly supportsImages: true;
|
|
43193
|
+
readonly supportsComputerUse: true;
|
|
43194
|
+
readonly supportsPromptCache: true;
|
|
43195
|
+
readonly inputPrice: 3;
|
|
43196
|
+
readonly outputPrice: 15;
|
|
43197
|
+
readonly cacheWritesPrice: 3.75;
|
|
43198
|
+
readonly cacheReadsPrice: 0.3;
|
|
43199
|
+
readonly supportsReasoningBudget: true;
|
|
43200
|
+
};
|
|
42778
43201
|
readonly "claude-opus-4-1@20250805": {
|
|
42779
43202
|
readonly maxTokens: 8192;
|
|
42780
43203
|
readonly contextWindow: 200000;
|
|
@@ -43262,6 +43685,17 @@ declare const internationalZAiModels: {
|
|
|
43262
43685
|
readonly cacheReadsPrice: 0.03;
|
|
43263
43686
|
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
43687
|
};
|
|
43688
|
+
readonly "glm-4.6": {
|
|
43689
|
+
readonly maxTokens: 98304;
|
|
43690
|
+
readonly contextWindow: 204800;
|
|
43691
|
+
readonly supportsImages: false;
|
|
43692
|
+
readonly supportsPromptCache: true;
|
|
43693
|
+
readonly inputPrice: 0.6;
|
|
43694
|
+
readonly outputPrice: 2.2;
|
|
43695
|
+
readonly cacheWritesPrice: 0;
|
|
43696
|
+
readonly cacheReadsPrice: 0.11;
|
|
43697
|
+
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.";
|
|
43698
|
+
};
|
|
43265
43699
|
};
|
|
43266
43700
|
type MainlandZAiModelId = keyof typeof mainlandZAiModels;
|
|
43267
43701
|
declare const mainlandZAiDefaultModelId: MainlandZAiModelId;
|
|
@@ -43320,6 +43754,38 @@ declare const mainlandZAiModels: {
|
|
|
43320
43754
|
readonly cacheReadsPrice: 0.02;
|
|
43321
43755
|
}];
|
|
43322
43756
|
};
|
|
43757
|
+
readonly "glm-4.6": {
|
|
43758
|
+
readonly maxTokens: 98304;
|
|
43759
|
+
readonly contextWindow: 204800;
|
|
43760
|
+
readonly supportsImages: false;
|
|
43761
|
+
readonly supportsPromptCache: true;
|
|
43762
|
+
readonly inputPrice: 0.29;
|
|
43763
|
+
readonly outputPrice: 1.14;
|
|
43764
|
+
readonly cacheWritesPrice: 0;
|
|
43765
|
+
readonly cacheReadsPrice: 0.057;
|
|
43766
|
+
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.";
|
|
43767
|
+
readonly tiers: [{
|
|
43768
|
+
readonly contextWindow: 32000;
|
|
43769
|
+
readonly inputPrice: 0.21;
|
|
43770
|
+
readonly outputPrice: 1;
|
|
43771
|
+
readonly cacheReadsPrice: 0.043;
|
|
43772
|
+
}, {
|
|
43773
|
+
readonly contextWindow: 128000;
|
|
43774
|
+
readonly inputPrice: 0.29;
|
|
43775
|
+
readonly outputPrice: 1.14;
|
|
43776
|
+
readonly cacheReadsPrice: 0.057;
|
|
43777
|
+
}, {
|
|
43778
|
+
readonly contextWindow: 200000;
|
|
43779
|
+
readonly inputPrice: 0.29;
|
|
43780
|
+
readonly outputPrice: 1.14;
|
|
43781
|
+
readonly cacheReadsPrice: 0.057;
|
|
43782
|
+
}, {
|
|
43783
|
+
readonly contextWindow: number;
|
|
43784
|
+
readonly inputPrice: 0.29;
|
|
43785
|
+
readonly outputPrice: 1.14;
|
|
43786
|
+
readonly cacheReadsPrice: 0.057;
|
|
43787
|
+
}];
|
|
43788
|
+
};
|
|
43323
43789
|
};
|
|
43324
43790
|
declare const ZAI_DEFAULT_TEMPERATURE = 0;
|
|
43325
43791
|
declare const zaiApiLineConfigs: {
|
|
@@ -43348,4 +43814,4 @@ declare const zaiApiLineConfigs: {
|
|
|
43348
43814
|
declare const deepInfraDefaultModelId = "Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo";
|
|
43349
43815
|
declare const deepInfraDefaultModelInfo: ModelInfo;
|
|
43350
43816
|
|
|
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,
|
|
43817
|
+
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 };
|