@roo-code/types 1.30.0 → 1.31.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 +44 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +533 -199
- package/dist/index.d.ts +533 -199
- package/dist/index.js +41 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2020,11 +2020,11 @@ declare const providerSettingsEntrySchema: z.ZodObject<{
|
|
|
2020
2020
|
}, "strip", z.ZodTypeAny, {
|
|
2021
2021
|
name: string;
|
|
2022
2022
|
id: string;
|
|
2023
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
2023
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
2024
2024
|
}, {
|
|
2025
2025
|
name: string;
|
|
2026
2026
|
id: string;
|
|
2027
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
2027
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
2028
2028
|
}>;
|
|
2029
2029
|
type ProviderSettingsEntry = z.infer<typeof providerSettingsEntrySchema>;
|
|
2030
2030
|
declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiProvider", [z.ZodObject<{
|
|
@@ -3262,6 +3262,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3262
3262
|
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3263
3263
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
3264
3264
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3265
|
+
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
3265
3266
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3266
3267
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3267
3268
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3449,12 +3450,13 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3449
3450
|
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
3450
3451
|
}, "strip", z.ZodTypeAny, {
|
|
3451
3452
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3453
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3454
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3452
3455
|
codeIndexOpenAiKey?: string | undefined;
|
|
3453
3456
|
codeIndexQdrantApiKey?: string | undefined;
|
|
3454
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3455
3457
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3456
|
-
|
|
3457
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
3458
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3459
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3458
3460
|
includeMaxTokens?: boolean | undefined;
|
|
3459
3461
|
diffEnabled?: boolean | undefined;
|
|
3460
3462
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -3564,12 +3566,13 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3564
3566
|
litellmModelId?: string | undefined;
|
|
3565
3567
|
}, {
|
|
3566
3568
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3569
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3570
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3567
3571
|
codeIndexOpenAiKey?: string | undefined;
|
|
3568
3572
|
codeIndexQdrantApiKey?: string | undefined;
|
|
3569
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3570
3573
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3571
|
-
|
|
3572
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
3574
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3575
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3573
3576
|
includeMaxTokens?: boolean | undefined;
|
|
3574
3577
|
diffEnabled?: boolean | undefined;
|
|
3575
3578
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -3679,7 +3682,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3679
3682
|
litellmModelId?: string | undefined;
|
|
3680
3683
|
}>;
|
|
3681
3684
|
type ProviderSettings = z.infer<typeof providerSettingsSchema>;
|
|
3682
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "
|
|
3685
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "claudeCodePath", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
|
|
3683
3686
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
3684
3687
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
3685
3688
|
|
|
@@ -3695,11 +3698,11 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3695
3698
|
}, "strip", z.ZodTypeAny, {
|
|
3696
3699
|
name: string;
|
|
3697
3700
|
id: string;
|
|
3698
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
3701
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3699
3702
|
}, {
|
|
3700
3703
|
name: string;
|
|
3701
3704
|
id: string;
|
|
3702
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
3705
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3703
3706
|
}>, "many">>;
|
|
3704
3707
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3705
3708
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -3759,6 +3762,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3759
3762
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
3760
3763
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
3761
3764
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
3765
|
+
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
3762
3766
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3763
3767
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3764
3768
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3824,6 +3828,13 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3824
3828
|
}, {
|
|
3825
3829
|
dimension: number;
|
|
3826
3830
|
}>>>;
|
|
3831
|
+
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3832
|
+
dimension: z.ZodNumber;
|
|
3833
|
+
}, "strip", z.ZodTypeAny, {
|
|
3834
|
+
dimension: number;
|
|
3835
|
+
}, {
|
|
3836
|
+
dimension: number;
|
|
3837
|
+
}>>>;
|
|
3827
3838
|
}, "strip", z.ZodTypeAny, {
|
|
3828
3839
|
openai?: Record<string, {
|
|
3829
3840
|
dimension: number;
|
|
@@ -3834,6 +3845,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3834
3845
|
"openai-compatible"?: Record<string, {
|
|
3835
3846
|
dimension: number;
|
|
3836
3847
|
}> | undefined;
|
|
3848
|
+
gemini?: Record<string, {
|
|
3849
|
+
dimension: number;
|
|
3850
|
+
}> | undefined;
|
|
3837
3851
|
}, {
|
|
3838
3852
|
openai?: Record<string, {
|
|
3839
3853
|
dimension: number;
|
|
@@ -3844,28 +3858,43 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3844
3858
|
"openai-compatible"?: Record<string, {
|
|
3845
3859
|
dimension: number;
|
|
3846
3860
|
}> | undefined;
|
|
3861
|
+
gemini?: Record<string, {
|
|
3862
|
+
dimension: number;
|
|
3863
|
+
}> | undefined;
|
|
3847
3864
|
}>>;
|
|
3848
3865
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
3849
3866
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3850
3867
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
3851
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
3868
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
3852
3869
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3853
3870
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
3871
|
+
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3854
3872
|
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
3873
|
+
codebaseIndexSearchMaxResults: z.ZodOptional<z.ZodNumber>;
|
|
3874
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3875
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3855
3876
|
}, "strip", z.ZodTypeAny, {
|
|
3856
3877
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3857
3878
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3858
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3879
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
3859
3880
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3860
3881
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3882
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
3861
3883
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
3884
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
3885
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3886
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3862
3887
|
}, {
|
|
3863
3888
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3864
3889
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3865
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3890
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
3866
3891
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3867
3892
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3893
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
3868
3894
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
3895
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
3896
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3897
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3869
3898
|
}>>;
|
|
3870
3899
|
language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
|
|
3871
3900
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -3969,7 +3998,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3969
3998
|
listApiConfigMeta?: {
|
|
3970
3999
|
name: string;
|
|
3971
4000
|
id: string;
|
|
3972
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
4001
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3973
4002
|
}[] | undefined;
|
|
3974
4003
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
3975
4004
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4004,6 +4033,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4004
4033
|
alwaysAllowExecute?: boolean | undefined;
|
|
4005
4034
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
4006
4035
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
4036
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
4007
4037
|
allowedCommands?: string[] | undefined;
|
|
4008
4038
|
allowedMaxRequests?: number | null | undefined;
|
|
4009
4039
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -4048,14 +4078,21 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4048
4078
|
"openai-compatible"?: Record<string, {
|
|
4049
4079
|
dimension: number;
|
|
4050
4080
|
}> | undefined;
|
|
4081
|
+
gemini?: Record<string, {
|
|
4082
|
+
dimension: number;
|
|
4083
|
+
}> | undefined;
|
|
4051
4084
|
} | undefined;
|
|
4052
4085
|
codebaseIndexConfig?: {
|
|
4053
4086
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4054
4087
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4055
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4088
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4056
4089
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4057
4090
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4091
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
4058
4092
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
4093
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
4094
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4095
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4059
4096
|
} | undefined;
|
|
4060
4097
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
4061
4098
|
mcpEnabled?: boolean | undefined;
|
|
@@ -4098,7 +4135,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4098
4135
|
listApiConfigMeta?: {
|
|
4099
4136
|
name: string;
|
|
4100
4137
|
id: string;
|
|
4101
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
4138
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4102
4139
|
}[] | undefined;
|
|
4103
4140
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4104
4141
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4133,6 +4170,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4133
4170
|
alwaysAllowExecute?: boolean | undefined;
|
|
4134
4171
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
4135
4172
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
4173
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
4136
4174
|
allowedCommands?: string[] | undefined;
|
|
4137
4175
|
allowedMaxRequests?: number | null | undefined;
|
|
4138
4176
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -4177,14 +4215,21 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4177
4215
|
"openai-compatible"?: Record<string, {
|
|
4178
4216
|
dimension: number;
|
|
4179
4217
|
}> | undefined;
|
|
4218
|
+
gemini?: Record<string, {
|
|
4219
|
+
dimension: number;
|
|
4220
|
+
}> | undefined;
|
|
4180
4221
|
} | undefined;
|
|
4181
4222
|
codebaseIndexConfig?: {
|
|
4182
4223
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4183
4224
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4184
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4225
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4185
4226
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4186
4227
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4228
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
4187
4229
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
4230
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
4231
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4232
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4188
4233
|
} | undefined;
|
|
4189
4234
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
4190
4235
|
mcpEnabled?: boolean | undefined;
|
|
@@ -4205,7 +4250,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4205
4250
|
lastModeImportPath?: string | undefined;
|
|
4206
4251
|
}>;
|
|
4207
4252
|
type GlobalSettings = z.infer<typeof globalSettingsSchema>;
|
|
4208
|
-
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "allowedCommands", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
|
|
4253
|
+
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
|
|
4209
4254
|
/**
|
|
4210
4255
|
* RooCodeSettings
|
|
4211
4256
|
*/
|
|
@@ -4215,6 +4260,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4215
4260
|
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4216
4261
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
4217
4262
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
4263
|
+
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
4218
4264
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
4219
4265
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4220
4266
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4406,11 +4452,11 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4406
4452
|
}, "strip", z.ZodTypeAny, {
|
|
4407
4453
|
name: string;
|
|
4408
4454
|
id: string;
|
|
4409
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
4455
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4410
4456
|
}, {
|
|
4411
4457
|
name: string;
|
|
4412
4458
|
id: string;
|
|
4413
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
4459
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4414
4460
|
}>, "many">>;
|
|
4415
4461
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4416
4462
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -4470,6 +4516,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4470
4516
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
4471
4517
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
4472
4518
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
4519
|
+
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
4473
4520
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4474
4521
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4475
4522
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4535,6 +4582,13 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4535
4582
|
}, {
|
|
4536
4583
|
dimension: number;
|
|
4537
4584
|
}>>>;
|
|
4585
|
+
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4586
|
+
dimension: z.ZodNumber;
|
|
4587
|
+
}, "strip", z.ZodTypeAny, {
|
|
4588
|
+
dimension: number;
|
|
4589
|
+
}, {
|
|
4590
|
+
dimension: number;
|
|
4591
|
+
}>>>;
|
|
4538
4592
|
}, "strip", z.ZodTypeAny, {
|
|
4539
4593
|
openai?: Record<string, {
|
|
4540
4594
|
dimension: number;
|
|
@@ -4545,6 +4599,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4545
4599
|
"openai-compatible"?: Record<string, {
|
|
4546
4600
|
dimension: number;
|
|
4547
4601
|
}> | undefined;
|
|
4602
|
+
gemini?: Record<string, {
|
|
4603
|
+
dimension: number;
|
|
4604
|
+
}> | undefined;
|
|
4548
4605
|
}, {
|
|
4549
4606
|
openai?: Record<string, {
|
|
4550
4607
|
dimension: number;
|
|
@@ -4555,28 +4612,43 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4555
4612
|
"openai-compatible"?: Record<string, {
|
|
4556
4613
|
dimension: number;
|
|
4557
4614
|
}> | undefined;
|
|
4615
|
+
gemini?: Record<string, {
|
|
4616
|
+
dimension: number;
|
|
4617
|
+
}> | undefined;
|
|
4558
4618
|
}>>;
|
|
4559
4619
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
4560
4620
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4561
4621
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
4562
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
4622
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
4563
4623
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4564
4624
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
4625
|
+
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
4565
4626
|
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
4627
|
+
codebaseIndexSearchMaxResults: z.ZodOptional<z.ZodNumber>;
|
|
4628
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4629
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
4566
4630
|
}, "strip", z.ZodTypeAny, {
|
|
4567
4631
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4568
4632
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4569
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4633
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4570
4634
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4571
4635
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4636
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
4572
4637
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
4638
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
4639
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4640
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4573
4641
|
}, {
|
|
4574
4642
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4575
4643
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4576
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4644
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4577
4645
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4578
4646
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4647
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
4579
4648
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
4649
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
4650
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4651
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4580
4652
|
}>>;
|
|
4581
4653
|
language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
|
|
4582
4654
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -4658,12 +4730,13 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4658
4730
|
lastModeImportPath: z.ZodOptional<z.ZodString>;
|
|
4659
4731
|
}, "strip", z.ZodTypeAny, {
|
|
4660
4732
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
4733
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4734
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4661
4735
|
codeIndexOpenAiKey?: string | undefined;
|
|
4662
4736
|
codeIndexQdrantApiKey?: string | undefined;
|
|
4663
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4664
4737
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4665
|
-
|
|
4666
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
4738
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
4739
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4667
4740
|
includeMaxTokens?: boolean | undefined;
|
|
4668
4741
|
diffEnabled?: boolean | undefined;
|
|
4669
4742
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -4791,7 +4864,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4791
4864
|
listApiConfigMeta?: {
|
|
4792
4865
|
name: string;
|
|
4793
4866
|
id: string;
|
|
4794
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
4867
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4795
4868
|
}[] | undefined;
|
|
4796
4869
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4797
4870
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4826,6 +4899,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4826
4899
|
alwaysAllowExecute?: boolean | undefined;
|
|
4827
4900
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
4828
4901
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
4902
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
4829
4903
|
allowedCommands?: string[] | undefined;
|
|
4830
4904
|
allowedMaxRequests?: number | null | undefined;
|
|
4831
4905
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -4870,14 +4944,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4870
4944
|
"openai-compatible"?: Record<string, {
|
|
4871
4945
|
dimension: number;
|
|
4872
4946
|
}> | undefined;
|
|
4947
|
+
gemini?: Record<string, {
|
|
4948
|
+
dimension: number;
|
|
4949
|
+
}> | undefined;
|
|
4873
4950
|
} | undefined;
|
|
4874
4951
|
codebaseIndexConfig?: {
|
|
4875
4952
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4876
4953
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4877
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4954
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4878
4955
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4879
4956
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4957
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
4880
4958
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
4959
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
4960
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4961
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4881
4962
|
} | undefined;
|
|
4882
4963
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
4883
4964
|
mcpEnabled?: boolean | undefined;
|
|
@@ -4898,12 +4979,13 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4898
4979
|
lastModeImportPath?: string | undefined;
|
|
4899
4980
|
}, {
|
|
4900
4981
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
4982
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4983
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4901
4984
|
codeIndexOpenAiKey?: string | undefined;
|
|
4902
4985
|
codeIndexQdrantApiKey?: string | undefined;
|
|
4903
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4904
4986
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4905
|
-
|
|
4906
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
4987
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
4988
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4907
4989
|
includeMaxTokens?: boolean | undefined;
|
|
4908
4990
|
diffEnabled?: boolean | undefined;
|
|
4909
4991
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -5031,7 +5113,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5031
5113
|
listApiConfigMeta?: {
|
|
5032
5114
|
name: string;
|
|
5033
5115
|
id: string;
|
|
5034
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
5116
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5035
5117
|
}[] | undefined;
|
|
5036
5118
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
5037
5119
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -5066,6 +5148,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5066
5148
|
alwaysAllowExecute?: boolean | undefined;
|
|
5067
5149
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
5068
5150
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
5151
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
5069
5152
|
allowedCommands?: string[] | undefined;
|
|
5070
5153
|
allowedMaxRequests?: number | null | undefined;
|
|
5071
5154
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -5110,14 +5193,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5110
5193
|
"openai-compatible"?: Record<string, {
|
|
5111
5194
|
dimension: number;
|
|
5112
5195
|
}> | undefined;
|
|
5196
|
+
gemini?: Record<string, {
|
|
5197
|
+
dimension: number;
|
|
5198
|
+
}> | undefined;
|
|
5113
5199
|
} | undefined;
|
|
5114
5200
|
codebaseIndexConfig?: {
|
|
5115
5201
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5116
5202
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5117
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
5203
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5118
5204
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5119
5205
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5206
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
5120
5207
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
5208
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
5209
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
5210
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
5121
5211
|
} | undefined;
|
|
5122
5212
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
5123
5213
|
mcpEnabled?: boolean | undefined;
|
|
@@ -5141,7 +5231,7 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
5141
5231
|
/**
|
|
5142
5232
|
* SecretState
|
|
5143
5233
|
*/
|
|
5144
|
-
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "deepSeekApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey"];
|
|
5234
|
+
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "deepSeekApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey"];
|
|
5145
5235
|
type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
|
|
5146
5236
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
5147
5237
|
/**
|
|
@@ -5219,8 +5309,8 @@ type ClineAsk = z.infer<typeof clineAskSchema>;
|
|
|
5219
5309
|
* - `condense_context_error`: Error occurred during context condensation
|
|
5220
5310
|
* - `codebase_search_result`: Results from searching the codebase
|
|
5221
5311
|
*/
|
|
5222
|
-
declare const clineSays: readonly ["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"];
|
|
5223
|
-
declare const clineSaySchema: z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"]>;
|
|
5312
|
+
declare const clineSays: readonly ["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"];
|
|
5313
|
+
declare const clineSaySchema: z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>;
|
|
5224
5314
|
type ClineSay = z.infer<typeof clineSaySchema>;
|
|
5225
5315
|
/**
|
|
5226
5316
|
* ToolProgressStatus
|
|
@@ -5263,7 +5353,7 @@ declare const clineMessageSchema: z.ZodObject<{
|
|
|
5263
5353
|
ts: z.ZodNumber;
|
|
5264
5354
|
type: z.ZodUnion<[z.ZodLiteral<"ask">, z.ZodLiteral<"say">]>;
|
|
5265
5355
|
ask: z.ZodOptional<z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>>;
|
|
5266
|
-
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"]>>;
|
|
5356
|
+
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>>;
|
|
5267
5357
|
text: z.ZodOptional<z.ZodString>;
|
|
5268
5358
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5269
5359
|
partial: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5304,7 +5394,7 @@ declare const clineMessageSchema: z.ZodObject<{
|
|
|
5304
5394
|
partial?: boolean | undefined;
|
|
5305
5395
|
text?: string | undefined;
|
|
5306
5396
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5307
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5397
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5308
5398
|
images?: string[] | undefined;
|
|
5309
5399
|
conversationHistoryIndex?: number | undefined;
|
|
5310
5400
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5326,7 +5416,7 @@ declare const clineMessageSchema: z.ZodObject<{
|
|
|
5326
5416
|
partial?: boolean | undefined;
|
|
5327
5417
|
text?: string | undefined;
|
|
5328
5418
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5329
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5419
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5330
5420
|
images?: string[] | undefined;
|
|
5331
5421
|
conversationHistoryIndex?: number | undefined;
|
|
5332
5422
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5379,13 +5469,13 @@ type ToolGroup = z.infer<typeof toolGroupsSchema>;
|
|
|
5379
5469
|
/**
|
|
5380
5470
|
* ToolName
|
|
5381
5471
|
*/
|
|
5382
|
-
declare const toolNames: readonly ["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"];
|
|
5383
|
-
declare const toolNamesSchema: z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>;
|
|
5472
|
+
declare const toolNames: readonly ["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"];
|
|
5473
|
+
declare const toolNamesSchema: z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>;
|
|
5384
5474
|
type ToolName = z.infer<typeof toolNamesSchema>;
|
|
5385
5475
|
/**
|
|
5386
5476
|
* ToolUsage
|
|
5387
5477
|
*/
|
|
5388
|
-
declare const toolUsageSchema: z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>, z.ZodObject<{
|
|
5478
|
+
declare const toolUsageSchema: z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>, z.ZodObject<{
|
|
5389
5479
|
attempts: z.ZodNumber;
|
|
5390
5480
|
failures: z.ZodNumber;
|
|
5391
5481
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5435,7 +5525,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5435
5525
|
ts: z.ZodNumber;
|
|
5436
5526
|
type: z.ZodUnion<[z.ZodLiteral<"ask">, z.ZodLiteral<"say">]>;
|
|
5437
5527
|
ask: z.ZodOptional<z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>>;
|
|
5438
|
-
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"]>>;
|
|
5528
|
+
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>>;
|
|
5439
5529
|
text: z.ZodOptional<z.ZodString>;
|
|
5440
5530
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5441
5531
|
partial: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5476,7 +5566,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5476
5566
|
partial?: boolean | undefined;
|
|
5477
5567
|
text?: string | undefined;
|
|
5478
5568
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5479
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5569
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5480
5570
|
images?: string[] | undefined;
|
|
5481
5571
|
conversationHistoryIndex?: number | undefined;
|
|
5482
5572
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5498,7 +5588,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5498
5588
|
partial?: boolean | undefined;
|
|
5499
5589
|
text?: string | undefined;
|
|
5500
5590
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5501
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5591
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5502
5592
|
images?: string[] | undefined;
|
|
5503
5593
|
conversationHistoryIndex?: number | undefined;
|
|
5504
5594
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5522,7 +5612,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5522
5612
|
partial?: boolean | undefined;
|
|
5523
5613
|
text?: string | undefined;
|
|
5524
5614
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5525
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5615
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5526
5616
|
images?: string[] | undefined;
|
|
5527
5617
|
conversationHistoryIndex?: number | undefined;
|
|
5528
5618
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5548,7 +5638,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5548
5638
|
partial?: boolean | undefined;
|
|
5549
5639
|
text?: string | undefined;
|
|
5550
5640
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5551
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5641
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5552
5642
|
images?: string[] | undefined;
|
|
5553
5643
|
conversationHistoryIndex?: number | undefined;
|
|
5554
5644
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5596,7 +5686,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5596
5686
|
contextTokens: number;
|
|
5597
5687
|
totalCacheWrites?: number | undefined;
|
|
5598
5688
|
totalCacheReads?: number | undefined;
|
|
5599
|
-
}>, z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>, z.ZodObject<{
|
|
5689
|
+
}>, z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>, z.ZodObject<{
|
|
5600
5690
|
attempts: z.ZodNumber;
|
|
5601
5691
|
failures: z.ZodNumber;
|
|
5602
5692
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5634,7 +5724,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5634
5724
|
totalCacheWrites?: number | undefined;
|
|
5635
5725
|
totalCacheReads?: number | undefined;
|
|
5636
5726
|
}>], null>;
|
|
5637
|
-
taskToolFailed: z.ZodTuple<[z.ZodString, z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>, z.ZodString], null>;
|
|
5727
|
+
taskToolFailed: z.ZodTuple<[z.ZodString, z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>, z.ZodString], null>;
|
|
5638
5728
|
}, "strip", z.ZodTypeAny, {
|
|
5639
5729
|
message: [{
|
|
5640
5730
|
message: {
|
|
@@ -5644,7 +5734,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5644
5734
|
partial?: boolean | undefined;
|
|
5645
5735
|
text?: string | undefined;
|
|
5646
5736
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5647
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5737
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5648
5738
|
images?: string[] | undefined;
|
|
5649
5739
|
conversationHistoryIndex?: number | undefined;
|
|
5650
5740
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5678,7 +5768,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5678
5768
|
contextTokens: number;
|
|
5679
5769
|
totalCacheWrites?: number | undefined;
|
|
5680
5770
|
totalCacheReads?: number | undefined;
|
|
5681
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
5771
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
5682
5772
|
attempts: number;
|
|
5683
5773
|
failures: number;
|
|
5684
5774
|
}>>, {
|
|
@@ -5692,7 +5782,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5692
5782
|
totalCacheWrites?: number | undefined;
|
|
5693
5783
|
totalCacheReads?: number | undefined;
|
|
5694
5784
|
}];
|
|
5695
|
-
taskToolFailed: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
5785
|
+
taskToolFailed: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
5696
5786
|
}, {
|
|
5697
5787
|
message: [{
|
|
5698
5788
|
message: {
|
|
@@ -5702,7 +5792,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5702
5792
|
partial?: boolean | undefined;
|
|
5703
5793
|
text?: string | undefined;
|
|
5704
5794
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
5705
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
5795
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
5706
5796
|
images?: string[] | undefined;
|
|
5707
5797
|
conversationHistoryIndex?: number | undefined;
|
|
5708
5798
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -5736,7 +5826,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5736
5826
|
contextTokens: number;
|
|
5737
5827
|
totalCacheWrites?: number | undefined;
|
|
5738
5828
|
totalCacheReads?: number | undefined;
|
|
5739
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
5829
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
5740
5830
|
attempts: number;
|
|
5741
5831
|
failures: number;
|
|
5742
5832
|
}>>, {
|
|
@@ -5750,7 +5840,7 @@ declare const rooCodeEventsSchema: z.ZodObject<{
|
|
|
5750
5840
|
totalCacheWrites?: number | undefined;
|
|
5751
5841
|
totalCacheReads?: number | undefined;
|
|
5752
5842
|
}];
|
|
5753
|
-
taskToolFailed: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
5843
|
+
taskToolFailed: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
5754
5844
|
}>;
|
|
5755
5845
|
type RooCodeEvents = z.infer<typeof rooCodeEventsSchema>;
|
|
5756
5846
|
/**
|
|
@@ -5787,6 +5877,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5787
5877
|
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5788
5878
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
5789
5879
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
5880
|
+
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
5790
5881
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
5791
5882
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5792
5883
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5978,11 +6069,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5978
6069
|
}, "strip", z.ZodTypeAny, {
|
|
5979
6070
|
name: string;
|
|
5980
6071
|
id: string;
|
|
5981
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6072
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5982
6073
|
}, {
|
|
5983
6074
|
name: string;
|
|
5984
6075
|
id: string;
|
|
5985
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6076
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5986
6077
|
}>, "many">>;
|
|
5987
6078
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
5988
6079
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6042,6 +6133,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6042
6133
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
6043
6134
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
6044
6135
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
6136
|
+
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
6045
6137
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6046
6138
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6047
6139
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6107,6 +6199,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6107
6199
|
}, {
|
|
6108
6200
|
dimension: number;
|
|
6109
6201
|
}>>>;
|
|
6202
|
+
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6203
|
+
dimension: z.ZodNumber;
|
|
6204
|
+
}, "strip", z.ZodTypeAny, {
|
|
6205
|
+
dimension: number;
|
|
6206
|
+
}, {
|
|
6207
|
+
dimension: number;
|
|
6208
|
+
}>>>;
|
|
6110
6209
|
}, "strip", z.ZodTypeAny, {
|
|
6111
6210
|
openai?: Record<string, {
|
|
6112
6211
|
dimension: number;
|
|
@@ -6117,6 +6216,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6117
6216
|
"openai-compatible"?: Record<string, {
|
|
6118
6217
|
dimension: number;
|
|
6119
6218
|
}> | undefined;
|
|
6219
|
+
gemini?: Record<string, {
|
|
6220
|
+
dimension: number;
|
|
6221
|
+
}> | undefined;
|
|
6120
6222
|
}, {
|
|
6121
6223
|
openai?: Record<string, {
|
|
6122
6224
|
dimension: number;
|
|
@@ -6127,28 +6229,43 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6127
6229
|
"openai-compatible"?: Record<string, {
|
|
6128
6230
|
dimension: number;
|
|
6129
6231
|
}> | undefined;
|
|
6232
|
+
gemini?: Record<string, {
|
|
6233
|
+
dimension: number;
|
|
6234
|
+
}> | undefined;
|
|
6130
6235
|
}>>;
|
|
6131
6236
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
6132
6237
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6133
6238
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
6134
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
6239
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
6135
6240
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6136
6241
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
6242
|
+
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
6137
6243
|
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
6244
|
+
codebaseIndexSearchMaxResults: z.ZodOptional<z.ZodNumber>;
|
|
6245
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6246
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
6138
6247
|
}, "strip", z.ZodTypeAny, {
|
|
6139
6248
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6140
6249
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6141
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6250
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6142
6251
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6143
6252
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6253
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
6144
6254
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
6255
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
6256
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6257
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6145
6258
|
}, {
|
|
6146
6259
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6147
6260
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6148
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6261
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6149
6262
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6150
6263
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6264
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
6151
6265
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
6266
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
6267
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6268
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6152
6269
|
}>>;
|
|
6153
6270
|
language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
|
|
6154
6271
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -6230,12 +6347,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6230
6347
|
lastModeImportPath: z.ZodOptional<z.ZodString>;
|
|
6231
6348
|
}, "strip", z.ZodTypeAny, {
|
|
6232
6349
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6350
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6351
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6233
6352
|
codeIndexOpenAiKey?: string | undefined;
|
|
6234
6353
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6235
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6236
6354
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6237
|
-
|
|
6238
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6355
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
6356
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6239
6357
|
includeMaxTokens?: boolean | undefined;
|
|
6240
6358
|
diffEnabled?: boolean | undefined;
|
|
6241
6359
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -6363,7 +6481,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6363
6481
|
listApiConfigMeta?: {
|
|
6364
6482
|
name: string;
|
|
6365
6483
|
id: string;
|
|
6366
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6484
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6367
6485
|
}[] | undefined;
|
|
6368
6486
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6369
6487
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6398,6 +6516,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6398
6516
|
alwaysAllowExecute?: boolean | undefined;
|
|
6399
6517
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
6400
6518
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
6519
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
6401
6520
|
allowedCommands?: string[] | undefined;
|
|
6402
6521
|
allowedMaxRequests?: number | null | undefined;
|
|
6403
6522
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -6442,14 +6561,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6442
6561
|
"openai-compatible"?: Record<string, {
|
|
6443
6562
|
dimension: number;
|
|
6444
6563
|
}> | undefined;
|
|
6564
|
+
gemini?: Record<string, {
|
|
6565
|
+
dimension: number;
|
|
6566
|
+
}> | undefined;
|
|
6445
6567
|
} | undefined;
|
|
6446
6568
|
codebaseIndexConfig?: {
|
|
6447
6569
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6448
6570
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6449
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6571
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6450
6572
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6451
6573
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6574
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
6452
6575
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
6576
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
6577
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6578
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6453
6579
|
} | undefined;
|
|
6454
6580
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
6455
6581
|
mcpEnabled?: boolean | undefined;
|
|
@@ -6470,12 +6596,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6470
6596
|
lastModeImportPath?: string | undefined;
|
|
6471
6597
|
}, {
|
|
6472
6598
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6599
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6600
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6473
6601
|
codeIndexOpenAiKey?: string | undefined;
|
|
6474
6602
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6475
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6476
6603
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6477
|
-
|
|
6478
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6604
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
6605
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6479
6606
|
includeMaxTokens?: boolean | undefined;
|
|
6480
6607
|
diffEnabled?: boolean | undefined;
|
|
6481
6608
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -6603,7 +6730,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6603
6730
|
listApiConfigMeta?: {
|
|
6604
6731
|
name: string;
|
|
6605
6732
|
id: string;
|
|
6606
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6733
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6607
6734
|
}[] | undefined;
|
|
6608
6735
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6609
6736
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6638,6 +6765,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6638
6765
|
alwaysAllowExecute?: boolean | undefined;
|
|
6639
6766
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
6640
6767
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
6768
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
6641
6769
|
allowedCommands?: string[] | undefined;
|
|
6642
6770
|
allowedMaxRequests?: number | null | undefined;
|
|
6643
6771
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -6682,14 +6810,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6682
6810
|
"openai-compatible"?: Record<string, {
|
|
6683
6811
|
dimension: number;
|
|
6684
6812
|
}> | undefined;
|
|
6813
|
+
gemini?: Record<string, {
|
|
6814
|
+
dimension: number;
|
|
6815
|
+
}> | undefined;
|
|
6685
6816
|
} | undefined;
|
|
6686
6817
|
codebaseIndexConfig?: {
|
|
6687
6818
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6688
6819
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6689
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6820
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6690
6821
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6691
6822
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6823
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
6692
6824
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
6825
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
6826
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6827
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6693
6828
|
} | undefined;
|
|
6694
6829
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
6695
6830
|
mcpEnabled?: boolean | undefined;
|
|
@@ -6716,12 +6851,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6716
6851
|
text: string;
|
|
6717
6852
|
configuration: {
|
|
6718
6853
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6854
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6855
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6719
6856
|
codeIndexOpenAiKey?: string | undefined;
|
|
6720
6857
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6721
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6722
6858
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6723
|
-
|
|
6724
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6859
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
6860
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6725
6861
|
includeMaxTokens?: boolean | undefined;
|
|
6726
6862
|
diffEnabled?: boolean | undefined;
|
|
6727
6863
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -6849,7 +6985,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6849
6985
|
listApiConfigMeta?: {
|
|
6850
6986
|
name: string;
|
|
6851
6987
|
id: string;
|
|
6852
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
6988
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6853
6989
|
}[] | undefined;
|
|
6854
6990
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6855
6991
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6884,6 +7020,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6884
7020
|
alwaysAllowExecute?: boolean | undefined;
|
|
6885
7021
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
6886
7022
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
7023
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
6887
7024
|
allowedCommands?: string[] | undefined;
|
|
6888
7025
|
allowedMaxRequests?: number | null | undefined;
|
|
6889
7026
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -6928,14 +7065,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6928
7065
|
"openai-compatible"?: Record<string, {
|
|
6929
7066
|
dimension: number;
|
|
6930
7067
|
}> | undefined;
|
|
7068
|
+
gemini?: Record<string, {
|
|
7069
|
+
dimension: number;
|
|
7070
|
+
}> | undefined;
|
|
6931
7071
|
} | undefined;
|
|
6932
7072
|
codebaseIndexConfig?: {
|
|
6933
7073
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6934
7074
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6935
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7075
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6936
7076
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6937
7077
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7078
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
6938
7079
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
7080
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
7081
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7082
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6939
7083
|
} | undefined;
|
|
6940
7084
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
6941
7085
|
mcpEnabled?: boolean | undefined;
|
|
@@ -6961,12 +7105,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6961
7105
|
text: string;
|
|
6962
7106
|
configuration: {
|
|
6963
7107
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
7108
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7109
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6964
7110
|
codeIndexOpenAiKey?: string | undefined;
|
|
6965
7111
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6966
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6967
7112
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6968
|
-
|
|
6969
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
7113
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7114
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6970
7115
|
includeMaxTokens?: boolean | undefined;
|
|
6971
7116
|
diffEnabled?: boolean | undefined;
|
|
6972
7117
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -7094,7 +7239,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7094
7239
|
listApiConfigMeta?: {
|
|
7095
7240
|
name: string;
|
|
7096
7241
|
id: string;
|
|
7097
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
7242
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7098
7243
|
}[] | undefined;
|
|
7099
7244
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7100
7245
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7129,6 +7274,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7129
7274
|
alwaysAllowExecute?: boolean | undefined;
|
|
7130
7275
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
7131
7276
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
7277
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
7132
7278
|
allowedCommands?: string[] | undefined;
|
|
7133
7279
|
allowedMaxRequests?: number | null | undefined;
|
|
7134
7280
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -7173,14 +7319,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7173
7319
|
"openai-compatible"?: Record<string, {
|
|
7174
7320
|
dimension: number;
|
|
7175
7321
|
}> | undefined;
|
|
7322
|
+
gemini?: Record<string, {
|
|
7323
|
+
dimension: number;
|
|
7324
|
+
}> | undefined;
|
|
7176
7325
|
} | undefined;
|
|
7177
7326
|
codebaseIndexConfig?: {
|
|
7178
7327
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7179
7328
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7180
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7329
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7181
7330
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7182
7331
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7332
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
7183
7333
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
7334
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
7335
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7336
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
7184
7337
|
} | undefined;
|
|
7185
7338
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
7186
7339
|
mcpEnabled?: boolean | undefined;
|
|
@@ -7209,12 +7362,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7209
7362
|
text: string;
|
|
7210
7363
|
configuration: {
|
|
7211
7364
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
7365
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7366
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
7212
7367
|
codeIndexOpenAiKey?: string | undefined;
|
|
7213
7368
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7214
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7215
7369
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7216
|
-
|
|
7217
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
7370
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7371
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7218
7372
|
includeMaxTokens?: boolean | undefined;
|
|
7219
7373
|
diffEnabled?: boolean | undefined;
|
|
7220
7374
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -7342,7 +7496,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7342
7496
|
listApiConfigMeta?: {
|
|
7343
7497
|
name: string;
|
|
7344
7498
|
id: string;
|
|
7345
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
7499
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7346
7500
|
}[] | undefined;
|
|
7347
7501
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7348
7502
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7377,6 +7531,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7377
7531
|
alwaysAllowExecute?: boolean | undefined;
|
|
7378
7532
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
7379
7533
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
7534
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
7380
7535
|
allowedCommands?: string[] | undefined;
|
|
7381
7536
|
allowedMaxRequests?: number | null | undefined;
|
|
7382
7537
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -7421,14 +7576,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7421
7576
|
"openai-compatible"?: Record<string, {
|
|
7422
7577
|
dimension: number;
|
|
7423
7578
|
}> | undefined;
|
|
7579
|
+
gemini?: Record<string, {
|
|
7580
|
+
dimension: number;
|
|
7581
|
+
}> | undefined;
|
|
7424
7582
|
} | undefined;
|
|
7425
7583
|
codebaseIndexConfig?: {
|
|
7426
7584
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7427
7585
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7428
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7586
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7429
7587
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7430
7588
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7589
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
7431
7590
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
7591
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
7592
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7593
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
7432
7594
|
} | undefined;
|
|
7433
7595
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
7434
7596
|
mcpEnabled?: boolean | undefined;
|
|
@@ -7457,12 +7619,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7457
7619
|
text: string;
|
|
7458
7620
|
configuration: {
|
|
7459
7621
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
7622
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7623
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
7460
7624
|
codeIndexOpenAiKey?: string | undefined;
|
|
7461
7625
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7462
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7463
7626
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7464
|
-
|
|
7465
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
7627
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7628
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7466
7629
|
includeMaxTokens?: boolean | undefined;
|
|
7467
7630
|
diffEnabled?: boolean | undefined;
|
|
7468
7631
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -7590,7 +7753,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7590
7753
|
listApiConfigMeta?: {
|
|
7591
7754
|
name: string;
|
|
7592
7755
|
id: string;
|
|
7593
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
7756
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7594
7757
|
}[] | undefined;
|
|
7595
7758
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7596
7759
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7625,6 +7788,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7625
7788
|
alwaysAllowExecute?: boolean | undefined;
|
|
7626
7789
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
7627
7790
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
7791
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
7628
7792
|
allowedCommands?: string[] | undefined;
|
|
7629
7793
|
allowedMaxRequests?: number | null | undefined;
|
|
7630
7794
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -7669,14 +7833,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7669
7833
|
"openai-compatible"?: Record<string, {
|
|
7670
7834
|
dimension: number;
|
|
7671
7835
|
}> | undefined;
|
|
7836
|
+
gemini?: Record<string, {
|
|
7837
|
+
dimension: number;
|
|
7838
|
+
}> | undefined;
|
|
7672
7839
|
} | undefined;
|
|
7673
7840
|
codebaseIndexConfig?: {
|
|
7674
7841
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7675
7842
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7676
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7843
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7677
7844
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7678
7845
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7846
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
7679
7847
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
7848
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
7849
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7850
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
7680
7851
|
} | undefined;
|
|
7681
7852
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
7682
7853
|
mcpEnabled?: boolean | undefined;
|
|
@@ -7731,7 +7902,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
7731
7902
|
ts: z.ZodNumber;
|
|
7732
7903
|
type: z.ZodUnion<[z.ZodLiteral<"ask">, z.ZodLiteral<"say">]>;
|
|
7733
7904
|
ask: z.ZodOptional<z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>>;
|
|
7734
|
-
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"]>>;
|
|
7905
|
+
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>>;
|
|
7735
7906
|
text: z.ZodOptional<z.ZodString>;
|
|
7736
7907
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7737
7908
|
partial: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7772,7 +7943,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
7772
7943
|
partial?: boolean | undefined;
|
|
7773
7944
|
text?: string | undefined;
|
|
7774
7945
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
7775
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
7946
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
7776
7947
|
images?: string[] | undefined;
|
|
7777
7948
|
conversationHistoryIndex?: number | undefined;
|
|
7778
7949
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -7794,7 +7965,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
7794
7965
|
partial?: boolean | undefined;
|
|
7795
7966
|
text?: string | undefined;
|
|
7796
7967
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
7797
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
7968
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
7798
7969
|
images?: string[] | undefined;
|
|
7799
7970
|
conversationHistoryIndex?: number | undefined;
|
|
7800
7971
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -7818,7 +7989,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
7818
7989
|
partial?: boolean | undefined;
|
|
7819
7990
|
text?: string | undefined;
|
|
7820
7991
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
7821
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
7992
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
7822
7993
|
images?: string[] | undefined;
|
|
7823
7994
|
conversationHistoryIndex?: number | undefined;
|
|
7824
7995
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -7844,7 +8015,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
7844
8015
|
partial?: boolean | undefined;
|
|
7845
8016
|
text?: string | undefined;
|
|
7846
8017
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
7847
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
8018
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
7848
8019
|
images?: string[] | undefined;
|
|
7849
8020
|
conversationHistoryIndex?: number | undefined;
|
|
7850
8021
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -7874,7 +8045,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
7874
8045
|
partial?: boolean | undefined;
|
|
7875
8046
|
text?: string | undefined;
|
|
7876
8047
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
7877
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
8048
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
7878
8049
|
images?: string[] | undefined;
|
|
7879
8050
|
conversationHistoryIndex?: number | undefined;
|
|
7880
8051
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -7904,7 +8075,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
7904
8075
|
partial?: boolean | undefined;
|
|
7905
8076
|
text?: string | undefined;
|
|
7906
8077
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
7907
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
8078
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
7908
8079
|
images?: string[] | undefined;
|
|
7909
8080
|
conversationHistoryIndex?: number | undefined;
|
|
7910
8081
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -8043,7 +8214,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
8043
8214
|
contextTokens: number;
|
|
8044
8215
|
totalCacheWrites?: number | undefined;
|
|
8045
8216
|
totalCacheReads?: number | undefined;
|
|
8046
|
-
}>, z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>, z.ZodObject<{
|
|
8217
|
+
}>, z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>, z.ZodObject<{
|
|
8047
8218
|
attempts: z.ZodNumber;
|
|
8048
8219
|
failures: z.ZodNumber;
|
|
8049
8220
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8069,7 +8240,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
8069
8240
|
contextTokens: number;
|
|
8070
8241
|
totalCacheWrites?: number | undefined;
|
|
8071
8242
|
totalCacheReads?: number | undefined;
|
|
8072
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
8243
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
8073
8244
|
attempts: number;
|
|
8074
8245
|
failures: number;
|
|
8075
8246
|
}>>, {
|
|
@@ -8085,7 +8256,7 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
8085
8256
|
contextTokens: number;
|
|
8086
8257
|
totalCacheWrites?: number | undefined;
|
|
8087
8258
|
totalCacheReads?: number | undefined;
|
|
8088
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
8259
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
8089
8260
|
attempts: number;
|
|
8090
8261
|
failures: number;
|
|
8091
8262
|
}>>, {
|
|
@@ -8141,15 +8312,15 @@ declare const taskEventSchema: z.ZodDiscriminatedUnion<"eventName", [z.ZodObject
|
|
|
8141
8312
|
taskId?: number | undefined;
|
|
8142
8313
|
}>, z.ZodObject<{
|
|
8143
8314
|
eventName: z.ZodLiteral<RooCodeEventName.TaskToolFailed>;
|
|
8144
|
-
payload: z.ZodTuple<[z.ZodString, z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>, z.ZodString], null>;
|
|
8315
|
+
payload: z.ZodTuple<[z.ZodString, z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>, z.ZodString], null>;
|
|
8145
8316
|
taskId: z.ZodOptional<z.ZodNumber>;
|
|
8146
8317
|
}, "strip", z.ZodTypeAny, {
|
|
8147
8318
|
eventName: RooCodeEventName.TaskToolFailed;
|
|
8148
|
-
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
8319
|
+
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
8149
8320
|
taskId?: number | undefined;
|
|
8150
8321
|
}, {
|
|
8151
8322
|
eventName: RooCodeEventName.TaskToolFailed;
|
|
8152
|
-
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
8323
|
+
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
8153
8324
|
taskId?: number | undefined;
|
|
8154
8325
|
}>, z.ZodObject<{
|
|
8155
8326
|
eventName: z.ZodLiteral<RooCodeEventName.EvalPass>;
|
|
@@ -8236,6 +8407,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8236
8407
|
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8237
8408
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
8238
8409
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
8410
|
+
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
8239
8411
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
8240
8412
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8241
8413
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8427,11 +8599,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8427
8599
|
}, "strip", z.ZodTypeAny, {
|
|
8428
8600
|
name: string;
|
|
8429
8601
|
id: string;
|
|
8430
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
8602
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8431
8603
|
}, {
|
|
8432
8604
|
name: string;
|
|
8433
8605
|
id: string;
|
|
8434
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
8606
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8435
8607
|
}>, "many">>;
|
|
8436
8608
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8437
8609
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8491,6 +8663,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8491
8663
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
8492
8664
|
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
8493
8665
|
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
8666
|
+
alwaysAllowUpdateTodoList: z.ZodOptional<z.ZodBoolean>;
|
|
8494
8667
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8495
8668
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8496
8669
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8556,6 +8729,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8556
8729
|
}, {
|
|
8557
8730
|
dimension: number;
|
|
8558
8731
|
}>>>;
|
|
8732
|
+
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8733
|
+
dimension: z.ZodNumber;
|
|
8734
|
+
}, "strip", z.ZodTypeAny, {
|
|
8735
|
+
dimension: number;
|
|
8736
|
+
}, {
|
|
8737
|
+
dimension: number;
|
|
8738
|
+
}>>>;
|
|
8559
8739
|
}, "strip", z.ZodTypeAny, {
|
|
8560
8740
|
openai?: Record<string, {
|
|
8561
8741
|
dimension: number;
|
|
@@ -8566,6 +8746,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8566
8746
|
"openai-compatible"?: Record<string, {
|
|
8567
8747
|
dimension: number;
|
|
8568
8748
|
}> | undefined;
|
|
8749
|
+
gemini?: Record<string, {
|
|
8750
|
+
dimension: number;
|
|
8751
|
+
}> | undefined;
|
|
8569
8752
|
}, {
|
|
8570
8753
|
openai?: Record<string, {
|
|
8571
8754
|
dimension: number;
|
|
@@ -8576,28 +8759,43 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8576
8759
|
"openai-compatible"?: Record<string, {
|
|
8577
8760
|
dimension: number;
|
|
8578
8761
|
}> | undefined;
|
|
8762
|
+
gemini?: Record<string, {
|
|
8763
|
+
dimension: number;
|
|
8764
|
+
}> | undefined;
|
|
8579
8765
|
}>>;
|
|
8580
8766
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
8581
8767
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8582
8768
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
8583
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
8769
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
8584
8770
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8585
8771
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
8772
|
+
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
8586
8773
|
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
8774
|
+
codebaseIndexSearchMaxResults: z.ZodOptional<z.ZodNumber>;
|
|
8775
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8776
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
8587
8777
|
}, "strip", z.ZodTypeAny, {
|
|
8588
8778
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8589
8779
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8590
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8780
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
8591
8781
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8592
8782
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8783
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
8593
8784
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
8785
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
8786
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8787
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8594
8788
|
}, {
|
|
8595
8789
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8596
8790
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8597
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8791
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
8598
8792
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8599
8793
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8794
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
8600
8795
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
8796
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
8797
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8798
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8601
8799
|
}>>;
|
|
8602
8800
|
language: z.ZodOptional<z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "id", "it", "ja", "ko", "nl", "pl", "pt-BR", "ru", "tr", "vi", "zh-CN", "zh-TW"]>>;
|
|
8603
8801
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -8679,12 +8877,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8679
8877
|
lastModeImportPath: z.ZodOptional<z.ZodString>;
|
|
8680
8878
|
}, "strip", z.ZodTypeAny, {
|
|
8681
8879
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8880
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8881
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8682
8882
|
codeIndexOpenAiKey?: string | undefined;
|
|
8683
8883
|
codeIndexQdrantApiKey?: string | undefined;
|
|
8684
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8685
8884
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8686
|
-
|
|
8687
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
8885
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8886
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8688
8887
|
includeMaxTokens?: boolean | undefined;
|
|
8689
8888
|
diffEnabled?: boolean | undefined;
|
|
8690
8889
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -8812,7 +9011,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8812
9011
|
listApiConfigMeta?: {
|
|
8813
9012
|
name: string;
|
|
8814
9013
|
id: string;
|
|
8815
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9014
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8816
9015
|
}[] | undefined;
|
|
8817
9016
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8818
9017
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8847,6 +9046,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8847
9046
|
alwaysAllowExecute?: boolean | undefined;
|
|
8848
9047
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
8849
9048
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9049
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
8850
9050
|
allowedCommands?: string[] | undefined;
|
|
8851
9051
|
allowedMaxRequests?: number | null | undefined;
|
|
8852
9052
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -8891,14 +9091,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8891
9091
|
"openai-compatible"?: Record<string, {
|
|
8892
9092
|
dimension: number;
|
|
8893
9093
|
}> | undefined;
|
|
9094
|
+
gemini?: Record<string, {
|
|
9095
|
+
dimension: number;
|
|
9096
|
+
}> | undefined;
|
|
8894
9097
|
} | undefined;
|
|
8895
9098
|
codebaseIndexConfig?: {
|
|
8896
9099
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8897
9100
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8898
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9101
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
8899
9102
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8900
9103
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9104
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
8901
9105
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
9106
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
9107
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9108
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8902
9109
|
} | undefined;
|
|
8903
9110
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
8904
9111
|
mcpEnabled?: boolean | undefined;
|
|
@@ -8919,12 +9126,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8919
9126
|
lastModeImportPath?: string | undefined;
|
|
8920
9127
|
}, {
|
|
8921
9128
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
9129
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9130
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8922
9131
|
codeIndexOpenAiKey?: string | undefined;
|
|
8923
9132
|
codeIndexQdrantApiKey?: string | undefined;
|
|
8924
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8925
9133
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8926
|
-
|
|
8927
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9134
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9135
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8928
9136
|
includeMaxTokens?: boolean | undefined;
|
|
8929
9137
|
diffEnabled?: boolean | undefined;
|
|
8930
9138
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9052,7 +9260,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9052
9260
|
listApiConfigMeta?: {
|
|
9053
9261
|
name: string;
|
|
9054
9262
|
id: string;
|
|
9055
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9263
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9056
9264
|
}[] | undefined;
|
|
9057
9265
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9058
9266
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9087,6 +9295,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9087
9295
|
alwaysAllowExecute?: boolean | undefined;
|
|
9088
9296
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9089
9297
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9298
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
9090
9299
|
allowedCommands?: string[] | undefined;
|
|
9091
9300
|
allowedMaxRequests?: number | null | undefined;
|
|
9092
9301
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9131,14 +9340,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9131
9340
|
"openai-compatible"?: Record<string, {
|
|
9132
9341
|
dimension: number;
|
|
9133
9342
|
}> | undefined;
|
|
9343
|
+
gemini?: Record<string, {
|
|
9344
|
+
dimension: number;
|
|
9345
|
+
}> | undefined;
|
|
9134
9346
|
} | undefined;
|
|
9135
9347
|
codebaseIndexConfig?: {
|
|
9136
9348
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9137
9349
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9138
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9350
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9139
9351
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9140
9352
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9353
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
9141
9354
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
9355
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
9356
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9357
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9142
9358
|
} | undefined;
|
|
9143
9359
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9144
9360
|
mcpEnabled?: boolean | undefined;
|
|
@@ -9165,12 +9381,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9165
9381
|
text: string;
|
|
9166
9382
|
configuration: {
|
|
9167
9383
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
9384
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9385
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9168
9386
|
codeIndexOpenAiKey?: string | undefined;
|
|
9169
9387
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9170
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9171
9388
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9172
|
-
|
|
9173
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9389
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9390
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9174
9391
|
includeMaxTokens?: boolean | undefined;
|
|
9175
9392
|
diffEnabled?: boolean | undefined;
|
|
9176
9393
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9298,7 +9515,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9298
9515
|
listApiConfigMeta?: {
|
|
9299
9516
|
name: string;
|
|
9300
9517
|
id: string;
|
|
9301
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9518
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9302
9519
|
}[] | undefined;
|
|
9303
9520
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9304
9521
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9333,6 +9550,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9333
9550
|
alwaysAllowExecute?: boolean | undefined;
|
|
9334
9551
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9335
9552
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9553
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
9336
9554
|
allowedCommands?: string[] | undefined;
|
|
9337
9555
|
allowedMaxRequests?: number | null | undefined;
|
|
9338
9556
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9377,14 +9595,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9377
9595
|
"openai-compatible"?: Record<string, {
|
|
9378
9596
|
dimension: number;
|
|
9379
9597
|
}> | undefined;
|
|
9598
|
+
gemini?: Record<string, {
|
|
9599
|
+
dimension: number;
|
|
9600
|
+
}> | undefined;
|
|
9380
9601
|
} | undefined;
|
|
9381
9602
|
codebaseIndexConfig?: {
|
|
9382
9603
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9383
9604
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9384
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9605
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9385
9606
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9386
9607
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9608
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
9387
9609
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
9610
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
9611
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9612
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9388
9613
|
} | undefined;
|
|
9389
9614
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9390
9615
|
mcpEnabled?: boolean | undefined;
|
|
@@ -9410,12 +9635,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9410
9635
|
text: string;
|
|
9411
9636
|
configuration: {
|
|
9412
9637
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
9638
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9639
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9413
9640
|
codeIndexOpenAiKey?: string | undefined;
|
|
9414
9641
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9415
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9416
9642
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9417
|
-
|
|
9418
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9643
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9644
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9419
9645
|
includeMaxTokens?: boolean | undefined;
|
|
9420
9646
|
diffEnabled?: boolean | undefined;
|
|
9421
9647
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9543,7 +9769,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9543
9769
|
listApiConfigMeta?: {
|
|
9544
9770
|
name: string;
|
|
9545
9771
|
id: string;
|
|
9546
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9772
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9547
9773
|
}[] | undefined;
|
|
9548
9774
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9549
9775
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9578,6 +9804,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9578
9804
|
alwaysAllowExecute?: boolean | undefined;
|
|
9579
9805
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9580
9806
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9807
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
9581
9808
|
allowedCommands?: string[] | undefined;
|
|
9582
9809
|
allowedMaxRequests?: number | null | undefined;
|
|
9583
9810
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9622,14 +9849,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9622
9849
|
"openai-compatible"?: Record<string, {
|
|
9623
9850
|
dimension: number;
|
|
9624
9851
|
}> | undefined;
|
|
9852
|
+
gemini?: Record<string, {
|
|
9853
|
+
dimension: number;
|
|
9854
|
+
}> | undefined;
|
|
9625
9855
|
} | undefined;
|
|
9626
9856
|
codebaseIndexConfig?: {
|
|
9627
9857
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9628
9858
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9629
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9859
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9630
9860
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9631
9861
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9862
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
9632
9863
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
9864
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
9865
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9866
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9633
9867
|
} | undefined;
|
|
9634
9868
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9635
9869
|
mcpEnabled?: boolean | undefined;
|
|
@@ -9658,12 +9892,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9658
9892
|
text: string;
|
|
9659
9893
|
configuration: {
|
|
9660
9894
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
9895
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9896
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9661
9897
|
codeIndexOpenAiKey?: string | undefined;
|
|
9662
9898
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9663
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9664
9899
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9665
|
-
|
|
9666
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
9900
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9901
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9667
9902
|
includeMaxTokens?: boolean | undefined;
|
|
9668
9903
|
diffEnabled?: boolean | undefined;
|
|
9669
9904
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9791,7 +10026,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9791
10026
|
listApiConfigMeta?: {
|
|
9792
10027
|
name: string;
|
|
9793
10028
|
id: string;
|
|
9794
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
10029
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9795
10030
|
}[] | undefined;
|
|
9796
10031
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9797
10032
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9826,6 +10061,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9826
10061
|
alwaysAllowExecute?: boolean | undefined;
|
|
9827
10062
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9828
10063
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10064
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
9829
10065
|
allowedCommands?: string[] | undefined;
|
|
9830
10066
|
allowedMaxRequests?: number | null | undefined;
|
|
9831
10067
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9870,14 +10106,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9870
10106
|
"openai-compatible"?: Record<string, {
|
|
9871
10107
|
dimension: number;
|
|
9872
10108
|
}> | undefined;
|
|
10109
|
+
gemini?: Record<string, {
|
|
10110
|
+
dimension: number;
|
|
10111
|
+
}> | undefined;
|
|
9873
10112
|
} | undefined;
|
|
9874
10113
|
codebaseIndexConfig?: {
|
|
9875
10114
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9876
10115
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9877
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10116
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9878
10117
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9879
10118
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10119
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
9880
10120
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
10121
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
10122
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10123
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9881
10124
|
} | undefined;
|
|
9882
10125
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9883
10126
|
mcpEnabled?: boolean | undefined;
|
|
@@ -9906,12 +10149,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9906
10149
|
text: string;
|
|
9907
10150
|
configuration: {
|
|
9908
10151
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
10152
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10153
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9909
10154
|
codeIndexOpenAiKey?: string | undefined;
|
|
9910
10155
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9911
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9912
10156
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9913
|
-
|
|
9914
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
10157
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10158
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9915
10159
|
includeMaxTokens?: boolean | undefined;
|
|
9916
10160
|
diffEnabled?: boolean | undefined;
|
|
9917
10161
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -10039,7 +10283,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10039
10283
|
listApiConfigMeta?: {
|
|
10040
10284
|
name: string;
|
|
10041
10285
|
id: string;
|
|
10042
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
10286
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10043
10287
|
}[] | undefined;
|
|
10044
10288
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10045
10289
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10074,6 +10318,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10074
10318
|
alwaysAllowExecute?: boolean | undefined;
|
|
10075
10319
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10076
10320
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10321
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
10077
10322
|
allowedCommands?: string[] | undefined;
|
|
10078
10323
|
allowedMaxRequests?: number | null | undefined;
|
|
10079
10324
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -10118,14 +10363,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10118
10363
|
"openai-compatible"?: Record<string, {
|
|
10119
10364
|
dimension: number;
|
|
10120
10365
|
}> | undefined;
|
|
10366
|
+
gemini?: Record<string, {
|
|
10367
|
+
dimension: number;
|
|
10368
|
+
}> | undefined;
|
|
10121
10369
|
} | undefined;
|
|
10122
10370
|
codebaseIndexConfig?: {
|
|
10123
10371
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10124
10372
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10125
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10373
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10126
10374
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10127
10375
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10376
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
10128
10377
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
10378
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
10379
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10380
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10129
10381
|
} | undefined;
|
|
10130
10382
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
10131
10383
|
mcpEnabled?: boolean | undefined;
|
|
@@ -10176,12 +10428,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10176
10428
|
text: string;
|
|
10177
10429
|
configuration: {
|
|
10178
10430
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
10431
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10432
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10179
10433
|
codeIndexOpenAiKey?: string | undefined;
|
|
10180
10434
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10181
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10182
10435
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10183
|
-
|
|
10184
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
10436
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10437
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10185
10438
|
includeMaxTokens?: boolean | undefined;
|
|
10186
10439
|
diffEnabled?: boolean | undefined;
|
|
10187
10440
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -10309,7 +10562,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10309
10562
|
listApiConfigMeta?: {
|
|
10310
10563
|
name: string;
|
|
10311
10564
|
id: string;
|
|
10312
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
10565
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10313
10566
|
}[] | undefined;
|
|
10314
10567
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10315
10568
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10344,6 +10597,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10344
10597
|
alwaysAllowExecute?: boolean | undefined;
|
|
10345
10598
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10346
10599
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10600
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
10347
10601
|
allowedCommands?: string[] | undefined;
|
|
10348
10602
|
allowedMaxRequests?: number | null | undefined;
|
|
10349
10603
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -10388,14 +10642,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10388
10642
|
"openai-compatible"?: Record<string, {
|
|
10389
10643
|
dimension: number;
|
|
10390
10644
|
}> | undefined;
|
|
10645
|
+
gemini?: Record<string, {
|
|
10646
|
+
dimension: number;
|
|
10647
|
+
}> | undefined;
|
|
10391
10648
|
} | undefined;
|
|
10392
10649
|
codebaseIndexConfig?: {
|
|
10393
10650
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10394
10651
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10395
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10652
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10396
10653
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10397
10654
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10655
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
10398
10656
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
10657
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
10658
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10659
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10399
10660
|
} | undefined;
|
|
10400
10661
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
10401
10662
|
mcpEnabled?: boolean | undefined;
|
|
@@ -10435,12 +10696,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10435
10696
|
text: string;
|
|
10436
10697
|
configuration: {
|
|
10437
10698
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
10699
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10700
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10438
10701
|
codeIndexOpenAiKey?: string | undefined;
|
|
10439
10702
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10440
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10441
10703
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10442
|
-
|
|
10443
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
10704
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10705
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10444
10706
|
includeMaxTokens?: boolean | undefined;
|
|
10445
10707
|
diffEnabled?: boolean | undefined;
|
|
10446
10708
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -10568,7 +10830,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10568
10830
|
listApiConfigMeta?: {
|
|
10569
10831
|
name: string;
|
|
10570
10832
|
id: string;
|
|
10571
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
10833
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10572
10834
|
}[] | undefined;
|
|
10573
10835
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10574
10836
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10603,6 +10865,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10603
10865
|
alwaysAllowExecute?: boolean | undefined;
|
|
10604
10866
|
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10605
10867
|
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10868
|
+
alwaysAllowUpdateTodoList?: boolean | undefined;
|
|
10606
10869
|
allowedCommands?: string[] | undefined;
|
|
10607
10870
|
allowedMaxRequests?: number | null | undefined;
|
|
10608
10871
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -10647,14 +10910,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10647
10910
|
"openai-compatible"?: Record<string, {
|
|
10648
10911
|
dimension: number;
|
|
10649
10912
|
}> | undefined;
|
|
10913
|
+
gemini?: Record<string, {
|
|
10914
|
+
dimension: number;
|
|
10915
|
+
}> | undefined;
|
|
10650
10916
|
} | undefined;
|
|
10651
10917
|
codebaseIndexConfig?: {
|
|
10652
10918
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10653
10919
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10654
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10920
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10655
10921
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10656
10922
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10923
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
10657
10924
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
10925
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
10926
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10927
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10658
10928
|
} | undefined;
|
|
10659
10929
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
10660
10930
|
mcpEnabled?: boolean | undefined;
|
|
@@ -10698,7 +10968,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10698
10968
|
ts: z.ZodNumber;
|
|
10699
10969
|
type: z.ZodUnion<[z.ZodLiteral<"ask">, z.ZodLiteral<"say">]>;
|
|
10700
10970
|
ask: z.ZodOptional<z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>>;
|
|
10701
|
-
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"]>>;
|
|
10971
|
+
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>>;
|
|
10702
10972
|
text: z.ZodOptional<z.ZodString>;
|
|
10703
10973
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10704
10974
|
partial: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10739,7 +11009,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10739
11009
|
partial?: boolean | undefined;
|
|
10740
11010
|
text?: string | undefined;
|
|
10741
11011
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
10742
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11012
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
10743
11013
|
images?: string[] | undefined;
|
|
10744
11014
|
conversationHistoryIndex?: number | undefined;
|
|
10745
11015
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -10761,7 +11031,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10761
11031
|
partial?: boolean | undefined;
|
|
10762
11032
|
text?: string | undefined;
|
|
10763
11033
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
10764
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11034
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
10765
11035
|
images?: string[] | undefined;
|
|
10766
11036
|
conversationHistoryIndex?: number | undefined;
|
|
10767
11037
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -10785,7 +11055,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10785
11055
|
partial?: boolean | undefined;
|
|
10786
11056
|
text?: string | undefined;
|
|
10787
11057
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
10788
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11058
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
10789
11059
|
images?: string[] | undefined;
|
|
10790
11060
|
conversationHistoryIndex?: number | undefined;
|
|
10791
11061
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -10811,7 +11081,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10811
11081
|
partial?: boolean | undefined;
|
|
10812
11082
|
text?: string | undefined;
|
|
10813
11083
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
10814
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11084
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
10815
11085
|
images?: string[] | undefined;
|
|
10816
11086
|
conversationHistoryIndex?: number | undefined;
|
|
10817
11087
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -10841,7 +11111,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10841
11111
|
partial?: boolean | undefined;
|
|
10842
11112
|
text?: string | undefined;
|
|
10843
11113
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
10844
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11114
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
10845
11115
|
images?: string[] | undefined;
|
|
10846
11116
|
conversationHistoryIndex?: number | undefined;
|
|
10847
11117
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -10871,7 +11141,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10871
11141
|
partial?: boolean | undefined;
|
|
10872
11142
|
text?: string | undefined;
|
|
10873
11143
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
10874
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11144
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
10875
11145
|
images?: string[] | undefined;
|
|
10876
11146
|
conversationHistoryIndex?: number | undefined;
|
|
10877
11147
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -11010,7 +11280,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11010
11280
|
contextTokens: number;
|
|
11011
11281
|
totalCacheWrites?: number | undefined;
|
|
11012
11282
|
totalCacheReads?: number | undefined;
|
|
11013
|
-
}>, z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>, z.ZodObject<{
|
|
11283
|
+
}>, z.ZodRecord<z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>, z.ZodObject<{
|
|
11014
11284
|
attempts: z.ZodNumber;
|
|
11015
11285
|
failures: z.ZodNumber;
|
|
11016
11286
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11036,7 +11306,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11036
11306
|
contextTokens: number;
|
|
11037
11307
|
totalCacheWrites?: number | undefined;
|
|
11038
11308
|
totalCacheReads?: number | undefined;
|
|
11039
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
11309
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
11040
11310
|
attempts: number;
|
|
11041
11311
|
failures: number;
|
|
11042
11312
|
}>>, {
|
|
@@ -11052,7 +11322,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11052
11322
|
contextTokens: number;
|
|
11053
11323
|
totalCacheWrites?: number | undefined;
|
|
11054
11324
|
totalCacheReads?: number | undefined;
|
|
11055
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
11325
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
11056
11326
|
attempts: number;
|
|
11057
11327
|
failures: number;
|
|
11058
11328
|
}>>, {
|
|
@@ -11108,15 +11378,15 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11108
11378
|
taskId?: number | undefined;
|
|
11109
11379
|
}>, z.ZodObject<{
|
|
11110
11380
|
eventName: z.ZodLiteral<RooCodeEventName.TaskToolFailed>;
|
|
11111
|
-
payload: z.ZodTuple<[z.ZodString, z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search"]>, z.ZodString], null>;
|
|
11381
|
+
payload: z.ZodTuple<[z.ZodString, z.ZodEnum<["execute_command", "read_file", "write_to_file", "apply_diff", "insert_content", "search_and_replace", "search_files", "list_files", "list_code_definition_names", "browser_action", "use_mcp_tool", "access_mcp_resource", "ask_followup_question", "attempt_completion", "switch_mode", "new_task", "fetch_instructions", "codebase_search", "update_todo_list"]>, z.ZodString], null>;
|
|
11112
11382
|
taskId: z.ZodOptional<z.ZodNumber>;
|
|
11113
11383
|
}, "strip", z.ZodTypeAny, {
|
|
11114
11384
|
eventName: RooCodeEventName.TaskToolFailed;
|
|
11115
|
-
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
11385
|
+
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
11116
11386
|
taskId?: number | undefined;
|
|
11117
11387
|
}, {
|
|
11118
11388
|
eventName: RooCodeEventName.TaskToolFailed;
|
|
11119
|
-
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
11389
|
+
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
11120
11390
|
taskId?: number | undefined;
|
|
11121
11391
|
}>, z.ZodObject<{
|
|
11122
11392
|
eventName: z.ZodLiteral<RooCodeEventName.EvalPass>;
|
|
@@ -11155,7 +11425,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11155
11425
|
partial?: boolean | undefined;
|
|
11156
11426
|
text?: string | undefined;
|
|
11157
11427
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
11158
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11428
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
11159
11429
|
images?: string[] | undefined;
|
|
11160
11430
|
conversationHistoryIndex?: number | undefined;
|
|
11161
11431
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -11216,7 +11486,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11216
11486
|
contextTokens: number;
|
|
11217
11487
|
totalCacheWrites?: number | undefined;
|
|
11218
11488
|
totalCacheReads?: number | undefined;
|
|
11219
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
11489
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
11220
11490
|
attempts: number;
|
|
11221
11491
|
failures: number;
|
|
11222
11492
|
}>>, {
|
|
@@ -11236,7 +11506,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11236
11506
|
taskId?: number | undefined;
|
|
11237
11507
|
} | {
|
|
11238
11508
|
eventName: RooCodeEventName.TaskToolFailed;
|
|
11239
|
-
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
11509
|
+
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
11240
11510
|
taskId?: number | undefined;
|
|
11241
11511
|
} | {
|
|
11242
11512
|
taskId: number;
|
|
@@ -11261,7 +11531,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11261
11531
|
partial?: boolean | undefined;
|
|
11262
11532
|
text?: string | undefined;
|
|
11263
11533
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
11264
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
11534
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
11265
11535
|
images?: string[] | undefined;
|
|
11266
11536
|
conversationHistoryIndex?: number | undefined;
|
|
11267
11537
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -11322,7 +11592,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11322
11592
|
contextTokens: number;
|
|
11323
11593
|
totalCacheWrites?: number | undefined;
|
|
11324
11594
|
totalCacheReads?: number | undefined;
|
|
11325
|
-
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", {
|
|
11595
|
+
}, Partial<Record<"browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", {
|
|
11326
11596
|
attempts: number;
|
|
11327
11597
|
failures: number;
|
|
11328
11598
|
}>>, {
|
|
@@ -11342,7 +11612,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11342
11612
|
taskId?: number | undefined;
|
|
11343
11613
|
} | {
|
|
11344
11614
|
eventName: RooCodeEventName.TaskToolFailed;
|
|
11345
|
-
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search", string];
|
|
11615
|
+
payload: [string, "browser_action" | "execute_command" | "read_file" | "write_to_file" | "apply_diff" | "insert_content" | "search_and_replace" | "search_files" | "list_files" | "list_code_definition_names" | "use_mcp_tool" | "access_mcp_resource" | "ask_followup_question" | "attempt_completion" | "switch_mode" | "new_task" | "fetch_instructions" | "codebase_search" | "update_todo_list", string];
|
|
11346
11616
|
taskId?: number | undefined;
|
|
11347
11617
|
} | {
|
|
11348
11618
|
taskId: number;
|
|
@@ -11524,30 +11794,55 @@ interface RooCodeIpcServer extends EventEmitter<IpcServerEvents> {
|
|
|
11524
11794
|
get isListening(): boolean;
|
|
11525
11795
|
}
|
|
11526
11796
|
|
|
11797
|
+
/**
|
|
11798
|
+
* Codebase Index Constants
|
|
11799
|
+
*/
|
|
11800
|
+
declare const CODEBASE_INDEX_DEFAULTS: {
|
|
11801
|
+
readonly MIN_SEARCH_RESULTS: 10;
|
|
11802
|
+
readonly MAX_SEARCH_RESULTS: 200;
|
|
11803
|
+
readonly DEFAULT_SEARCH_RESULTS: 50;
|
|
11804
|
+
readonly SEARCH_RESULTS_STEP: 10;
|
|
11805
|
+
readonly MIN_SEARCH_SCORE: 0;
|
|
11806
|
+
readonly MAX_SEARCH_SCORE: 1;
|
|
11807
|
+
readonly DEFAULT_SEARCH_MIN_SCORE: 0.4;
|
|
11808
|
+
readonly SEARCH_SCORE_STEP: 0.05;
|
|
11809
|
+
};
|
|
11527
11810
|
/**
|
|
11528
11811
|
* CodebaseIndexConfig
|
|
11529
11812
|
*/
|
|
11530
11813
|
declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
11531
11814
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11532
11815
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
11533
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
11816
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
11534
11817
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11535
11818
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
11819
|
+
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
11536
11820
|
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
11821
|
+
codebaseIndexSearchMaxResults: z.ZodOptional<z.ZodNumber>;
|
|
11822
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11823
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
11537
11824
|
}, "strip", z.ZodTypeAny, {
|
|
11538
11825
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11539
11826
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11540
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
11827
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11541
11828
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11542
11829
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11830
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
11543
11831
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
11832
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
11833
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11834
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
11544
11835
|
}, {
|
|
11545
11836
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11546
11837
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11547
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
11838
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11548
11839
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11549
11840
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11841
|
+
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
11550
11842
|
codebaseIndexSearchMinScore?: number | undefined;
|
|
11843
|
+
codebaseIndexSearchMaxResults?: number | undefined;
|
|
11844
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11845
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
11551
11846
|
}>;
|
|
11552
11847
|
type CodebaseIndexConfig = z.infer<typeof codebaseIndexConfigSchema>;
|
|
11553
11848
|
/**
|
|
@@ -11575,6 +11870,13 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
11575
11870
|
}, {
|
|
11576
11871
|
dimension: number;
|
|
11577
11872
|
}>>>;
|
|
11873
|
+
gemini: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11874
|
+
dimension: z.ZodNumber;
|
|
11875
|
+
}, "strip", z.ZodTypeAny, {
|
|
11876
|
+
dimension: number;
|
|
11877
|
+
}, {
|
|
11878
|
+
dimension: number;
|
|
11879
|
+
}>>>;
|
|
11578
11880
|
}, "strip", z.ZodTypeAny, {
|
|
11579
11881
|
openai?: Record<string, {
|
|
11580
11882
|
dimension: number;
|
|
@@ -11585,6 +11887,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
11585
11887
|
"openai-compatible"?: Record<string, {
|
|
11586
11888
|
dimension: number;
|
|
11587
11889
|
}> | undefined;
|
|
11890
|
+
gemini?: Record<string, {
|
|
11891
|
+
dimension: number;
|
|
11892
|
+
}> | undefined;
|
|
11588
11893
|
}, {
|
|
11589
11894
|
openai?: Record<string, {
|
|
11590
11895
|
dimension: number;
|
|
@@ -11595,6 +11900,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
11595
11900
|
"openai-compatible"?: Record<string, {
|
|
11596
11901
|
dimension: number;
|
|
11597
11902
|
}> | undefined;
|
|
11903
|
+
gemini?: Record<string, {
|
|
11904
|
+
dimension: number;
|
|
11905
|
+
}> | undefined;
|
|
11598
11906
|
}>;
|
|
11599
11907
|
type CodebaseIndexModels = z.infer<typeof codebaseIndexModelsSchema>;
|
|
11600
11908
|
/**
|
|
@@ -11606,18 +11914,21 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
11606
11914
|
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11607
11915
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
11608
11916
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
11917
|
+
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
11609
11918
|
}, "strip", z.ZodTypeAny, {
|
|
11919
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11920
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
11610
11921
|
codeIndexOpenAiKey?: string | undefined;
|
|
11611
11922
|
codeIndexQdrantApiKey?: string | undefined;
|
|
11612
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11613
11923
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11614
|
-
|
|
11924
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11615
11925
|
}, {
|
|
11926
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11927
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
11616
11928
|
codeIndexOpenAiKey?: string | undefined;
|
|
11617
11929
|
codeIndexQdrantApiKey?: string | undefined;
|
|
11618
|
-
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11619
11930
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11620
|
-
|
|
11931
|
+
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11621
11932
|
}>;
|
|
11622
11933
|
type CodebaseIndexProvider = z.infer<typeof codebaseIndexProviderSchema>;
|
|
11623
11934
|
|
|
@@ -12822,13 +13133,13 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
12822
13133
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
12823
13134
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
12824
13135
|
}, "strip", z.ZodTypeAny, {
|
|
12825
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13136
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12826
13137
|
taskId?: string | undefined;
|
|
12827
13138
|
modelId?: string | undefined;
|
|
12828
13139
|
diffStrategy?: string | undefined;
|
|
12829
13140
|
isSubtask?: boolean | undefined;
|
|
12830
13141
|
}, {
|
|
12831
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13142
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12832
13143
|
taskId?: string | undefined;
|
|
12833
13144
|
modelId?: string | undefined;
|
|
12834
13145
|
diffStrategy?: string | undefined;
|
|
@@ -12872,7 +13183,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
12872
13183
|
editorName: string;
|
|
12873
13184
|
language: string;
|
|
12874
13185
|
mode: string;
|
|
12875
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13186
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12876
13187
|
cloudIsAuthenticated?: boolean | undefined;
|
|
12877
13188
|
taskId?: string | undefined;
|
|
12878
13189
|
modelId?: string | undefined;
|
|
@@ -12889,7 +13200,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
12889
13200
|
editorName: string;
|
|
12890
13201
|
language: string;
|
|
12891
13202
|
mode: string;
|
|
12892
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13203
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12893
13204
|
cloudIsAuthenticated?: boolean | undefined;
|
|
12894
13205
|
taskId?: string | undefined;
|
|
12895
13206
|
modelId?: string | undefined;
|
|
@@ -12938,7 +13249,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12938
13249
|
editorName: string;
|
|
12939
13250
|
language: string;
|
|
12940
13251
|
mode: string;
|
|
12941
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13252
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12942
13253
|
cloudIsAuthenticated?: boolean | undefined;
|
|
12943
13254
|
taskId?: string | undefined;
|
|
12944
13255
|
modelId?: string | undefined;
|
|
@@ -12955,7 +13266,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12955
13266
|
editorName: string;
|
|
12956
13267
|
language: string;
|
|
12957
13268
|
mode: string;
|
|
12958
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13269
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12959
13270
|
cloudIsAuthenticated?: boolean | undefined;
|
|
12960
13271
|
taskId?: string | undefined;
|
|
12961
13272
|
modelId?: string | undefined;
|
|
@@ -12975,7 +13286,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12975
13286
|
editorName: string;
|
|
12976
13287
|
language: string;
|
|
12977
13288
|
mode: string;
|
|
12978
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13289
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12979
13290
|
cloudIsAuthenticated?: boolean | undefined;
|
|
12980
13291
|
taskId?: string | undefined;
|
|
12981
13292
|
modelId?: string | undefined;
|
|
@@ -12995,7 +13306,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12995
13306
|
editorName: string;
|
|
12996
13307
|
language: string;
|
|
12997
13308
|
mode: string;
|
|
12998
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13309
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12999
13310
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13000
13311
|
taskId?: string | undefined;
|
|
13001
13312
|
modelId?: string | undefined;
|
|
@@ -13013,7 +13324,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13013
13324
|
ts: z.ZodNumber;
|
|
13014
13325
|
type: z.ZodUnion<[z.ZodLiteral<"ask">, z.ZodLiteral<"say">]>;
|
|
13015
13326
|
ask: z.ZodOptional<z.ZodEnum<["followup", "command", "command_output", "completion_result", "tool", "api_req_failed", "resume_task", "resume_completed_task", "mistake_limit_reached", "browser_action_launch", "use_mcp_server", "auto_approval_max_req_reached"]>>;
|
|
13016
|
-
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result"]>>;
|
|
13327
|
+
say: z.ZodOptional<z.ZodEnum<["error", "api_req_started", "api_req_finished", "api_req_retried", "api_req_retry_delayed", "api_req_deleted", "text", "reasoning", "completion_result", "user_feedback", "user_feedback_diff", "command_output", "shell_integration_warning", "browser_action", "browser_action_result", "mcp_server_request_started", "mcp_server_response", "subtask_result", "checkpoint_saved", "rooignore_error", "diff_error", "condense_context", "condense_context_error", "codebase_search_result", "user_edit_todos"]>>;
|
|
13017
13328
|
text: z.ZodOptional<z.ZodString>;
|
|
13018
13329
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13019
13330
|
partial: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13054,7 +13365,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13054
13365
|
partial?: boolean | undefined;
|
|
13055
13366
|
text?: string | undefined;
|
|
13056
13367
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
13057
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
13368
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
13058
13369
|
images?: string[] | undefined;
|
|
13059
13370
|
conversationHistoryIndex?: number | undefined;
|
|
13060
13371
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -13076,7 +13387,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13076
13387
|
partial?: boolean | undefined;
|
|
13077
13388
|
text?: string | undefined;
|
|
13078
13389
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
13079
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
13390
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
13080
13391
|
images?: string[] | undefined;
|
|
13081
13392
|
conversationHistoryIndex?: number | undefined;
|
|
13082
13393
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -13115,7 +13426,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13115
13426
|
partial?: boolean | undefined;
|
|
13116
13427
|
text?: string | undefined;
|
|
13117
13428
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
13118
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
13429
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
13119
13430
|
images?: string[] | undefined;
|
|
13120
13431
|
conversationHistoryIndex?: number | undefined;
|
|
13121
13432
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -13139,7 +13450,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13139
13450
|
language: string;
|
|
13140
13451
|
mode: string;
|
|
13141
13452
|
taskId: string;
|
|
13142
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13453
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13143
13454
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13144
13455
|
modelId?: string | undefined;
|
|
13145
13456
|
diffStrategy?: string | undefined;
|
|
@@ -13155,7 +13466,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13155
13466
|
partial?: boolean | undefined;
|
|
13156
13467
|
text?: string | undefined;
|
|
13157
13468
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
13158
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
13469
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
13159
13470
|
images?: string[] | undefined;
|
|
13160
13471
|
conversationHistoryIndex?: number | undefined;
|
|
13161
13472
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -13179,7 +13490,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13179
13490
|
language: string;
|
|
13180
13491
|
mode: string;
|
|
13181
13492
|
taskId: string;
|
|
13182
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13493
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13183
13494
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13184
13495
|
modelId?: string | undefined;
|
|
13185
13496
|
diffStrategy?: string | undefined;
|
|
@@ -13198,7 +13509,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13198
13509
|
partial?: boolean | undefined;
|
|
13199
13510
|
text?: string | undefined;
|
|
13200
13511
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
13201
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
13512
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
13202
13513
|
images?: string[] | undefined;
|
|
13203
13514
|
conversationHistoryIndex?: number | undefined;
|
|
13204
13515
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -13222,7 +13533,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13222
13533
|
language: string;
|
|
13223
13534
|
mode: string;
|
|
13224
13535
|
taskId: string;
|
|
13225
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13536
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13226
13537
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13227
13538
|
modelId?: string | undefined;
|
|
13228
13539
|
diffStrategy?: string | undefined;
|
|
@@ -13241,7 +13552,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13241
13552
|
partial?: boolean | undefined;
|
|
13242
13553
|
text?: string | undefined;
|
|
13243
13554
|
ask?: "followup" | "command" | "command_output" | "completion_result" | "tool" | "api_req_failed" | "resume_task" | "resume_completed_task" | "mistake_limit_reached" | "browser_action_launch" | "use_mcp_server" | "auto_approval_max_req_reached" | undefined;
|
|
13244
|
-
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | undefined;
|
|
13555
|
+
say?: "reasoning" | "command_output" | "completion_result" | "error" | "api_req_started" | "api_req_finished" | "api_req_retried" | "api_req_retry_delayed" | "api_req_deleted" | "text" | "user_feedback" | "user_feedback_diff" | "shell_integration_warning" | "browser_action" | "browser_action_result" | "mcp_server_request_started" | "mcp_server_response" | "subtask_result" | "checkpoint_saved" | "rooignore_error" | "diff_error" | "condense_context" | "condense_context_error" | "codebase_search_result" | "user_edit_todos" | undefined;
|
|
13245
13556
|
images?: string[] | undefined;
|
|
13246
13557
|
conversationHistoryIndex?: number | undefined;
|
|
13247
13558
|
checkpoint?: Record<string, unknown> | undefined;
|
|
@@ -13265,7 +13576,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13265
13576
|
language: string;
|
|
13266
13577
|
mode: string;
|
|
13267
13578
|
taskId: string;
|
|
13268
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13579
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13269
13580
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13270
13581
|
modelId?: string | undefined;
|
|
13271
13582
|
diffStrategy?: string | undefined;
|
|
@@ -13308,7 +13619,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13308
13619
|
mode: string;
|
|
13309
13620
|
inputTokens: number;
|
|
13310
13621
|
outputTokens: number;
|
|
13311
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13622
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13312
13623
|
cost?: number | undefined;
|
|
13313
13624
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13314
13625
|
taskId?: string | undefined;
|
|
@@ -13330,7 +13641,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13330
13641
|
mode: string;
|
|
13331
13642
|
inputTokens: number;
|
|
13332
13643
|
outputTokens: number;
|
|
13333
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13644
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13334
13645
|
cost?: number | undefined;
|
|
13335
13646
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13336
13647
|
taskId?: string | undefined;
|
|
@@ -13355,7 +13666,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13355
13666
|
mode: string;
|
|
13356
13667
|
inputTokens: number;
|
|
13357
13668
|
outputTokens: number;
|
|
13358
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13669
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13359
13670
|
cost?: number | undefined;
|
|
13360
13671
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13361
13672
|
taskId?: string | undefined;
|
|
@@ -13380,7 +13691,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13380
13691
|
mode: string;
|
|
13381
13692
|
inputTokens: number;
|
|
13382
13693
|
outputTokens: number;
|
|
13383
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini
|
|
13694
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13384
13695
|
cost?: number | undefined;
|
|
13385
13696
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13386
13697
|
taskId?: string | undefined;
|
|
@@ -13503,4 +13814,27 @@ declare const languagesSchema: z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "i
|
|
|
13503
13814
|
type Language = z.infer<typeof languagesSchema>;
|
|
13504
13815
|
declare const isLanguage: (value: string) => value is Language;
|
|
13505
13816
|
|
|
13506
|
-
|
|
13817
|
+
/**
|
|
13818
|
+
* TodoStatus
|
|
13819
|
+
*/
|
|
13820
|
+
declare const todoStatusSchema: z.ZodEnum<["pending", "in_progress", "completed"]>;
|
|
13821
|
+
type TodoStatus = z.infer<typeof todoStatusSchema>;
|
|
13822
|
+
/**
|
|
13823
|
+
* TodoItem
|
|
13824
|
+
*/
|
|
13825
|
+
declare const todoItemSchema: z.ZodObject<{
|
|
13826
|
+
id: z.ZodString;
|
|
13827
|
+
content: z.ZodString;
|
|
13828
|
+
status: z.ZodEnum<["pending", "in_progress", "completed"]>;
|
|
13829
|
+
}, "strip", z.ZodTypeAny, {
|
|
13830
|
+
status: "completed" | "pending" | "in_progress";
|
|
13831
|
+
id: string;
|
|
13832
|
+
content: string;
|
|
13833
|
+
}, {
|
|
13834
|
+
status: "completed" | "pending" | "in_progress";
|
|
13835
|
+
id: string;
|
|
13836
|
+
content: string;
|
|
13837
|
+
}>;
|
|
13838
|
+
type TodoItem = z.infer<typeof todoItemSchema>;
|
|
13839
|
+
|
|
13840
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CODEBASE_INDEX_DEFAULTS, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudOrganization, type CloudOrganizationMembership, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, type DeepSeekModelId, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, type HistoryItem, type InstallMarketplaceItemOptions, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type IsSubtask, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODEL_ID_KEYS, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, 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 OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ReasoningEffort, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SecretState, type ShareResponse, type ShareVisibility, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, 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, VERTEX_REGIONS, type Values, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, experimentIds, experimentIdsSchema, experimentsSchema, followUpDataSchema, geminiDefaultModelId, geminiModels, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, installMarketplaceItemOptionsSchema, ipcMessageSchema, isGlobalStateKey, isLanguage, isModelParameter, isSecretStateKey, isSubtaskSchema, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, shareResponseSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|