@roo-code/types 1.28.0 → 1.30.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 +317 -228
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +592 -104
- package/dist/index.d.ts +592 -104
- package/dist/index.js +313 -227
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -444,12 +444,7 @@ declare const bedrockModels: {
|
|
|
444
444
|
declare const BEDROCK_DEFAULT_TEMPERATURE = 0.3;
|
|
445
445
|
declare const BEDROCK_MAX_TOKENS = 4096;
|
|
446
446
|
declare const BEDROCK_DEFAULT_CONTEXT = 128000;
|
|
447
|
-
declare const
|
|
448
|
-
regionId: string;
|
|
449
|
-
description: string;
|
|
450
|
-
pattern?: string;
|
|
451
|
-
multiRegion?: boolean;
|
|
452
|
-
}>;
|
|
447
|
+
declare const AWS_INFERENCE_PROFILE_MAPPING: Array<[string, string]>;
|
|
453
448
|
declare const BEDROCK_REGIONS: {
|
|
454
449
|
value: string;
|
|
455
450
|
label: string;
|
|
@@ -662,56 +657,69 @@ type ClaudeCodeModelId = keyof typeof claudeCodeModels;
|
|
|
662
657
|
declare const claudeCodeDefaultModelId: ClaudeCodeModelId;
|
|
663
658
|
declare const claudeCodeModels: {
|
|
664
659
|
readonly "claude-sonnet-4-20250514": {
|
|
660
|
+
readonly supportsImages: false;
|
|
661
|
+
readonly supportsPromptCache: true;
|
|
662
|
+
readonly supportsReasoningEffort: false;
|
|
663
|
+
readonly supportsReasoningBudget: false;
|
|
664
|
+
readonly requiredReasoningBudget: false;
|
|
665
665
|
readonly maxTokens: 64000;
|
|
666
666
|
readonly contextWindow: 200000;
|
|
667
|
-
readonly supportsImages: true;
|
|
668
667
|
readonly supportsComputerUse: true;
|
|
669
|
-
readonly supportsPromptCache: true;
|
|
670
668
|
readonly inputPrice: 3;
|
|
671
669
|
readonly outputPrice: 15;
|
|
672
670
|
readonly cacheWritesPrice: 3.75;
|
|
673
671
|
readonly cacheReadsPrice: 0.3;
|
|
674
|
-
readonly supportsReasoningBudget: true;
|
|
675
672
|
};
|
|
676
673
|
readonly "claude-opus-4-20250514": {
|
|
674
|
+
readonly supportsImages: false;
|
|
675
|
+
readonly supportsPromptCache: true;
|
|
676
|
+
readonly supportsReasoningEffort: false;
|
|
677
|
+
readonly supportsReasoningBudget: false;
|
|
678
|
+
readonly requiredReasoningBudget: false;
|
|
677
679
|
readonly maxTokens: 32000;
|
|
678
680
|
readonly contextWindow: 200000;
|
|
679
|
-
readonly supportsImages: true;
|
|
680
681
|
readonly supportsComputerUse: true;
|
|
681
|
-
readonly supportsPromptCache: true;
|
|
682
682
|
readonly inputPrice: 15;
|
|
683
683
|
readonly outputPrice: 75;
|
|
684
684
|
readonly cacheWritesPrice: 18.75;
|
|
685
685
|
readonly cacheReadsPrice: 1.5;
|
|
686
|
-
readonly supportsReasoningBudget: true;
|
|
687
686
|
};
|
|
688
687
|
readonly "claude-3-7-sonnet-20250219": {
|
|
688
|
+
readonly supportsImages: false;
|
|
689
|
+
readonly supportsPromptCache: true;
|
|
690
|
+
readonly supportsReasoningEffort: false;
|
|
691
|
+
readonly supportsReasoningBudget: false;
|
|
692
|
+
readonly requiredReasoningBudget: false;
|
|
689
693
|
readonly maxTokens: 8192;
|
|
690
694
|
readonly contextWindow: 200000;
|
|
691
|
-
readonly supportsImages: true;
|
|
692
695
|
readonly supportsComputerUse: true;
|
|
693
|
-
readonly supportsPromptCache: true;
|
|
694
696
|
readonly inputPrice: 3;
|
|
695
697
|
readonly outputPrice: 15;
|
|
696
698
|
readonly cacheWritesPrice: 3.75;
|
|
697
699
|
readonly cacheReadsPrice: 0.3;
|
|
698
700
|
};
|
|
699
701
|
readonly "claude-3-5-sonnet-20241022": {
|
|
702
|
+
readonly supportsImages: false;
|
|
703
|
+
readonly supportsPromptCache: true;
|
|
704
|
+
readonly supportsReasoningEffort: false;
|
|
705
|
+
readonly supportsReasoningBudget: false;
|
|
706
|
+
readonly requiredReasoningBudget: false;
|
|
700
707
|
readonly maxTokens: 8192;
|
|
701
708
|
readonly contextWindow: 200000;
|
|
702
|
-
readonly supportsImages: true;
|
|
703
709
|
readonly supportsComputerUse: true;
|
|
704
|
-
readonly supportsPromptCache: true;
|
|
705
710
|
readonly inputPrice: 3;
|
|
706
711
|
readonly outputPrice: 15;
|
|
707
712
|
readonly cacheWritesPrice: 3.75;
|
|
708
713
|
readonly cacheReadsPrice: 0.3;
|
|
709
714
|
};
|
|
710
715
|
readonly "claude-3-5-haiku-20241022": {
|
|
711
|
-
readonly maxTokens: 8192;
|
|
712
|
-
readonly contextWindow: 200000;
|
|
713
716
|
readonly supportsImages: false;
|
|
714
717
|
readonly supportsPromptCache: true;
|
|
718
|
+
readonly supportsReasoningEffort: false;
|
|
719
|
+
readonly supportsReasoningBudget: false;
|
|
720
|
+
readonly requiredReasoningBudget: false;
|
|
721
|
+
readonly maxTokens: 8192;
|
|
722
|
+
readonly contextWindow: 200000;
|
|
715
723
|
readonly inputPrice: 1;
|
|
716
724
|
readonly outputPrice: 5;
|
|
717
725
|
readonly cacheWritesPrice: 1.25;
|
|
@@ -1200,7 +1208,7 @@ declare const groqModels: {
|
|
|
1200
1208
|
readonly description: "Alibaba Qwen QwQ 32B model, 128K context.";
|
|
1201
1209
|
};
|
|
1202
1210
|
readonly "qwen/qwen3-32b": {
|
|
1203
|
-
readonly maxTokens:
|
|
1211
|
+
readonly maxTokens: 40960;
|
|
1204
1212
|
readonly contextWindow: 131072;
|
|
1205
1213
|
readonly supportsImages: false;
|
|
1206
1214
|
readonly supportsPromptCache: false;
|
|
@@ -1999,8 +2007,8 @@ type AssertEqual<T extends true> = T;
|
|
|
1999
2007
|
/**
|
|
2000
2008
|
* ProviderName
|
|
2001
2009
|
*/
|
|
2002
|
-
declare const providerNames: readonly ["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"];
|
|
2003
|
-
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>;
|
|
2010
|
+
declare const providerNames: readonly ["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"];
|
|
2011
|
+
declare const providerNamesSchema: 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"]>;
|
|
2004
2012
|
type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
2005
2013
|
/**
|
|
2006
2014
|
* ProviderSettingsEntry
|
|
@@ -2008,15 +2016,15 @@ type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
|
2008
2016
|
declare const providerSettingsEntrySchema: z.ZodObject<{
|
|
2009
2017
|
id: z.ZodString;
|
|
2010
2018
|
name: z.ZodString;
|
|
2011
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
2019
|
+
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"]>>;
|
|
2012
2020
|
}, "strip", z.ZodTypeAny, {
|
|
2013
2021
|
name: string;
|
|
2014
2022
|
id: string;
|
|
2015
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
2023
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
2016
2024
|
}, {
|
|
2017
2025
|
name: string;
|
|
2018
2026
|
id: string;
|
|
2019
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
2027
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
2020
2028
|
}>;
|
|
2021
2029
|
type ProviderSettingsEntry = z.infer<typeof providerSettingsEntrySchema>;
|
|
2022
2030
|
declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiProvider", [z.ZodObject<{
|
|
@@ -2749,6 +2757,51 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2749
2757
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
2750
2758
|
} & {
|
|
2751
2759
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
2760
|
+
} & {
|
|
2761
|
+
geminiCliOAuthPath: z.ZodOptional<z.ZodString>;
|
|
2762
|
+
geminiCliProjectId: z.ZodOptional<z.ZodString>;
|
|
2763
|
+
} & {
|
|
2764
|
+
apiProvider: z.ZodLiteral<"gemini-cli">;
|
|
2765
|
+
}, "strip", z.ZodTypeAny, {
|
|
2766
|
+
apiProvider: "gemini-cli";
|
|
2767
|
+
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2768
|
+
includeMaxTokens?: boolean | undefined;
|
|
2769
|
+
diffEnabled?: boolean | undefined;
|
|
2770
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
2771
|
+
modelTemperature?: number | null | undefined;
|
|
2772
|
+
rateLimitSeconds?: number | undefined;
|
|
2773
|
+
enableReasoningEffort?: boolean | undefined;
|
|
2774
|
+
modelMaxTokens?: number | undefined;
|
|
2775
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
2776
|
+
apiModelId?: string | undefined;
|
|
2777
|
+
geminiCliOAuthPath?: string | undefined;
|
|
2778
|
+
geminiCliProjectId?: string | undefined;
|
|
2779
|
+
}, {
|
|
2780
|
+
apiProvider: "gemini-cli";
|
|
2781
|
+
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2782
|
+
includeMaxTokens?: boolean | undefined;
|
|
2783
|
+
diffEnabled?: boolean | undefined;
|
|
2784
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
2785
|
+
modelTemperature?: number | null | undefined;
|
|
2786
|
+
rateLimitSeconds?: number | undefined;
|
|
2787
|
+
enableReasoningEffort?: boolean | undefined;
|
|
2788
|
+
modelMaxTokens?: number | undefined;
|
|
2789
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
2790
|
+
apiModelId?: string | undefined;
|
|
2791
|
+
geminiCliOAuthPath?: string | undefined;
|
|
2792
|
+
geminiCliProjectId?: string | undefined;
|
|
2793
|
+
}>, z.ZodObject<{
|
|
2794
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2795
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2796
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2797
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2798
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2799
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
2800
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
2801
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
2802
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
2803
|
+
} & {
|
|
2804
|
+
apiModelId: z.ZodOptional<z.ZodString>;
|
|
2752
2805
|
} & {
|
|
2753
2806
|
openAiNativeApiKey: z.ZodOptional<z.ZodString>;
|
|
2754
2807
|
openAiNativeBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3236,6 +3289,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3236
3289
|
mistralCodestralUrl: z.ZodOptional<z.ZodString>;
|
|
3237
3290
|
openAiNativeApiKey: z.ZodOptional<z.ZodString>;
|
|
3238
3291
|
openAiNativeBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3292
|
+
geminiCliOAuthPath: z.ZodOptional<z.ZodString>;
|
|
3293
|
+
geminiCliProjectId: z.ZodOptional<z.ZodString>;
|
|
3239
3294
|
geminiApiKey: z.ZodOptional<z.ZodString>;
|
|
3240
3295
|
googleGeminiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3241
3296
|
lmStudioModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -3391,7 +3446,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3391
3446
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3392
3447
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3393
3448
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3394
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
3449
|
+
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"]>>;
|
|
3395
3450
|
}, "strip", z.ZodTypeAny, {
|
|
3396
3451
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3397
3452
|
codeIndexOpenAiKey?: string | undefined;
|
|
@@ -3399,7 +3454,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3399
3454
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3400
3455
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3401
3456
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3402
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3457
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3403
3458
|
includeMaxTokens?: boolean | undefined;
|
|
3404
3459
|
diffEnabled?: boolean | undefined;
|
|
3405
3460
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -3488,6 +3543,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3488
3543
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3489
3544
|
geminiApiKey?: string | undefined;
|
|
3490
3545
|
googleGeminiBaseUrl?: string | undefined;
|
|
3546
|
+
geminiCliOAuthPath?: string | undefined;
|
|
3547
|
+
geminiCliProjectId?: string | undefined;
|
|
3491
3548
|
openAiNativeApiKey?: string | undefined;
|
|
3492
3549
|
openAiNativeBaseUrl?: string | undefined;
|
|
3493
3550
|
mistralApiKey?: string | undefined;
|
|
@@ -3512,7 +3569,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3512
3569
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3513
3570
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3514
3571
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3515
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3572
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3516
3573
|
includeMaxTokens?: boolean | undefined;
|
|
3517
3574
|
diffEnabled?: boolean | undefined;
|
|
3518
3575
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -3601,6 +3658,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3601
3658
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3602
3659
|
geminiApiKey?: string | undefined;
|
|
3603
3660
|
googleGeminiBaseUrl?: string | undefined;
|
|
3661
|
+
geminiCliOAuthPath?: string | undefined;
|
|
3662
|
+
geminiCliProjectId?: string | undefined;
|
|
3604
3663
|
openAiNativeApiKey?: string | undefined;
|
|
3605
3664
|
openAiNativeBaseUrl?: string | undefined;
|
|
3606
3665
|
mistralApiKey?: string | undefined;
|
|
@@ -3620,7 +3679,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3620
3679
|
litellmModelId?: string | undefined;
|
|
3621
3680
|
}>;
|
|
3622
3681
|
type ProviderSettings = z.infer<typeof providerSettingsSchema>;
|
|
3623
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexOpenAiCompatibleModelDimension", "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", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
|
|
3682
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexOpenAiCompatibleModelDimension", "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"];
|
|
3624
3683
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
3625
3684
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
3626
3685
|
|
|
@@ -3632,15 +3691,15 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3632
3691
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3633
3692
|
id: z.ZodString;
|
|
3634
3693
|
name: z.ZodString;
|
|
3635
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
3694
|
+
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"]>>;
|
|
3636
3695
|
}, "strip", z.ZodTypeAny, {
|
|
3637
3696
|
name: string;
|
|
3638
3697
|
id: string;
|
|
3639
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3698
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3640
3699
|
}, {
|
|
3641
3700
|
name: string;
|
|
3642
3701
|
id: string;
|
|
3643
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3702
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3644
3703
|
}>, "many">>;
|
|
3645
3704
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3646
3705
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -3698,6 +3757,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3698
3757
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
3699
3758
|
alwaysAllowSubtasks: z.ZodOptional<z.ZodBoolean>;
|
|
3700
3759
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
3760
|
+
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
3761
|
+
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
3701
3762
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3702
3763
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3703
3764
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3790,18 +3851,21 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3790
3851
|
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
3791
3852
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3792
3853
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
3854
|
+
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
3793
3855
|
}, "strip", z.ZodTypeAny, {
|
|
3794
3856
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3795
3857
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3796
3858
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3797
3859
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3798
3860
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3861
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
3799
3862
|
}, {
|
|
3800
3863
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3801
3864
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3802
3865
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3803
3866
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3804
3867
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3868
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
3805
3869
|
}>>;
|
|
3806
3870
|
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"]>>;
|
|
3807
3871
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -3814,6 +3878,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3814
3878
|
name: z.ZodString;
|
|
3815
3879
|
roleDefinition: z.ZodString;
|
|
3816
3880
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
3881
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3817
3882
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
3818
3883
|
groups: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodTuple<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodObject<{
|
|
3819
3884
|
fileRegex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
@@ -3840,6 +3905,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3840
3905
|
description?: string | undefined;
|
|
3841
3906
|
fileRegex?: string | undefined;
|
|
3842
3907
|
}])[];
|
|
3908
|
+
description?: string | undefined;
|
|
3843
3909
|
whenToUse?: string | undefined;
|
|
3844
3910
|
customInstructions?: string | undefined;
|
|
3845
3911
|
source?: "global" | "project" | undefined;
|
|
@@ -3851,6 +3917,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3851
3917
|
description?: string | undefined;
|
|
3852
3918
|
fileRegex?: string | undefined;
|
|
3853
3919
|
}])[];
|
|
3920
|
+
description?: string | undefined;
|
|
3854
3921
|
whenToUse?: string | undefined;
|
|
3855
3922
|
customInstructions?: string | undefined;
|
|
3856
3923
|
source?: "global" | "project" | undefined;
|
|
@@ -3858,12 +3925,15 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3858
3925
|
customModePrompts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
3859
3926
|
roleDefinition: z.ZodOptional<z.ZodString>;
|
|
3860
3927
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
3928
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3861
3929
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
3862
3930
|
}, "strip", z.ZodTypeAny, {
|
|
3931
|
+
description?: string | undefined;
|
|
3863
3932
|
roleDefinition?: string | undefined;
|
|
3864
3933
|
whenToUse?: string | undefined;
|
|
3865
3934
|
customInstructions?: string | undefined;
|
|
3866
3935
|
}, {
|
|
3936
|
+
description?: string | undefined;
|
|
3867
3937
|
roleDefinition?: string | undefined;
|
|
3868
3938
|
whenToUse?: string | undefined;
|
|
3869
3939
|
customInstructions?: string | undefined;
|
|
@@ -3872,6 +3942,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3872
3942
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
3873
3943
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
3874
3944
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
3945
|
+
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
3946
|
+
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
3947
|
+
lastModeImportPath: z.ZodOptional<z.ZodString>;
|
|
3875
3948
|
}, "strip", z.ZodTypeAny, {
|
|
3876
3949
|
diffEnabled?: boolean | undefined;
|
|
3877
3950
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -3887,6 +3960,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3887
3960
|
description?: string | undefined;
|
|
3888
3961
|
fileRegex?: string | undefined;
|
|
3889
3962
|
}])[];
|
|
3963
|
+
description?: string | undefined;
|
|
3890
3964
|
whenToUse?: string | undefined;
|
|
3891
3965
|
customInstructions?: string | undefined;
|
|
3892
3966
|
source?: "global" | "project" | undefined;
|
|
@@ -3895,7 +3969,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3895
3969
|
listApiConfigMeta?: {
|
|
3896
3970
|
name: string;
|
|
3897
3971
|
id: string;
|
|
3898
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3972
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3899
3973
|
}[] | undefined;
|
|
3900
3974
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
3901
3975
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -3928,6 +4002,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3928
4002
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
3929
4003
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
3930
4004
|
alwaysAllowExecute?: boolean | undefined;
|
|
4005
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
4006
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
3931
4007
|
allowedCommands?: string[] | undefined;
|
|
3932
4008
|
allowedMaxRequests?: number | null | undefined;
|
|
3933
4009
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -3979,12 +4055,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3979
4055
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3980
4056
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3981
4057
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4058
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
3982
4059
|
} | undefined;
|
|
3983
4060
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
3984
4061
|
mcpEnabled?: boolean | undefined;
|
|
3985
4062
|
enableMcpServerCreation?: boolean | undefined;
|
|
3986
4063
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
3987
4064
|
customModePrompts?: Record<string, {
|
|
4065
|
+
description?: string | undefined;
|
|
3988
4066
|
roleDefinition?: string | undefined;
|
|
3989
4067
|
whenToUse?: string | undefined;
|
|
3990
4068
|
customInstructions?: string | undefined;
|
|
@@ -3993,6 +4071,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3993
4071
|
enhancementApiConfigId?: string | undefined;
|
|
3994
4072
|
historyPreviewCollapsed?: boolean | undefined;
|
|
3995
4073
|
profileThresholds?: Record<string, number> | undefined;
|
|
4074
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
4075
|
+
lastModeExportPath?: string | undefined;
|
|
4076
|
+
lastModeImportPath?: string | undefined;
|
|
3996
4077
|
}, {
|
|
3997
4078
|
diffEnabled?: boolean | undefined;
|
|
3998
4079
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -4008,6 +4089,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4008
4089
|
description?: string | undefined;
|
|
4009
4090
|
fileRegex?: string | undefined;
|
|
4010
4091
|
}])[];
|
|
4092
|
+
description?: string | undefined;
|
|
4011
4093
|
whenToUse?: string | undefined;
|
|
4012
4094
|
customInstructions?: string | undefined;
|
|
4013
4095
|
source?: "global" | "project" | undefined;
|
|
@@ -4016,7 +4098,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4016
4098
|
listApiConfigMeta?: {
|
|
4017
4099
|
name: string;
|
|
4018
4100
|
id: string;
|
|
4019
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4101
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4020
4102
|
}[] | undefined;
|
|
4021
4103
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4022
4104
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4049,6 +4131,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4049
4131
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
4050
4132
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
4051
4133
|
alwaysAllowExecute?: boolean | undefined;
|
|
4134
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
4135
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
4052
4136
|
allowedCommands?: string[] | undefined;
|
|
4053
4137
|
allowedMaxRequests?: number | null | undefined;
|
|
4054
4138
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -4100,12 +4184,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4100
4184
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4101
4185
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4102
4186
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4187
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
4103
4188
|
} | undefined;
|
|
4104
4189
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
4105
4190
|
mcpEnabled?: boolean | undefined;
|
|
4106
4191
|
enableMcpServerCreation?: boolean | undefined;
|
|
4107
4192
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
4108
4193
|
customModePrompts?: Record<string, {
|
|
4194
|
+
description?: string | undefined;
|
|
4109
4195
|
roleDefinition?: string | undefined;
|
|
4110
4196
|
whenToUse?: string | undefined;
|
|
4111
4197
|
customInstructions?: string | undefined;
|
|
@@ -4114,9 +4200,12 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4114
4200
|
enhancementApiConfigId?: string | undefined;
|
|
4115
4201
|
historyPreviewCollapsed?: boolean | undefined;
|
|
4116
4202
|
profileThresholds?: Record<string, number> | undefined;
|
|
4203
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
4204
|
+
lastModeExportPath?: string | undefined;
|
|
4205
|
+
lastModeImportPath?: string | undefined;
|
|
4117
4206
|
}>;
|
|
4118
4207
|
type GlobalSettings = z.infer<typeof globalSettingsSchema>;
|
|
4119
|
-
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", "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"];
|
|
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"];
|
|
4120
4209
|
/**
|
|
4121
4210
|
* RooCodeSettings
|
|
4122
4211
|
*/
|
|
@@ -4150,6 +4239,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4150
4239
|
mistralCodestralUrl: z.ZodOptional<z.ZodString>;
|
|
4151
4240
|
openAiNativeApiKey: z.ZodOptional<z.ZodString>;
|
|
4152
4241
|
openAiNativeBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4242
|
+
geminiCliOAuthPath: z.ZodOptional<z.ZodString>;
|
|
4243
|
+
geminiCliProjectId: z.ZodOptional<z.ZodString>;
|
|
4153
4244
|
geminiApiKey: z.ZodOptional<z.ZodString>;
|
|
4154
4245
|
googleGeminiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4155
4246
|
lmStudioModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -4305,21 +4396,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4305
4396
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
4306
4397
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4307
4398
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
4308
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
4399
|
+
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"]>>;
|
|
4309
4400
|
} & {
|
|
4310
4401
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
4311
4402
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4312
4403
|
id: z.ZodString;
|
|
4313
4404
|
name: z.ZodString;
|
|
4314
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
4405
|
+
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"]>>;
|
|
4315
4406
|
}, "strip", z.ZodTypeAny, {
|
|
4316
4407
|
name: string;
|
|
4317
4408
|
id: string;
|
|
4318
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4409
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4319
4410
|
}, {
|
|
4320
4411
|
name: string;
|
|
4321
4412
|
id: string;
|
|
4322
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4413
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4323
4414
|
}>, "many">>;
|
|
4324
4415
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4325
4416
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -4377,6 +4468,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4377
4468
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
4378
4469
|
alwaysAllowSubtasks: z.ZodOptional<z.ZodBoolean>;
|
|
4379
4470
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
4471
|
+
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
4472
|
+
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
4380
4473
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4381
4474
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4382
4475
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4469,18 +4562,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4469
4562
|
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
4470
4563
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4471
4564
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
4565
|
+
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
4472
4566
|
}, "strip", z.ZodTypeAny, {
|
|
4473
4567
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4474
4568
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4475
4569
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4476
4570
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4477
4571
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4572
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
4478
4573
|
}, {
|
|
4479
4574
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4480
4575
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4481
4576
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4482
4577
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4483
4578
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4579
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
4484
4580
|
}>>;
|
|
4485
4581
|
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"]>>;
|
|
4486
4582
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -4493,6 +4589,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4493
4589
|
name: z.ZodString;
|
|
4494
4590
|
roleDefinition: z.ZodString;
|
|
4495
4591
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
4592
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4496
4593
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
4497
4594
|
groups: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodTuple<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodObject<{
|
|
4498
4595
|
fileRegex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
@@ -4519,6 +4616,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4519
4616
|
description?: string | undefined;
|
|
4520
4617
|
fileRegex?: string | undefined;
|
|
4521
4618
|
}])[];
|
|
4619
|
+
description?: string | undefined;
|
|
4522
4620
|
whenToUse?: string | undefined;
|
|
4523
4621
|
customInstructions?: string | undefined;
|
|
4524
4622
|
source?: "global" | "project" | undefined;
|
|
@@ -4530,6 +4628,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4530
4628
|
description?: string | undefined;
|
|
4531
4629
|
fileRegex?: string | undefined;
|
|
4532
4630
|
}])[];
|
|
4631
|
+
description?: string | undefined;
|
|
4533
4632
|
whenToUse?: string | undefined;
|
|
4534
4633
|
customInstructions?: string | undefined;
|
|
4535
4634
|
source?: "global" | "project" | undefined;
|
|
@@ -4537,12 +4636,15 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4537
4636
|
customModePrompts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
4538
4637
|
roleDefinition: z.ZodOptional<z.ZodString>;
|
|
4539
4638
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
4639
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4540
4640
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
4541
4641
|
}, "strip", z.ZodTypeAny, {
|
|
4642
|
+
description?: string | undefined;
|
|
4542
4643
|
roleDefinition?: string | undefined;
|
|
4543
4644
|
whenToUse?: string | undefined;
|
|
4544
4645
|
customInstructions?: string | undefined;
|
|
4545
4646
|
}, {
|
|
4647
|
+
description?: string | undefined;
|
|
4546
4648
|
roleDefinition?: string | undefined;
|
|
4547
4649
|
whenToUse?: string | undefined;
|
|
4548
4650
|
customInstructions?: string | undefined;
|
|
@@ -4551,6 +4653,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4551
4653
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
4552
4654
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
4553
4655
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
4656
|
+
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
4657
|
+
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
4658
|
+
lastModeImportPath: z.ZodOptional<z.ZodString>;
|
|
4554
4659
|
}, "strip", z.ZodTypeAny, {
|
|
4555
4660
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
4556
4661
|
codeIndexOpenAiKey?: string | undefined;
|
|
@@ -4558,7 +4663,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4558
4663
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4559
4664
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4560
4665
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4561
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4666
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4562
4667
|
includeMaxTokens?: boolean | undefined;
|
|
4563
4668
|
diffEnabled?: boolean | undefined;
|
|
4564
4669
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -4647,6 +4752,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4647
4752
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
4648
4753
|
geminiApiKey?: string | undefined;
|
|
4649
4754
|
googleGeminiBaseUrl?: string | undefined;
|
|
4755
|
+
geminiCliOAuthPath?: string | undefined;
|
|
4756
|
+
geminiCliProjectId?: string | undefined;
|
|
4650
4757
|
openAiNativeApiKey?: string | undefined;
|
|
4651
4758
|
openAiNativeBaseUrl?: string | undefined;
|
|
4652
4759
|
mistralApiKey?: string | undefined;
|
|
@@ -4675,6 +4782,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4675
4782
|
description?: string | undefined;
|
|
4676
4783
|
fileRegex?: string | undefined;
|
|
4677
4784
|
}])[];
|
|
4785
|
+
description?: string | undefined;
|
|
4678
4786
|
whenToUse?: string | undefined;
|
|
4679
4787
|
customInstructions?: string | undefined;
|
|
4680
4788
|
source?: "global" | "project" | undefined;
|
|
@@ -4683,7 +4791,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4683
4791
|
listApiConfigMeta?: {
|
|
4684
4792
|
name: string;
|
|
4685
4793
|
id: string;
|
|
4686
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4794
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4687
4795
|
}[] | undefined;
|
|
4688
4796
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4689
4797
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4716,6 +4824,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4716
4824
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
4717
4825
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
4718
4826
|
alwaysAllowExecute?: boolean | undefined;
|
|
4827
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
4828
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
4719
4829
|
allowedCommands?: string[] | undefined;
|
|
4720
4830
|
allowedMaxRequests?: number | null | undefined;
|
|
4721
4831
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -4767,12 +4877,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4767
4877
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4768
4878
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4769
4879
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4880
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
4770
4881
|
} | undefined;
|
|
4771
4882
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
4772
4883
|
mcpEnabled?: boolean | undefined;
|
|
4773
4884
|
enableMcpServerCreation?: boolean | undefined;
|
|
4774
4885
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
4775
4886
|
customModePrompts?: Record<string, {
|
|
4887
|
+
description?: string | undefined;
|
|
4776
4888
|
roleDefinition?: string | undefined;
|
|
4777
4889
|
whenToUse?: string | undefined;
|
|
4778
4890
|
customInstructions?: string | undefined;
|
|
@@ -4781,6 +4893,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4781
4893
|
enhancementApiConfigId?: string | undefined;
|
|
4782
4894
|
historyPreviewCollapsed?: boolean | undefined;
|
|
4783
4895
|
profileThresholds?: Record<string, number> | undefined;
|
|
4896
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
4897
|
+
lastModeExportPath?: string | undefined;
|
|
4898
|
+
lastModeImportPath?: string | undefined;
|
|
4784
4899
|
}, {
|
|
4785
4900
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
4786
4901
|
codeIndexOpenAiKey?: string | undefined;
|
|
@@ -4788,7 +4903,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4788
4903
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4789
4904
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4790
4905
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4791
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4906
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4792
4907
|
includeMaxTokens?: boolean | undefined;
|
|
4793
4908
|
diffEnabled?: boolean | undefined;
|
|
4794
4909
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -4877,6 +4992,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4877
4992
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
4878
4993
|
geminiApiKey?: string | undefined;
|
|
4879
4994
|
googleGeminiBaseUrl?: string | undefined;
|
|
4995
|
+
geminiCliOAuthPath?: string | undefined;
|
|
4996
|
+
geminiCliProjectId?: string | undefined;
|
|
4880
4997
|
openAiNativeApiKey?: string | undefined;
|
|
4881
4998
|
openAiNativeBaseUrl?: string | undefined;
|
|
4882
4999
|
mistralApiKey?: string | undefined;
|
|
@@ -4905,6 +5022,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4905
5022
|
description?: string | undefined;
|
|
4906
5023
|
fileRegex?: string | undefined;
|
|
4907
5024
|
}])[];
|
|
5025
|
+
description?: string | undefined;
|
|
4908
5026
|
whenToUse?: string | undefined;
|
|
4909
5027
|
customInstructions?: string | undefined;
|
|
4910
5028
|
source?: "global" | "project" | undefined;
|
|
@@ -4913,7 +5031,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4913
5031
|
listApiConfigMeta?: {
|
|
4914
5032
|
name: string;
|
|
4915
5033
|
id: string;
|
|
4916
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5034
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4917
5035
|
}[] | undefined;
|
|
4918
5036
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4919
5037
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4946,6 +5064,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4946
5064
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
4947
5065
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
4948
5066
|
alwaysAllowExecute?: boolean | undefined;
|
|
5067
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
5068
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
4949
5069
|
allowedCommands?: string[] | undefined;
|
|
4950
5070
|
allowedMaxRequests?: number | null | undefined;
|
|
4951
5071
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -4997,12 +5117,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4997
5117
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4998
5118
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4999
5119
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5120
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
5000
5121
|
} | undefined;
|
|
5001
5122
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
5002
5123
|
mcpEnabled?: boolean | undefined;
|
|
5003
5124
|
enableMcpServerCreation?: boolean | undefined;
|
|
5004
5125
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
5005
5126
|
customModePrompts?: Record<string, {
|
|
5127
|
+
description?: string | undefined;
|
|
5006
5128
|
roleDefinition?: string | undefined;
|
|
5007
5129
|
whenToUse?: string | undefined;
|
|
5008
5130
|
customInstructions?: string | undefined;
|
|
@@ -5011,6 +5133,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5011
5133
|
enhancementApiConfigId?: string | undefined;
|
|
5012
5134
|
historyPreviewCollapsed?: boolean | undefined;
|
|
5013
5135
|
profileThresholds?: Record<string, number> | undefined;
|
|
5136
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
5137
|
+
lastModeExportPath?: string | undefined;
|
|
5138
|
+
lastModeImportPath?: string | undefined;
|
|
5014
5139
|
}>;
|
|
5015
5140
|
type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
5016
5141
|
/**
|
|
@@ -5686,6 +5811,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5686
5811
|
mistralCodestralUrl: z.ZodOptional<z.ZodString>;
|
|
5687
5812
|
openAiNativeApiKey: z.ZodOptional<z.ZodString>;
|
|
5688
5813
|
openAiNativeBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5814
|
+
geminiCliOAuthPath: z.ZodOptional<z.ZodString>;
|
|
5815
|
+
geminiCliProjectId: z.ZodOptional<z.ZodString>;
|
|
5689
5816
|
geminiApiKey: z.ZodOptional<z.ZodString>;
|
|
5690
5817
|
googleGeminiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5691
5818
|
lmStudioModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -5841,21 +5968,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5841
5968
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
5842
5969
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5843
5970
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
5844
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
5971
|
+
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"]>>;
|
|
5845
5972
|
} & {
|
|
5846
5973
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
5847
5974
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5848
5975
|
id: z.ZodString;
|
|
5849
5976
|
name: z.ZodString;
|
|
5850
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
5977
|
+
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"]>>;
|
|
5851
5978
|
}, "strip", z.ZodTypeAny, {
|
|
5852
5979
|
name: string;
|
|
5853
5980
|
id: string;
|
|
5854
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5981
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5855
5982
|
}, {
|
|
5856
5983
|
name: string;
|
|
5857
5984
|
id: string;
|
|
5858
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5985
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5859
5986
|
}>, "many">>;
|
|
5860
5987
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
5861
5988
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -5913,6 +6040,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5913
6040
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
5914
6041
|
alwaysAllowSubtasks: z.ZodOptional<z.ZodBoolean>;
|
|
5915
6042
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
6043
|
+
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
6044
|
+
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
5916
6045
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5917
6046
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5918
6047
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6005,18 +6134,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6005
6134
|
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
6006
6135
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6007
6136
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
6137
|
+
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
6008
6138
|
}, "strip", z.ZodTypeAny, {
|
|
6009
6139
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6010
6140
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6011
6141
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6012
6142
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6013
6143
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6144
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
6014
6145
|
}, {
|
|
6015
6146
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6016
6147
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6017
6148
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6018
6149
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6019
6150
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6151
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
6020
6152
|
}>>;
|
|
6021
6153
|
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"]>>;
|
|
6022
6154
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -6029,6 +6161,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6029
6161
|
name: z.ZodString;
|
|
6030
6162
|
roleDefinition: z.ZodString;
|
|
6031
6163
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
6164
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6032
6165
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
6033
6166
|
groups: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodTuple<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodObject<{
|
|
6034
6167
|
fileRegex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
@@ -6055,6 +6188,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6055
6188
|
description?: string | undefined;
|
|
6056
6189
|
fileRegex?: string | undefined;
|
|
6057
6190
|
}])[];
|
|
6191
|
+
description?: string | undefined;
|
|
6058
6192
|
whenToUse?: string | undefined;
|
|
6059
6193
|
customInstructions?: string | undefined;
|
|
6060
6194
|
source?: "global" | "project" | undefined;
|
|
@@ -6066,6 +6200,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6066
6200
|
description?: string | undefined;
|
|
6067
6201
|
fileRegex?: string | undefined;
|
|
6068
6202
|
}])[];
|
|
6203
|
+
description?: string | undefined;
|
|
6069
6204
|
whenToUse?: string | undefined;
|
|
6070
6205
|
customInstructions?: string | undefined;
|
|
6071
6206
|
source?: "global" | "project" | undefined;
|
|
@@ -6073,12 +6208,15 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6073
6208
|
customModePrompts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
6074
6209
|
roleDefinition: z.ZodOptional<z.ZodString>;
|
|
6075
6210
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
6211
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6076
6212
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
6077
6213
|
}, "strip", z.ZodTypeAny, {
|
|
6214
|
+
description?: string | undefined;
|
|
6078
6215
|
roleDefinition?: string | undefined;
|
|
6079
6216
|
whenToUse?: string | undefined;
|
|
6080
6217
|
customInstructions?: string | undefined;
|
|
6081
6218
|
}, {
|
|
6219
|
+
description?: string | undefined;
|
|
6082
6220
|
roleDefinition?: string | undefined;
|
|
6083
6221
|
whenToUse?: string | undefined;
|
|
6084
6222
|
customInstructions?: string | undefined;
|
|
@@ -6087,6 +6225,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6087
6225
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
6088
6226
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
6089
6227
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
6228
|
+
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
6229
|
+
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
6230
|
+
lastModeImportPath: z.ZodOptional<z.ZodString>;
|
|
6090
6231
|
}, "strip", z.ZodTypeAny, {
|
|
6091
6232
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6092
6233
|
codeIndexOpenAiKey?: string | undefined;
|
|
@@ -6094,7 +6235,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6094
6235
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6095
6236
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6096
6237
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6097
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6238
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6098
6239
|
includeMaxTokens?: boolean | undefined;
|
|
6099
6240
|
diffEnabled?: boolean | undefined;
|
|
6100
6241
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -6183,6 +6324,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6183
6324
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
6184
6325
|
geminiApiKey?: string | undefined;
|
|
6185
6326
|
googleGeminiBaseUrl?: string | undefined;
|
|
6327
|
+
geminiCliOAuthPath?: string | undefined;
|
|
6328
|
+
geminiCliProjectId?: string | undefined;
|
|
6186
6329
|
openAiNativeApiKey?: string | undefined;
|
|
6187
6330
|
openAiNativeBaseUrl?: string | undefined;
|
|
6188
6331
|
mistralApiKey?: string | undefined;
|
|
@@ -6211,6 +6354,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6211
6354
|
description?: string | undefined;
|
|
6212
6355
|
fileRegex?: string | undefined;
|
|
6213
6356
|
}])[];
|
|
6357
|
+
description?: string | undefined;
|
|
6214
6358
|
whenToUse?: string | undefined;
|
|
6215
6359
|
customInstructions?: string | undefined;
|
|
6216
6360
|
source?: "global" | "project" | undefined;
|
|
@@ -6219,7 +6363,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6219
6363
|
listApiConfigMeta?: {
|
|
6220
6364
|
name: string;
|
|
6221
6365
|
id: string;
|
|
6222
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6366
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6223
6367
|
}[] | undefined;
|
|
6224
6368
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6225
6369
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6252,6 +6396,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6252
6396
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
6253
6397
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
6254
6398
|
alwaysAllowExecute?: boolean | undefined;
|
|
6399
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
6400
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
6255
6401
|
allowedCommands?: string[] | undefined;
|
|
6256
6402
|
allowedMaxRequests?: number | null | undefined;
|
|
6257
6403
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -6303,12 +6449,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6303
6449
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6304
6450
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6305
6451
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6452
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
6306
6453
|
} | undefined;
|
|
6307
6454
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
6308
6455
|
mcpEnabled?: boolean | undefined;
|
|
6309
6456
|
enableMcpServerCreation?: boolean | undefined;
|
|
6310
6457
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
6311
6458
|
customModePrompts?: Record<string, {
|
|
6459
|
+
description?: string | undefined;
|
|
6312
6460
|
roleDefinition?: string | undefined;
|
|
6313
6461
|
whenToUse?: string | undefined;
|
|
6314
6462
|
customInstructions?: string | undefined;
|
|
@@ -6317,6 +6465,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6317
6465
|
enhancementApiConfigId?: string | undefined;
|
|
6318
6466
|
historyPreviewCollapsed?: boolean | undefined;
|
|
6319
6467
|
profileThresholds?: Record<string, number> | undefined;
|
|
6468
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
6469
|
+
lastModeExportPath?: string | undefined;
|
|
6470
|
+
lastModeImportPath?: string | undefined;
|
|
6320
6471
|
}, {
|
|
6321
6472
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6322
6473
|
codeIndexOpenAiKey?: string | undefined;
|
|
@@ -6324,7 +6475,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6324
6475
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6325
6476
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6326
6477
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6327
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6478
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6328
6479
|
includeMaxTokens?: boolean | undefined;
|
|
6329
6480
|
diffEnabled?: boolean | undefined;
|
|
6330
6481
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -6413,6 +6564,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6413
6564
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
6414
6565
|
geminiApiKey?: string | undefined;
|
|
6415
6566
|
googleGeminiBaseUrl?: string | undefined;
|
|
6567
|
+
geminiCliOAuthPath?: string | undefined;
|
|
6568
|
+
geminiCliProjectId?: string | undefined;
|
|
6416
6569
|
openAiNativeApiKey?: string | undefined;
|
|
6417
6570
|
openAiNativeBaseUrl?: string | undefined;
|
|
6418
6571
|
mistralApiKey?: string | undefined;
|
|
@@ -6441,6 +6594,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6441
6594
|
description?: string | undefined;
|
|
6442
6595
|
fileRegex?: string | undefined;
|
|
6443
6596
|
}])[];
|
|
6597
|
+
description?: string | undefined;
|
|
6444
6598
|
whenToUse?: string | undefined;
|
|
6445
6599
|
customInstructions?: string | undefined;
|
|
6446
6600
|
source?: "global" | "project" | undefined;
|
|
@@ -6449,7 +6603,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6449
6603
|
listApiConfigMeta?: {
|
|
6450
6604
|
name: string;
|
|
6451
6605
|
id: string;
|
|
6452
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6606
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6453
6607
|
}[] | undefined;
|
|
6454
6608
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6455
6609
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6482,6 +6636,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6482
6636
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
6483
6637
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
6484
6638
|
alwaysAllowExecute?: boolean | undefined;
|
|
6639
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
6640
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
6485
6641
|
allowedCommands?: string[] | undefined;
|
|
6486
6642
|
allowedMaxRequests?: number | null | undefined;
|
|
6487
6643
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -6533,12 +6689,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6533
6689
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6534
6690
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6535
6691
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6692
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
6536
6693
|
} | undefined;
|
|
6537
6694
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
6538
6695
|
mcpEnabled?: boolean | undefined;
|
|
6539
6696
|
enableMcpServerCreation?: boolean | undefined;
|
|
6540
6697
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
6541
6698
|
customModePrompts?: Record<string, {
|
|
6699
|
+
description?: string | undefined;
|
|
6542
6700
|
roleDefinition?: string | undefined;
|
|
6543
6701
|
whenToUse?: string | undefined;
|
|
6544
6702
|
customInstructions?: string | undefined;
|
|
@@ -6547,6 +6705,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6547
6705
|
enhancementApiConfigId?: string | undefined;
|
|
6548
6706
|
historyPreviewCollapsed?: boolean | undefined;
|
|
6549
6707
|
profileThresholds?: Record<string, number> | undefined;
|
|
6708
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
6709
|
+
lastModeExportPath?: string | undefined;
|
|
6710
|
+
lastModeImportPath?: string | undefined;
|
|
6550
6711
|
}>;
|
|
6551
6712
|
text: z.ZodString;
|
|
6552
6713
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -6560,7 +6721,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6560
6721
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6561
6722
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6562
6723
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6563
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6724
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6564
6725
|
includeMaxTokens?: boolean | undefined;
|
|
6565
6726
|
diffEnabled?: boolean | undefined;
|
|
6566
6727
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -6649,6 +6810,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6649
6810
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
6650
6811
|
geminiApiKey?: string | undefined;
|
|
6651
6812
|
googleGeminiBaseUrl?: string | undefined;
|
|
6813
|
+
geminiCliOAuthPath?: string | undefined;
|
|
6814
|
+
geminiCliProjectId?: string | undefined;
|
|
6652
6815
|
openAiNativeApiKey?: string | undefined;
|
|
6653
6816
|
openAiNativeBaseUrl?: string | undefined;
|
|
6654
6817
|
mistralApiKey?: string | undefined;
|
|
@@ -6677,6 +6840,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6677
6840
|
description?: string | undefined;
|
|
6678
6841
|
fileRegex?: string | undefined;
|
|
6679
6842
|
}])[];
|
|
6843
|
+
description?: string | undefined;
|
|
6680
6844
|
whenToUse?: string | undefined;
|
|
6681
6845
|
customInstructions?: string | undefined;
|
|
6682
6846
|
source?: "global" | "project" | undefined;
|
|
@@ -6685,7 +6849,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6685
6849
|
listApiConfigMeta?: {
|
|
6686
6850
|
name: string;
|
|
6687
6851
|
id: string;
|
|
6688
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6852
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6689
6853
|
}[] | undefined;
|
|
6690
6854
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6691
6855
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6718,6 +6882,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6718
6882
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
6719
6883
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
6720
6884
|
alwaysAllowExecute?: boolean | undefined;
|
|
6885
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
6886
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
6721
6887
|
allowedCommands?: string[] | undefined;
|
|
6722
6888
|
allowedMaxRequests?: number | null | undefined;
|
|
6723
6889
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -6769,12 +6935,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6769
6935
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6770
6936
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6771
6937
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6938
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
6772
6939
|
} | undefined;
|
|
6773
6940
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
6774
6941
|
mcpEnabled?: boolean | undefined;
|
|
6775
6942
|
enableMcpServerCreation?: boolean | undefined;
|
|
6776
6943
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
6777
6944
|
customModePrompts?: Record<string, {
|
|
6945
|
+
description?: string | undefined;
|
|
6778
6946
|
roleDefinition?: string | undefined;
|
|
6779
6947
|
whenToUse?: string | undefined;
|
|
6780
6948
|
customInstructions?: string | undefined;
|
|
@@ -6783,6 +6951,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6783
6951
|
enhancementApiConfigId?: string | undefined;
|
|
6784
6952
|
historyPreviewCollapsed?: boolean | undefined;
|
|
6785
6953
|
profileThresholds?: Record<string, number> | undefined;
|
|
6954
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
6955
|
+
lastModeExportPath?: string | undefined;
|
|
6956
|
+
lastModeImportPath?: string | undefined;
|
|
6786
6957
|
};
|
|
6787
6958
|
images?: string[] | undefined;
|
|
6788
6959
|
newTab?: boolean | undefined;
|
|
@@ -6795,7 +6966,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6795
6966
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6796
6967
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6797
6968
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6798
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6969
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6799
6970
|
includeMaxTokens?: boolean | undefined;
|
|
6800
6971
|
diffEnabled?: boolean | undefined;
|
|
6801
6972
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -6884,6 +7055,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6884
7055
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
6885
7056
|
geminiApiKey?: string | undefined;
|
|
6886
7057
|
googleGeminiBaseUrl?: string | undefined;
|
|
7058
|
+
geminiCliOAuthPath?: string | undefined;
|
|
7059
|
+
geminiCliProjectId?: string | undefined;
|
|
6887
7060
|
openAiNativeApiKey?: string | undefined;
|
|
6888
7061
|
openAiNativeBaseUrl?: string | undefined;
|
|
6889
7062
|
mistralApiKey?: string | undefined;
|
|
@@ -6912,6 +7085,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6912
7085
|
description?: string | undefined;
|
|
6913
7086
|
fileRegex?: string | undefined;
|
|
6914
7087
|
}])[];
|
|
7088
|
+
description?: string | undefined;
|
|
6915
7089
|
whenToUse?: string | undefined;
|
|
6916
7090
|
customInstructions?: string | undefined;
|
|
6917
7091
|
source?: "global" | "project" | undefined;
|
|
@@ -6920,7 +7094,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6920
7094
|
listApiConfigMeta?: {
|
|
6921
7095
|
name: string;
|
|
6922
7096
|
id: string;
|
|
6923
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7097
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6924
7098
|
}[] | undefined;
|
|
6925
7099
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6926
7100
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6953,6 +7127,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6953
7127
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
6954
7128
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
6955
7129
|
alwaysAllowExecute?: boolean | undefined;
|
|
7130
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
7131
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
6956
7132
|
allowedCommands?: string[] | undefined;
|
|
6957
7133
|
allowedMaxRequests?: number | null | undefined;
|
|
6958
7134
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -7004,12 +7180,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7004
7180
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7005
7181
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7006
7182
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7183
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
7007
7184
|
} | undefined;
|
|
7008
7185
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
7009
7186
|
mcpEnabled?: boolean | undefined;
|
|
7010
7187
|
enableMcpServerCreation?: boolean | undefined;
|
|
7011
7188
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
7012
7189
|
customModePrompts?: Record<string, {
|
|
7190
|
+
description?: string | undefined;
|
|
7013
7191
|
roleDefinition?: string | undefined;
|
|
7014
7192
|
whenToUse?: string | undefined;
|
|
7015
7193
|
customInstructions?: string | undefined;
|
|
@@ -7018,6 +7196,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7018
7196
|
enhancementApiConfigId?: string | undefined;
|
|
7019
7197
|
historyPreviewCollapsed?: boolean | undefined;
|
|
7020
7198
|
profileThresholds?: Record<string, number> | undefined;
|
|
7199
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
7200
|
+
lastModeExportPath?: string | undefined;
|
|
7201
|
+
lastModeImportPath?: string | undefined;
|
|
7021
7202
|
};
|
|
7022
7203
|
images?: string[] | undefined;
|
|
7023
7204
|
newTab?: boolean | undefined;
|
|
@@ -7033,7 +7214,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7033
7214
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7034
7215
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7035
7216
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
7036
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7217
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7037
7218
|
includeMaxTokens?: boolean | undefined;
|
|
7038
7219
|
diffEnabled?: boolean | undefined;
|
|
7039
7220
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -7122,6 +7303,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7122
7303
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
7123
7304
|
geminiApiKey?: string | undefined;
|
|
7124
7305
|
googleGeminiBaseUrl?: string | undefined;
|
|
7306
|
+
geminiCliOAuthPath?: string | undefined;
|
|
7307
|
+
geminiCliProjectId?: string | undefined;
|
|
7125
7308
|
openAiNativeApiKey?: string | undefined;
|
|
7126
7309
|
openAiNativeBaseUrl?: string | undefined;
|
|
7127
7310
|
mistralApiKey?: string | undefined;
|
|
@@ -7150,6 +7333,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7150
7333
|
description?: string | undefined;
|
|
7151
7334
|
fileRegex?: string | undefined;
|
|
7152
7335
|
}])[];
|
|
7336
|
+
description?: string | undefined;
|
|
7153
7337
|
whenToUse?: string | undefined;
|
|
7154
7338
|
customInstructions?: string | undefined;
|
|
7155
7339
|
source?: "global" | "project" | undefined;
|
|
@@ -7158,7 +7342,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7158
7342
|
listApiConfigMeta?: {
|
|
7159
7343
|
name: string;
|
|
7160
7344
|
id: string;
|
|
7161
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7345
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7162
7346
|
}[] | undefined;
|
|
7163
7347
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7164
7348
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7191,6 +7375,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7191
7375
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
7192
7376
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
7193
7377
|
alwaysAllowExecute?: boolean | undefined;
|
|
7378
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
7379
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
7194
7380
|
allowedCommands?: string[] | undefined;
|
|
7195
7381
|
allowedMaxRequests?: number | null | undefined;
|
|
7196
7382
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -7242,12 +7428,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7242
7428
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7243
7429
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7244
7430
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7431
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
7245
7432
|
} | undefined;
|
|
7246
7433
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
7247
7434
|
mcpEnabled?: boolean | undefined;
|
|
7248
7435
|
enableMcpServerCreation?: boolean | undefined;
|
|
7249
7436
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
7250
7437
|
customModePrompts?: Record<string, {
|
|
7438
|
+
description?: string | undefined;
|
|
7251
7439
|
roleDefinition?: string | undefined;
|
|
7252
7440
|
whenToUse?: string | undefined;
|
|
7253
7441
|
customInstructions?: string | undefined;
|
|
@@ -7256,6 +7444,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7256
7444
|
enhancementApiConfigId?: string | undefined;
|
|
7257
7445
|
historyPreviewCollapsed?: boolean | undefined;
|
|
7258
7446
|
profileThresholds?: Record<string, number> | undefined;
|
|
7447
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
7448
|
+
lastModeExportPath?: string | undefined;
|
|
7449
|
+
lastModeImportPath?: string | undefined;
|
|
7259
7450
|
};
|
|
7260
7451
|
images?: string[] | undefined;
|
|
7261
7452
|
newTab?: boolean | undefined;
|
|
@@ -7271,7 +7462,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7271
7462
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7272
7463
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7273
7464
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
7274
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7465
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7275
7466
|
includeMaxTokens?: boolean | undefined;
|
|
7276
7467
|
diffEnabled?: boolean | undefined;
|
|
7277
7468
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -7360,6 +7551,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7360
7551
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
7361
7552
|
geminiApiKey?: string | undefined;
|
|
7362
7553
|
googleGeminiBaseUrl?: string | undefined;
|
|
7554
|
+
geminiCliOAuthPath?: string | undefined;
|
|
7555
|
+
geminiCliProjectId?: string | undefined;
|
|
7363
7556
|
openAiNativeApiKey?: string | undefined;
|
|
7364
7557
|
openAiNativeBaseUrl?: string | undefined;
|
|
7365
7558
|
mistralApiKey?: string | undefined;
|
|
@@ -7388,6 +7581,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7388
7581
|
description?: string | undefined;
|
|
7389
7582
|
fileRegex?: string | undefined;
|
|
7390
7583
|
}])[];
|
|
7584
|
+
description?: string | undefined;
|
|
7391
7585
|
whenToUse?: string | undefined;
|
|
7392
7586
|
customInstructions?: string | undefined;
|
|
7393
7587
|
source?: "global" | "project" | undefined;
|
|
@@ -7396,7 +7590,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7396
7590
|
listApiConfigMeta?: {
|
|
7397
7591
|
name: string;
|
|
7398
7592
|
id: string;
|
|
7399
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7593
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
7400
7594
|
}[] | undefined;
|
|
7401
7595
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7402
7596
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7429,6 +7623,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7429
7623
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
7430
7624
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
7431
7625
|
alwaysAllowExecute?: boolean | undefined;
|
|
7626
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
7627
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
7432
7628
|
allowedCommands?: string[] | undefined;
|
|
7433
7629
|
allowedMaxRequests?: number | null | undefined;
|
|
7434
7630
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -7480,12 +7676,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7480
7676
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7481
7677
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7482
7678
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7679
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
7483
7680
|
} | undefined;
|
|
7484
7681
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
7485
7682
|
mcpEnabled?: boolean | undefined;
|
|
7486
7683
|
enableMcpServerCreation?: boolean | undefined;
|
|
7487
7684
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
7488
7685
|
customModePrompts?: Record<string, {
|
|
7686
|
+
description?: string | undefined;
|
|
7489
7687
|
roleDefinition?: string | undefined;
|
|
7490
7688
|
whenToUse?: string | undefined;
|
|
7491
7689
|
customInstructions?: string | undefined;
|
|
@@ -7494,6 +7692,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7494
7692
|
enhancementApiConfigId?: string | undefined;
|
|
7495
7693
|
historyPreviewCollapsed?: boolean | undefined;
|
|
7496
7694
|
profileThresholds?: Record<string, number> | undefined;
|
|
7695
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
7696
|
+
lastModeExportPath?: string | undefined;
|
|
7697
|
+
lastModeImportPath?: string | undefined;
|
|
7497
7698
|
};
|
|
7498
7699
|
images?: string[] | undefined;
|
|
7499
7700
|
newTab?: boolean | undefined;
|
|
@@ -8059,6 +8260,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8059
8260
|
mistralCodestralUrl: z.ZodOptional<z.ZodString>;
|
|
8060
8261
|
openAiNativeApiKey: z.ZodOptional<z.ZodString>;
|
|
8061
8262
|
openAiNativeBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8263
|
+
geminiCliOAuthPath: z.ZodOptional<z.ZodString>;
|
|
8264
|
+
geminiCliProjectId: z.ZodOptional<z.ZodString>;
|
|
8062
8265
|
geminiApiKey: z.ZodOptional<z.ZodString>;
|
|
8063
8266
|
googleGeminiBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8064
8267
|
lmStudioModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -8214,21 +8417,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8214
8417
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
8215
8418
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8216
8419
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
8217
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
8420
|
+
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"]>>;
|
|
8218
8421
|
} & {
|
|
8219
8422
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
8220
8423
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8221
8424
|
id: z.ZodString;
|
|
8222
8425
|
name: z.ZodString;
|
|
8223
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
8426
|
+
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"]>>;
|
|
8224
8427
|
}, "strip", z.ZodTypeAny, {
|
|
8225
8428
|
name: string;
|
|
8226
8429
|
id: string;
|
|
8227
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8430
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8228
8431
|
}, {
|
|
8229
8432
|
name: string;
|
|
8230
8433
|
id: string;
|
|
8231
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8434
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8232
8435
|
}>, "many">>;
|
|
8233
8436
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8234
8437
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8286,6 +8489,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8286
8489
|
alwaysAllowModeSwitch: z.ZodOptional<z.ZodBoolean>;
|
|
8287
8490
|
alwaysAllowSubtasks: z.ZodOptional<z.ZodBoolean>;
|
|
8288
8491
|
alwaysAllowExecute: z.ZodOptional<z.ZodBoolean>;
|
|
8492
|
+
alwaysAllowFollowupQuestions: z.ZodOptional<z.ZodBoolean>;
|
|
8493
|
+
followupAutoApproveTimeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
8289
8494
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8290
8495
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8291
8496
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8378,18 +8583,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8378
8583
|
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
8379
8584
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8380
8585
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
8586
|
+
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
8381
8587
|
}, "strip", z.ZodTypeAny, {
|
|
8382
8588
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8383
8589
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8384
8590
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8385
8591
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8386
8592
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8593
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
8387
8594
|
}, {
|
|
8388
8595
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8389
8596
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8390
8597
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8391
8598
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8392
8599
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8600
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
8393
8601
|
}>>;
|
|
8394
8602
|
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"]>>;
|
|
8395
8603
|
telemetrySetting: z.ZodOptional<z.ZodEnum<["unset", "enabled", "disabled"]>>;
|
|
@@ -8402,6 +8610,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8402
8610
|
name: z.ZodString;
|
|
8403
8611
|
roleDefinition: z.ZodString;
|
|
8404
8612
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
8613
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8405
8614
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
8406
8615
|
groups: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodTuple<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodObject<{
|
|
8407
8616
|
fileRegex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
@@ -8428,6 +8637,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8428
8637
|
description?: string | undefined;
|
|
8429
8638
|
fileRegex?: string | undefined;
|
|
8430
8639
|
}])[];
|
|
8640
|
+
description?: string | undefined;
|
|
8431
8641
|
whenToUse?: string | undefined;
|
|
8432
8642
|
customInstructions?: string | undefined;
|
|
8433
8643
|
source?: "global" | "project" | undefined;
|
|
@@ -8439,6 +8649,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8439
8649
|
description?: string | undefined;
|
|
8440
8650
|
fileRegex?: string | undefined;
|
|
8441
8651
|
}])[];
|
|
8652
|
+
description?: string | undefined;
|
|
8442
8653
|
whenToUse?: string | undefined;
|
|
8443
8654
|
customInstructions?: string | undefined;
|
|
8444
8655
|
source?: "global" | "project" | undefined;
|
|
@@ -8446,12 +8657,15 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8446
8657
|
customModePrompts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
8447
8658
|
roleDefinition: z.ZodOptional<z.ZodString>;
|
|
8448
8659
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
8660
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8449
8661
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
8450
8662
|
}, "strip", z.ZodTypeAny, {
|
|
8663
|
+
description?: string | undefined;
|
|
8451
8664
|
roleDefinition?: string | undefined;
|
|
8452
8665
|
whenToUse?: string | undefined;
|
|
8453
8666
|
customInstructions?: string | undefined;
|
|
8454
8667
|
}, {
|
|
8668
|
+
description?: string | undefined;
|
|
8455
8669
|
roleDefinition?: string | undefined;
|
|
8456
8670
|
whenToUse?: string | undefined;
|
|
8457
8671
|
customInstructions?: string | undefined;
|
|
@@ -8460,6 +8674,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8460
8674
|
enhancementApiConfigId: z.ZodOptional<z.ZodString>;
|
|
8461
8675
|
historyPreviewCollapsed: z.ZodOptional<z.ZodBoolean>;
|
|
8462
8676
|
profileThresholds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
8677
|
+
hasOpenedModeSelector: z.ZodOptional<z.ZodBoolean>;
|
|
8678
|
+
lastModeExportPath: z.ZodOptional<z.ZodString>;
|
|
8679
|
+
lastModeImportPath: z.ZodOptional<z.ZodString>;
|
|
8463
8680
|
}, "strip", z.ZodTypeAny, {
|
|
8464
8681
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8465
8682
|
codeIndexOpenAiKey?: string | undefined;
|
|
@@ -8467,7 +8684,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8467
8684
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8468
8685
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8469
8686
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8470
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8687
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8471
8688
|
includeMaxTokens?: boolean | undefined;
|
|
8472
8689
|
diffEnabled?: boolean | undefined;
|
|
8473
8690
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -8556,6 +8773,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8556
8773
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
8557
8774
|
geminiApiKey?: string | undefined;
|
|
8558
8775
|
googleGeminiBaseUrl?: string | undefined;
|
|
8776
|
+
geminiCliOAuthPath?: string | undefined;
|
|
8777
|
+
geminiCliProjectId?: string | undefined;
|
|
8559
8778
|
openAiNativeApiKey?: string | undefined;
|
|
8560
8779
|
openAiNativeBaseUrl?: string | undefined;
|
|
8561
8780
|
mistralApiKey?: string | undefined;
|
|
@@ -8584,6 +8803,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8584
8803
|
description?: string | undefined;
|
|
8585
8804
|
fileRegex?: string | undefined;
|
|
8586
8805
|
}])[];
|
|
8806
|
+
description?: string | undefined;
|
|
8587
8807
|
whenToUse?: string | undefined;
|
|
8588
8808
|
customInstructions?: string | undefined;
|
|
8589
8809
|
source?: "global" | "project" | undefined;
|
|
@@ -8592,7 +8812,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8592
8812
|
listApiConfigMeta?: {
|
|
8593
8813
|
name: string;
|
|
8594
8814
|
id: string;
|
|
8595
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8815
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8596
8816
|
}[] | undefined;
|
|
8597
8817
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8598
8818
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8625,6 +8845,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8625
8845
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
8626
8846
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
8627
8847
|
alwaysAllowExecute?: boolean | undefined;
|
|
8848
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
8849
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
8628
8850
|
allowedCommands?: string[] | undefined;
|
|
8629
8851
|
allowedMaxRequests?: number | null | undefined;
|
|
8630
8852
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -8676,12 +8898,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8676
8898
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8677
8899
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8678
8900
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8901
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
8679
8902
|
} | undefined;
|
|
8680
8903
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
8681
8904
|
mcpEnabled?: boolean | undefined;
|
|
8682
8905
|
enableMcpServerCreation?: boolean | undefined;
|
|
8683
8906
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
8684
8907
|
customModePrompts?: Record<string, {
|
|
8908
|
+
description?: string | undefined;
|
|
8685
8909
|
roleDefinition?: string | undefined;
|
|
8686
8910
|
whenToUse?: string | undefined;
|
|
8687
8911
|
customInstructions?: string | undefined;
|
|
@@ -8690,6 +8914,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8690
8914
|
enhancementApiConfigId?: string | undefined;
|
|
8691
8915
|
historyPreviewCollapsed?: boolean | undefined;
|
|
8692
8916
|
profileThresholds?: Record<string, number> | undefined;
|
|
8917
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
8918
|
+
lastModeExportPath?: string | undefined;
|
|
8919
|
+
lastModeImportPath?: string | undefined;
|
|
8693
8920
|
}, {
|
|
8694
8921
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8695
8922
|
codeIndexOpenAiKey?: string | undefined;
|
|
@@ -8697,7 +8924,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8697
8924
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8698
8925
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8699
8926
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8700
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8927
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8701
8928
|
includeMaxTokens?: boolean | undefined;
|
|
8702
8929
|
diffEnabled?: boolean | undefined;
|
|
8703
8930
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -8786,6 +9013,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8786
9013
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
8787
9014
|
geminiApiKey?: string | undefined;
|
|
8788
9015
|
googleGeminiBaseUrl?: string | undefined;
|
|
9016
|
+
geminiCliOAuthPath?: string | undefined;
|
|
9017
|
+
geminiCliProjectId?: string | undefined;
|
|
8789
9018
|
openAiNativeApiKey?: string | undefined;
|
|
8790
9019
|
openAiNativeBaseUrl?: string | undefined;
|
|
8791
9020
|
mistralApiKey?: string | undefined;
|
|
@@ -8814,6 +9043,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8814
9043
|
description?: string | undefined;
|
|
8815
9044
|
fileRegex?: string | undefined;
|
|
8816
9045
|
}])[];
|
|
9046
|
+
description?: string | undefined;
|
|
8817
9047
|
whenToUse?: string | undefined;
|
|
8818
9048
|
customInstructions?: string | undefined;
|
|
8819
9049
|
source?: "global" | "project" | undefined;
|
|
@@ -8822,7 +9052,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8822
9052
|
listApiConfigMeta?: {
|
|
8823
9053
|
name: string;
|
|
8824
9054
|
id: string;
|
|
8825
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9055
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8826
9056
|
}[] | undefined;
|
|
8827
9057
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8828
9058
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8855,6 +9085,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8855
9085
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
8856
9086
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
8857
9087
|
alwaysAllowExecute?: boolean | undefined;
|
|
9088
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9089
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
8858
9090
|
allowedCommands?: string[] | undefined;
|
|
8859
9091
|
allowedMaxRequests?: number | null | undefined;
|
|
8860
9092
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -8906,12 +9138,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8906
9138
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8907
9139
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8908
9140
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9141
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
8909
9142
|
} | undefined;
|
|
8910
9143
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
8911
9144
|
mcpEnabled?: boolean | undefined;
|
|
8912
9145
|
enableMcpServerCreation?: boolean | undefined;
|
|
8913
9146
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
8914
9147
|
customModePrompts?: Record<string, {
|
|
9148
|
+
description?: string | undefined;
|
|
8915
9149
|
roleDefinition?: string | undefined;
|
|
8916
9150
|
whenToUse?: string | undefined;
|
|
8917
9151
|
customInstructions?: string | undefined;
|
|
@@ -8920,6 +9154,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8920
9154
|
enhancementApiConfigId?: string | undefined;
|
|
8921
9155
|
historyPreviewCollapsed?: boolean | undefined;
|
|
8922
9156
|
profileThresholds?: Record<string, number> | undefined;
|
|
9157
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
9158
|
+
lastModeExportPath?: string | undefined;
|
|
9159
|
+
lastModeImportPath?: string | undefined;
|
|
8923
9160
|
}>;
|
|
8924
9161
|
text: z.ZodString;
|
|
8925
9162
|
images: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -8933,7 +9170,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8933
9170
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8934
9171
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8935
9172
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8936
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9173
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8937
9174
|
includeMaxTokens?: boolean | undefined;
|
|
8938
9175
|
diffEnabled?: boolean | undefined;
|
|
8939
9176
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9022,6 +9259,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9022
9259
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9023
9260
|
geminiApiKey?: string | undefined;
|
|
9024
9261
|
googleGeminiBaseUrl?: string | undefined;
|
|
9262
|
+
geminiCliOAuthPath?: string | undefined;
|
|
9263
|
+
geminiCliProjectId?: string | undefined;
|
|
9025
9264
|
openAiNativeApiKey?: string | undefined;
|
|
9026
9265
|
openAiNativeBaseUrl?: string | undefined;
|
|
9027
9266
|
mistralApiKey?: string | undefined;
|
|
@@ -9050,6 +9289,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9050
9289
|
description?: string | undefined;
|
|
9051
9290
|
fileRegex?: string | undefined;
|
|
9052
9291
|
}])[];
|
|
9292
|
+
description?: string | undefined;
|
|
9053
9293
|
whenToUse?: string | undefined;
|
|
9054
9294
|
customInstructions?: string | undefined;
|
|
9055
9295
|
source?: "global" | "project" | undefined;
|
|
@@ -9058,7 +9298,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9058
9298
|
listApiConfigMeta?: {
|
|
9059
9299
|
name: string;
|
|
9060
9300
|
id: string;
|
|
9061
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9301
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9062
9302
|
}[] | undefined;
|
|
9063
9303
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9064
9304
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9091,6 +9331,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9091
9331
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
9092
9332
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
9093
9333
|
alwaysAllowExecute?: boolean | undefined;
|
|
9334
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9335
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9094
9336
|
allowedCommands?: string[] | undefined;
|
|
9095
9337
|
allowedMaxRequests?: number | null | undefined;
|
|
9096
9338
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9142,12 +9384,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9142
9384
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9143
9385
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9144
9386
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9387
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
9145
9388
|
} | undefined;
|
|
9146
9389
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9147
9390
|
mcpEnabled?: boolean | undefined;
|
|
9148
9391
|
enableMcpServerCreation?: boolean | undefined;
|
|
9149
9392
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
9150
9393
|
customModePrompts?: Record<string, {
|
|
9394
|
+
description?: string | undefined;
|
|
9151
9395
|
roleDefinition?: string | undefined;
|
|
9152
9396
|
whenToUse?: string | undefined;
|
|
9153
9397
|
customInstructions?: string | undefined;
|
|
@@ -9156,6 +9400,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9156
9400
|
enhancementApiConfigId?: string | undefined;
|
|
9157
9401
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9158
9402
|
profileThresholds?: Record<string, number> | undefined;
|
|
9403
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
9404
|
+
lastModeExportPath?: string | undefined;
|
|
9405
|
+
lastModeImportPath?: string | undefined;
|
|
9159
9406
|
};
|
|
9160
9407
|
images?: string[] | undefined;
|
|
9161
9408
|
newTab?: boolean | undefined;
|
|
@@ -9168,7 +9415,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9168
9415
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9169
9416
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9170
9417
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9171
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9418
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9172
9419
|
includeMaxTokens?: boolean | undefined;
|
|
9173
9420
|
diffEnabled?: boolean | undefined;
|
|
9174
9421
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9257,6 +9504,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9257
9504
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9258
9505
|
geminiApiKey?: string | undefined;
|
|
9259
9506
|
googleGeminiBaseUrl?: string | undefined;
|
|
9507
|
+
geminiCliOAuthPath?: string | undefined;
|
|
9508
|
+
geminiCliProjectId?: string | undefined;
|
|
9260
9509
|
openAiNativeApiKey?: string | undefined;
|
|
9261
9510
|
openAiNativeBaseUrl?: string | undefined;
|
|
9262
9511
|
mistralApiKey?: string | undefined;
|
|
@@ -9285,6 +9534,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9285
9534
|
description?: string | undefined;
|
|
9286
9535
|
fileRegex?: string | undefined;
|
|
9287
9536
|
}])[];
|
|
9537
|
+
description?: string | undefined;
|
|
9288
9538
|
whenToUse?: string | undefined;
|
|
9289
9539
|
customInstructions?: string | undefined;
|
|
9290
9540
|
source?: "global" | "project" | undefined;
|
|
@@ -9293,7 +9543,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9293
9543
|
listApiConfigMeta?: {
|
|
9294
9544
|
name: string;
|
|
9295
9545
|
id: string;
|
|
9296
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9546
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9297
9547
|
}[] | undefined;
|
|
9298
9548
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9299
9549
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9326,6 +9576,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9326
9576
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
9327
9577
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
9328
9578
|
alwaysAllowExecute?: boolean | undefined;
|
|
9579
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9580
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9329
9581
|
allowedCommands?: string[] | undefined;
|
|
9330
9582
|
allowedMaxRequests?: number | null | undefined;
|
|
9331
9583
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9377,12 +9629,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9377
9629
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9378
9630
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9379
9631
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9632
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
9380
9633
|
} | undefined;
|
|
9381
9634
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9382
9635
|
mcpEnabled?: boolean | undefined;
|
|
9383
9636
|
enableMcpServerCreation?: boolean | undefined;
|
|
9384
9637
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
9385
9638
|
customModePrompts?: Record<string, {
|
|
9639
|
+
description?: string | undefined;
|
|
9386
9640
|
roleDefinition?: string | undefined;
|
|
9387
9641
|
whenToUse?: string | undefined;
|
|
9388
9642
|
customInstructions?: string | undefined;
|
|
@@ -9391,6 +9645,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9391
9645
|
enhancementApiConfigId?: string | undefined;
|
|
9392
9646
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9393
9647
|
profileThresholds?: Record<string, number> | undefined;
|
|
9648
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
9649
|
+
lastModeExportPath?: string | undefined;
|
|
9650
|
+
lastModeImportPath?: string | undefined;
|
|
9394
9651
|
};
|
|
9395
9652
|
images?: string[] | undefined;
|
|
9396
9653
|
newTab?: boolean | undefined;
|
|
@@ -9406,7 +9663,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9406
9663
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9407
9664
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9408
9665
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9409
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9666
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9410
9667
|
includeMaxTokens?: boolean | undefined;
|
|
9411
9668
|
diffEnabled?: boolean | undefined;
|
|
9412
9669
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9495,6 +9752,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9495
9752
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9496
9753
|
geminiApiKey?: string | undefined;
|
|
9497
9754
|
googleGeminiBaseUrl?: string | undefined;
|
|
9755
|
+
geminiCliOAuthPath?: string | undefined;
|
|
9756
|
+
geminiCliProjectId?: string | undefined;
|
|
9498
9757
|
openAiNativeApiKey?: string | undefined;
|
|
9499
9758
|
openAiNativeBaseUrl?: string | undefined;
|
|
9500
9759
|
mistralApiKey?: string | undefined;
|
|
@@ -9523,6 +9782,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9523
9782
|
description?: string | undefined;
|
|
9524
9783
|
fileRegex?: string | undefined;
|
|
9525
9784
|
}])[];
|
|
9785
|
+
description?: string | undefined;
|
|
9526
9786
|
whenToUse?: string | undefined;
|
|
9527
9787
|
customInstructions?: string | undefined;
|
|
9528
9788
|
source?: "global" | "project" | undefined;
|
|
@@ -9531,7 +9791,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9531
9791
|
listApiConfigMeta?: {
|
|
9532
9792
|
name: string;
|
|
9533
9793
|
id: string;
|
|
9534
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9794
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9535
9795
|
}[] | undefined;
|
|
9536
9796
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9537
9797
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9564,6 +9824,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9564
9824
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
9565
9825
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
9566
9826
|
alwaysAllowExecute?: boolean | undefined;
|
|
9827
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
9828
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9567
9829
|
allowedCommands?: string[] | undefined;
|
|
9568
9830
|
allowedMaxRequests?: number | null | undefined;
|
|
9569
9831
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9615,12 +9877,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9615
9877
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9616
9878
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9617
9879
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9880
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
9618
9881
|
} | undefined;
|
|
9619
9882
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9620
9883
|
mcpEnabled?: boolean | undefined;
|
|
9621
9884
|
enableMcpServerCreation?: boolean | undefined;
|
|
9622
9885
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
9623
9886
|
customModePrompts?: Record<string, {
|
|
9887
|
+
description?: string | undefined;
|
|
9624
9888
|
roleDefinition?: string | undefined;
|
|
9625
9889
|
whenToUse?: string | undefined;
|
|
9626
9890
|
customInstructions?: string | undefined;
|
|
@@ -9629,6 +9893,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9629
9893
|
enhancementApiConfigId?: string | undefined;
|
|
9630
9894
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9631
9895
|
profileThresholds?: Record<string, number> | undefined;
|
|
9896
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
9897
|
+
lastModeExportPath?: string | undefined;
|
|
9898
|
+
lastModeImportPath?: string | undefined;
|
|
9632
9899
|
};
|
|
9633
9900
|
images?: string[] | undefined;
|
|
9634
9901
|
newTab?: boolean | undefined;
|
|
@@ -9644,7 +9911,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9644
9911
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9645
9912
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9646
9913
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9647
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9914
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9648
9915
|
includeMaxTokens?: boolean | undefined;
|
|
9649
9916
|
diffEnabled?: boolean | undefined;
|
|
9650
9917
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9733,6 +10000,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9733
10000
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9734
10001
|
geminiApiKey?: string | undefined;
|
|
9735
10002
|
googleGeminiBaseUrl?: string | undefined;
|
|
10003
|
+
geminiCliOAuthPath?: string | undefined;
|
|
10004
|
+
geminiCliProjectId?: string | undefined;
|
|
9736
10005
|
openAiNativeApiKey?: string | undefined;
|
|
9737
10006
|
openAiNativeBaseUrl?: string | undefined;
|
|
9738
10007
|
mistralApiKey?: string | undefined;
|
|
@@ -9761,6 +10030,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9761
10030
|
description?: string | undefined;
|
|
9762
10031
|
fileRegex?: string | undefined;
|
|
9763
10032
|
}])[];
|
|
10033
|
+
description?: string | undefined;
|
|
9764
10034
|
whenToUse?: string | undefined;
|
|
9765
10035
|
customInstructions?: string | undefined;
|
|
9766
10036
|
source?: "global" | "project" | undefined;
|
|
@@ -9769,7 +10039,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9769
10039
|
listApiConfigMeta?: {
|
|
9770
10040
|
name: string;
|
|
9771
10041
|
id: string;
|
|
9772
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10042
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9773
10043
|
}[] | undefined;
|
|
9774
10044
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9775
10045
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9802,6 +10072,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9802
10072
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
9803
10073
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
9804
10074
|
alwaysAllowExecute?: boolean | undefined;
|
|
10075
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10076
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
9805
10077
|
allowedCommands?: string[] | undefined;
|
|
9806
10078
|
allowedMaxRequests?: number | null | undefined;
|
|
9807
10079
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -9853,12 +10125,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9853
10125
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9854
10126
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9855
10127
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10128
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
9856
10129
|
} | undefined;
|
|
9857
10130
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
9858
10131
|
mcpEnabled?: boolean | undefined;
|
|
9859
10132
|
enableMcpServerCreation?: boolean | undefined;
|
|
9860
10133
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
9861
10134
|
customModePrompts?: Record<string, {
|
|
10135
|
+
description?: string | undefined;
|
|
9862
10136
|
roleDefinition?: string | undefined;
|
|
9863
10137
|
whenToUse?: string | undefined;
|
|
9864
10138
|
customInstructions?: string | undefined;
|
|
@@ -9867,6 +10141,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9867
10141
|
enhancementApiConfigId?: string | undefined;
|
|
9868
10142
|
historyPreviewCollapsed?: boolean | undefined;
|
|
9869
10143
|
profileThresholds?: Record<string, number> | undefined;
|
|
10144
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
10145
|
+
lastModeExportPath?: string | undefined;
|
|
10146
|
+
lastModeImportPath?: string | undefined;
|
|
9870
10147
|
};
|
|
9871
10148
|
images?: string[] | undefined;
|
|
9872
10149
|
newTab?: boolean | undefined;
|
|
@@ -9904,7 +10181,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9904
10181
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9905
10182
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9906
10183
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9907
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10184
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9908
10185
|
includeMaxTokens?: boolean | undefined;
|
|
9909
10186
|
diffEnabled?: boolean | undefined;
|
|
9910
10187
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -9993,6 +10270,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9993
10270
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9994
10271
|
geminiApiKey?: string | undefined;
|
|
9995
10272
|
googleGeminiBaseUrl?: string | undefined;
|
|
10273
|
+
geminiCliOAuthPath?: string | undefined;
|
|
10274
|
+
geminiCliProjectId?: string | undefined;
|
|
9996
10275
|
openAiNativeApiKey?: string | undefined;
|
|
9997
10276
|
openAiNativeBaseUrl?: string | undefined;
|
|
9998
10277
|
mistralApiKey?: string | undefined;
|
|
@@ -10021,6 +10300,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10021
10300
|
description?: string | undefined;
|
|
10022
10301
|
fileRegex?: string | undefined;
|
|
10023
10302
|
}])[];
|
|
10303
|
+
description?: string | undefined;
|
|
10024
10304
|
whenToUse?: string | undefined;
|
|
10025
10305
|
customInstructions?: string | undefined;
|
|
10026
10306
|
source?: "global" | "project" | undefined;
|
|
@@ -10029,7 +10309,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10029
10309
|
listApiConfigMeta?: {
|
|
10030
10310
|
name: string;
|
|
10031
10311
|
id: string;
|
|
10032
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10312
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10033
10313
|
}[] | undefined;
|
|
10034
10314
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10035
10315
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10062,6 +10342,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10062
10342
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
10063
10343
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
10064
10344
|
alwaysAllowExecute?: boolean | undefined;
|
|
10345
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10346
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10065
10347
|
allowedCommands?: string[] | undefined;
|
|
10066
10348
|
allowedMaxRequests?: number | null | undefined;
|
|
10067
10349
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -10113,12 +10395,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10113
10395
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10114
10396
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10115
10397
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10398
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
10116
10399
|
} | undefined;
|
|
10117
10400
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
10118
10401
|
mcpEnabled?: boolean | undefined;
|
|
10119
10402
|
enableMcpServerCreation?: boolean | undefined;
|
|
10120
10403
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
10121
10404
|
customModePrompts?: Record<string, {
|
|
10405
|
+
description?: string | undefined;
|
|
10122
10406
|
roleDefinition?: string | undefined;
|
|
10123
10407
|
whenToUse?: string | undefined;
|
|
10124
10408
|
customInstructions?: string | undefined;
|
|
@@ -10127,6 +10411,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10127
10411
|
enhancementApiConfigId?: string | undefined;
|
|
10128
10412
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10129
10413
|
profileThresholds?: Record<string, number> | undefined;
|
|
10414
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
10415
|
+
lastModeExportPath?: string | undefined;
|
|
10416
|
+
lastModeImportPath?: string | undefined;
|
|
10130
10417
|
};
|
|
10131
10418
|
images?: string[] | undefined;
|
|
10132
10419
|
newTab?: boolean | undefined;
|
|
@@ -10153,7 +10440,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10153
10440
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
10154
10441
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10155
10442
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10156
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10443
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10157
10444
|
includeMaxTokens?: boolean | undefined;
|
|
10158
10445
|
diffEnabled?: boolean | undefined;
|
|
10159
10446
|
fuzzyMatchThreshold?: number | undefined;
|
|
@@ -10242,6 +10529,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10242
10529
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
10243
10530
|
geminiApiKey?: string | undefined;
|
|
10244
10531
|
googleGeminiBaseUrl?: string | undefined;
|
|
10532
|
+
geminiCliOAuthPath?: string | undefined;
|
|
10533
|
+
geminiCliProjectId?: string | undefined;
|
|
10245
10534
|
openAiNativeApiKey?: string | undefined;
|
|
10246
10535
|
openAiNativeBaseUrl?: string | undefined;
|
|
10247
10536
|
mistralApiKey?: string | undefined;
|
|
@@ -10270,6 +10559,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10270
10559
|
description?: string | undefined;
|
|
10271
10560
|
fileRegex?: string | undefined;
|
|
10272
10561
|
}])[];
|
|
10562
|
+
description?: string | undefined;
|
|
10273
10563
|
whenToUse?: string | undefined;
|
|
10274
10564
|
customInstructions?: string | undefined;
|
|
10275
10565
|
source?: "global" | "project" | undefined;
|
|
@@ -10278,7 +10568,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10278
10568
|
listApiConfigMeta?: {
|
|
10279
10569
|
name: string;
|
|
10280
10570
|
id: string;
|
|
10281
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10571
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
10282
10572
|
}[] | undefined;
|
|
10283
10573
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10284
10574
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10311,6 +10601,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10311
10601
|
alwaysAllowModeSwitch?: boolean | undefined;
|
|
10312
10602
|
alwaysAllowSubtasks?: boolean | undefined;
|
|
10313
10603
|
alwaysAllowExecute?: boolean | undefined;
|
|
10604
|
+
alwaysAllowFollowupQuestions?: boolean | undefined;
|
|
10605
|
+
followupAutoApproveTimeoutMs?: number | undefined;
|
|
10314
10606
|
allowedCommands?: string[] | undefined;
|
|
10315
10607
|
allowedMaxRequests?: number | null | undefined;
|
|
10316
10608
|
autoCondenseContext?: boolean | undefined;
|
|
@@ -10362,12 +10654,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10362
10654
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10363
10655
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10364
10656
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10657
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
10365
10658
|
} | undefined;
|
|
10366
10659
|
telemetrySetting?: "unset" | "enabled" | "disabled" | undefined;
|
|
10367
10660
|
mcpEnabled?: boolean | undefined;
|
|
10368
10661
|
enableMcpServerCreation?: boolean | undefined;
|
|
10369
10662
|
modeApiConfigs?: Record<string, string> | undefined;
|
|
10370
10663
|
customModePrompts?: Record<string, {
|
|
10664
|
+
description?: string | undefined;
|
|
10371
10665
|
roleDefinition?: string | undefined;
|
|
10372
10666
|
whenToUse?: string | undefined;
|
|
10373
10667
|
customInstructions?: string | undefined;
|
|
@@ -10376,6 +10670,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10376
10670
|
enhancementApiConfigId?: string | undefined;
|
|
10377
10671
|
historyPreviewCollapsed?: boolean | undefined;
|
|
10378
10672
|
profileThresholds?: Record<string, number> | undefined;
|
|
10673
|
+
hasOpenedModeSelector?: boolean | undefined;
|
|
10674
|
+
lastModeExportPath?: string | undefined;
|
|
10675
|
+
lastModeImportPath?: string | undefined;
|
|
10379
10676
|
};
|
|
10380
10677
|
images?: string[] | undefined;
|
|
10381
10678
|
newTab?: boolean | undefined;
|
|
@@ -11236,18 +11533,21 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
|
11236
11533
|
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
11237
11534
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11238
11535
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
11536
|
+
codebaseIndexSearchMinScore: z.ZodOptional<z.ZodNumber>;
|
|
11239
11537
|
}, "strip", z.ZodTypeAny, {
|
|
11240
11538
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11241
11539
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11242
11540
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
11243
11541
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11244
11542
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11543
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
11245
11544
|
}, {
|
|
11246
11545
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11247
11546
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11248
11547
|
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
11249
11548
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11250
11549
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11550
|
+
codebaseIndexSearchMinScore?: number | undefined;
|
|
11251
11551
|
}>;
|
|
11252
11552
|
type CodebaseIndexConfig = z.infer<typeof codebaseIndexConfigSchema>;
|
|
11253
11553
|
/**
|
|
@@ -11636,6 +11936,69 @@ declare const experimentsSchema: z.ZodObject<{
|
|
|
11636
11936
|
}>;
|
|
11637
11937
|
type Experiments = z.infer<typeof experimentsSchema>;
|
|
11638
11938
|
|
|
11939
|
+
/**
|
|
11940
|
+
* Interface for follow-up data structure used in follow-up questions
|
|
11941
|
+
* This represents the data structure for follow-up questions that the LLM can ask
|
|
11942
|
+
* to gather more information needed to complete a task.
|
|
11943
|
+
*/
|
|
11944
|
+
interface FollowUpData {
|
|
11945
|
+
/** The question being asked by the LLM */
|
|
11946
|
+
question?: string;
|
|
11947
|
+
/** Array of suggested answers that the user can select */
|
|
11948
|
+
suggest?: Array<SuggestionItem>;
|
|
11949
|
+
}
|
|
11950
|
+
/**
|
|
11951
|
+
* Interface for a suggestion item with optional mode switching
|
|
11952
|
+
*/
|
|
11953
|
+
interface SuggestionItem {
|
|
11954
|
+
/** The text of the suggestion */
|
|
11955
|
+
answer: string;
|
|
11956
|
+
/** Optional mode to switch to when selecting this suggestion */
|
|
11957
|
+
mode?: string;
|
|
11958
|
+
}
|
|
11959
|
+
/**
|
|
11960
|
+
* Zod schema for SuggestionItem
|
|
11961
|
+
*/
|
|
11962
|
+
declare const suggestionItemSchema: z.ZodObject<{
|
|
11963
|
+
answer: z.ZodString;
|
|
11964
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
11965
|
+
}, "strip", z.ZodTypeAny, {
|
|
11966
|
+
answer: string;
|
|
11967
|
+
mode?: string | undefined;
|
|
11968
|
+
}, {
|
|
11969
|
+
answer: string;
|
|
11970
|
+
mode?: string | undefined;
|
|
11971
|
+
}>;
|
|
11972
|
+
/**
|
|
11973
|
+
* Zod schema for FollowUpData
|
|
11974
|
+
*/
|
|
11975
|
+
declare const followUpDataSchema: z.ZodObject<{
|
|
11976
|
+
question: z.ZodOptional<z.ZodString>;
|
|
11977
|
+
suggest: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11978
|
+
answer: z.ZodString;
|
|
11979
|
+
mode: z.ZodOptional<z.ZodString>;
|
|
11980
|
+
}, "strip", z.ZodTypeAny, {
|
|
11981
|
+
answer: string;
|
|
11982
|
+
mode?: string | undefined;
|
|
11983
|
+
}, {
|
|
11984
|
+
answer: string;
|
|
11985
|
+
mode?: string | undefined;
|
|
11986
|
+
}>, "many">>;
|
|
11987
|
+
}, "strip", z.ZodTypeAny, {
|
|
11988
|
+
question?: string | undefined;
|
|
11989
|
+
suggest?: {
|
|
11990
|
+
answer: string;
|
|
11991
|
+
mode?: string | undefined;
|
|
11992
|
+
}[] | undefined;
|
|
11993
|
+
}, {
|
|
11994
|
+
question?: string | undefined;
|
|
11995
|
+
suggest?: {
|
|
11996
|
+
answer: string;
|
|
11997
|
+
mode?: string | undefined;
|
|
11998
|
+
}[] | undefined;
|
|
11999
|
+
}>;
|
|
12000
|
+
type FollowUpDataType = z.infer<typeof followUpDataSchema>;
|
|
12001
|
+
|
|
11639
12002
|
/**
|
|
11640
12003
|
* HistoryItem
|
|
11641
12004
|
*/
|
|
@@ -12167,6 +12530,7 @@ declare const modeConfigSchema: z.ZodObject<{
|
|
|
12167
12530
|
name: z.ZodString;
|
|
12168
12531
|
roleDefinition: z.ZodString;
|
|
12169
12532
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
12533
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12170
12534
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
12171
12535
|
groups: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodTuple<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodObject<{
|
|
12172
12536
|
fileRegex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
@@ -12193,6 +12557,7 @@ declare const modeConfigSchema: z.ZodObject<{
|
|
|
12193
12557
|
description?: string | undefined;
|
|
12194
12558
|
fileRegex?: string | undefined;
|
|
12195
12559
|
}])[];
|
|
12560
|
+
description?: string | undefined;
|
|
12196
12561
|
whenToUse?: string | undefined;
|
|
12197
12562
|
customInstructions?: string | undefined;
|
|
12198
12563
|
source?: "global" | "project" | undefined;
|
|
@@ -12204,6 +12569,7 @@ declare const modeConfigSchema: z.ZodObject<{
|
|
|
12204
12569
|
description?: string | undefined;
|
|
12205
12570
|
fileRegex?: string | undefined;
|
|
12206
12571
|
}])[];
|
|
12572
|
+
description?: string | undefined;
|
|
12207
12573
|
whenToUse?: string | undefined;
|
|
12208
12574
|
customInstructions?: string | undefined;
|
|
12209
12575
|
source?: "global" | "project" | undefined;
|
|
@@ -12218,6 +12584,7 @@ declare const customModesSettingsSchema: z.ZodObject<{
|
|
|
12218
12584
|
name: z.ZodString;
|
|
12219
12585
|
roleDefinition: z.ZodString;
|
|
12220
12586
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
12587
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12221
12588
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
12222
12589
|
groups: z.ZodEffects<z.ZodArray<z.ZodUnion<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodTuple<[z.ZodEnum<["read", "edit", "browser", "command", "mcp", "modes"]>, z.ZodObject<{
|
|
12223
12590
|
fileRegex: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
@@ -12244,6 +12611,7 @@ declare const customModesSettingsSchema: z.ZodObject<{
|
|
|
12244
12611
|
description?: string | undefined;
|
|
12245
12612
|
fileRegex?: string | undefined;
|
|
12246
12613
|
}])[];
|
|
12614
|
+
description?: string | undefined;
|
|
12247
12615
|
whenToUse?: string | undefined;
|
|
12248
12616
|
customInstructions?: string | undefined;
|
|
12249
12617
|
source?: "global" | "project" | undefined;
|
|
@@ -12255,6 +12623,7 @@ declare const customModesSettingsSchema: z.ZodObject<{
|
|
|
12255
12623
|
description?: string | undefined;
|
|
12256
12624
|
fileRegex?: string | undefined;
|
|
12257
12625
|
}])[];
|
|
12626
|
+
description?: string | undefined;
|
|
12258
12627
|
whenToUse?: string | undefined;
|
|
12259
12628
|
customInstructions?: string | undefined;
|
|
12260
12629
|
source?: "global" | "project" | undefined;
|
|
@@ -12266,6 +12635,7 @@ declare const customModesSettingsSchema: z.ZodObject<{
|
|
|
12266
12635
|
description?: string | undefined;
|
|
12267
12636
|
fileRegex?: string | undefined;
|
|
12268
12637
|
}])[];
|
|
12638
|
+
description?: string | undefined;
|
|
12269
12639
|
whenToUse?: string | undefined;
|
|
12270
12640
|
customInstructions?: string | undefined;
|
|
12271
12641
|
source?: "global" | "project" | undefined;
|
|
@@ -12277,6 +12647,7 @@ declare const customModesSettingsSchema: z.ZodObject<{
|
|
|
12277
12647
|
description?: string | undefined;
|
|
12278
12648
|
fileRegex?: string | undefined;
|
|
12279
12649
|
}])[];
|
|
12650
|
+
description?: string | undefined;
|
|
12280
12651
|
whenToUse?: string | undefined;
|
|
12281
12652
|
customInstructions?: string | undefined;
|
|
12282
12653
|
source?: "global" | "project" | undefined;
|
|
@@ -12290,6 +12661,7 @@ declare const customModesSettingsSchema: z.ZodObject<{
|
|
|
12290
12661
|
description?: string | undefined;
|
|
12291
12662
|
fileRegex?: string | undefined;
|
|
12292
12663
|
}])[];
|
|
12664
|
+
description?: string | undefined;
|
|
12293
12665
|
whenToUse?: string | undefined;
|
|
12294
12666
|
customInstructions?: string | undefined;
|
|
12295
12667
|
source?: "global" | "project" | undefined;
|
|
@@ -12303,6 +12675,7 @@ declare const customModesSettingsSchema: z.ZodObject<{
|
|
|
12303
12675
|
description?: string | undefined;
|
|
12304
12676
|
fileRegex?: string | undefined;
|
|
12305
12677
|
}])[];
|
|
12678
|
+
description?: string | undefined;
|
|
12306
12679
|
whenToUse?: string | undefined;
|
|
12307
12680
|
customInstructions?: string | undefined;
|
|
12308
12681
|
source?: "global" | "project" | undefined;
|
|
@@ -12315,12 +12688,15 @@ type CustomModesSettings = z.infer<typeof customModesSettingsSchema>;
|
|
|
12315
12688
|
declare const promptComponentSchema: z.ZodObject<{
|
|
12316
12689
|
roleDefinition: z.ZodOptional<z.ZodString>;
|
|
12317
12690
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
12691
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12318
12692
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
12319
12693
|
}, "strip", z.ZodTypeAny, {
|
|
12694
|
+
description?: string | undefined;
|
|
12320
12695
|
roleDefinition?: string | undefined;
|
|
12321
12696
|
whenToUse?: string | undefined;
|
|
12322
12697
|
customInstructions?: string | undefined;
|
|
12323
12698
|
}, {
|
|
12699
|
+
description?: string | undefined;
|
|
12324
12700
|
roleDefinition?: string | undefined;
|
|
12325
12701
|
whenToUse?: string | undefined;
|
|
12326
12702
|
customInstructions?: string | undefined;
|
|
@@ -12332,12 +12708,15 @@ type PromptComponent = z.infer<typeof promptComponentSchema>;
|
|
|
12332
12708
|
declare const customModePromptsSchema: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodObject<{
|
|
12333
12709
|
roleDefinition: z.ZodOptional<z.ZodString>;
|
|
12334
12710
|
whenToUse: z.ZodOptional<z.ZodString>;
|
|
12711
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12335
12712
|
customInstructions: z.ZodOptional<z.ZodString>;
|
|
12336
12713
|
}, "strip", z.ZodTypeAny, {
|
|
12714
|
+
description?: string | undefined;
|
|
12337
12715
|
roleDefinition?: string | undefined;
|
|
12338
12716
|
whenToUse?: string | undefined;
|
|
12339
12717
|
customInstructions?: string | undefined;
|
|
12340
12718
|
}, {
|
|
12719
|
+
description?: string | undefined;
|
|
12341
12720
|
roleDefinition?: string | undefined;
|
|
12342
12721
|
whenToUse?: string | undefined;
|
|
12343
12722
|
customInstructions?: string | undefined;
|
|
@@ -12349,6 +12728,14 @@ type CustomModePrompts = z.infer<typeof customModePromptsSchema>;
|
|
|
12349
12728
|
declare const customSupportPromptsSchema: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>;
|
|
12350
12729
|
type CustomSupportPrompts = z.infer<typeof customSupportPromptsSchema>;
|
|
12351
12730
|
|
|
12731
|
+
/**
|
|
12732
|
+
* Types related to task sharing functionality
|
|
12733
|
+
*/
|
|
12734
|
+
/**
|
|
12735
|
+
* Visibility options for sharing tasks
|
|
12736
|
+
*/
|
|
12737
|
+
type ShareVisibility = "organization" | "public";
|
|
12738
|
+
|
|
12352
12739
|
/**
|
|
12353
12740
|
* TelemetrySetting
|
|
12354
12741
|
*/
|
|
@@ -12366,10 +12753,14 @@ declare enum TelemetryEventName {
|
|
|
12366
12753
|
TASK_CONVERSATION_MESSAGE = "Conversation Message",
|
|
12367
12754
|
LLM_COMPLETION = "LLM Completion",
|
|
12368
12755
|
MODE_SWITCH = "Mode Switched",
|
|
12756
|
+
MODE_SELECTOR_OPENED = "Mode Selector Opened",
|
|
12369
12757
|
TOOL_USED = "Tool Used",
|
|
12370
12758
|
CHECKPOINT_CREATED = "Checkpoint Created",
|
|
12371
12759
|
CHECKPOINT_RESTORED = "Checkpoint Restored",
|
|
12372
12760
|
CHECKPOINT_DIFFED = "Checkpoint Diffed",
|
|
12761
|
+
TAB_SHOWN = "Tab Shown",
|
|
12762
|
+
MODE_SETTINGS_CHANGED = "Mode Setting Changed",
|
|
12763
|
+
CUSTOM_MODE_CREATED = "Custom Mode Created",
|
|
12373
12764
|
CONTEXT_CONDENSED = "Context Condensed",
|
|
12374
12765
|
SLIDING_WINDOW_TRUNCATION = "Sliding Window Truncation",
|
|
12375
12766
|
CODE_ACTION_USED = "Code Action Used",
|
|
@@ -12380,6 +12771,14 @@ declare enum TelemetryEventName {
|
|
|
12380
12771
|
MARKETPLACE_ITEM_REMOVED = "Marketplace Item Removed",
|
|
12381
12772
|
MARKETPLACE_TAB_VIEWED = "Marketplace Tab Viewed",
|
|
12382
12773
|
MARKETPLACE_INSTALL_BUTTON_CLICKED = "Marketplace Install Button Clicked",
|
|
12774
|
+
SHARE_BUTTON_CLICKED = "Share Button Clicked",
|
|
12775
|
+
SHARE_ORGANIZATION_CLICKED = "Share Organization Clicked",
|
|
12776
|
+
SHARE_PUBLIC_CLICKED = "Share Public Clicked",
|
|
12777
|
+
SHARE_CONNECT_TO_CLOUD_CLICKED = "Share Connect To Cloud Clicked",
|
|
12778
|
+
ACCOUNT_CONNECT_CLICKED = "Account Connect Clicked",
|
|
12779
|
+
ACCOUNT_CONNECT_SUCCESS = "Account Connect Success",
|
|
12780
|
+
ACCOUNT_LOGOUT_CLICKED = "Account Logout Clicked",
|
|
12781
|
+
ACCOUNT_LOGOUT_SUCCESS = "Account Logout Success",
|
|
12383
12782
|
SCHEMA_VALIDATION_ERROR = "Schema Validation Error",
|
|
12384
12783
|
DIFF_APPLICATION_ERROR = "Diff Application Error",
|
|
12385
12784
|
SHELL_INTEGRATION_ERROR = "Shell Integration Error",
|
|
@@ -12396,6 +12795,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
12396
12795
|
editorName: z.ZodString;
|
|
12397
12796
|
language: z.ZodString;
|
|
12398
12797
|
mode: z.ZodString;
|
|
12798
|
+
cloudIsAuthenticated: z.ZodOptional<z.ZodBoolean>;
|
|
12399
12799
|
}, "strip", z.ZodTypeAny, {
|
|
12400
12800
|
appName: string;
|
|
12401
12801
|
appVersion: string;
|
|
@@ -12404,6 +12804,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
12404
12804
|
editorName: string;
|
|
12405
12805
|
language: string;
|
|
12406
12806
|
mode: string;
|
|
12807
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12407
12808
|
}, {
|
|
12408
12809
|
appName: string;
|
|
12409
12810
|
appVersion: string;
|
|
@@ -12412,29 +12813,46 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
12412
12813
|
editorName: string;
|
|
12413
12814
|
language: string;
|
|
12414
12815
|
mode: string;
|
|
12816
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12415
12817
|
}>;
|
|
12416
12818
|
declare const taskPropertiesSchema: z.ZodObject<{
|
|
12417
12819
|
taskId: z.ZodOptional<z.ZodString>;
|
|
12418
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
12820
|
+
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"]>>;
|
|
12419
12821
|
modelId: z.ZodOptional<z.ZodString>;
|
|
12420
12822
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
12421
12823
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
12422
12824
|
}, "strip", z.ZodTypeAny, {
|
|
12423
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12825
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12424
12826
|
taskId?: string | undefined;
|
|
12425
12827
|
modelId?: string | undefined;
|
|
12426
12828
|
diffStrategy?: string | undefined;
|
|
12427
12829
|
isSubtask?: boolean | undefined;
|
|
12428
12830
|
}, {
|
|
12429
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12831
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12430
12832
|
taskId?: string | undefined;
|
|
12431
12833
|
modelId?: string | undefined;
|
|
12432
12834
|
diffStrategy?: string | undefined;
|
|
12433
12835
|
isSubtask?: boolean | undefined;
|
|
12434
12836
|
}>;
|
|
12837
|
+
declare const gitPropertiesSchema: z.ZodObject<{
|
|
12838
|
+
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
12839
|
+
repositoryName: z.ZodOptional<z.ZodString>;
|
|
12840
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
12841
|
+
}, "strip", z.ZodTypeAny, {
|
|
12842
|
+
repositoryUrl?: string | undefined;
|
|
12843
|
+
repositoryName?: string | undefined;
|
|
12844
|
+
defaultBranch?: string | undefined;
|
|
12845
|
+
}, {
|
|
12846
|
+
repositoryUrl?: string | undefined;
|
|
12847
|
+
repositoryName?: string | undefined;
|
|
12848
|
+
defaultBranch?: string | undefined;
|
|
12849
|
+
}>;
|
|
12435
12850
|
declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
12851
|
+
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
12852
|
+
repositoryName: z.ZodOptional<z.ZodString>;
|
|
12853
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
12436
12854
|
taskId: z.ZodOptional<z.ZodString>;
|
|
12437
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
12855
|
+
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"]>>;
|
|
12438
12856
|
modelId: z.ZodOptional<z.ZodString>;
|
|
12439
12857
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
12440
12858
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12445,6 +12863,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
12445
12863
|
editorName: z.ZodString;
|
|
12446
12864
|
language: z.ZodString;
|
|
12447
12865
|
mode: z.ZodString;
|
|
12866
|
+
cloudIsAuthenticated: z.ZodOptional<z.ZodBoolean>;
|
|
12448
12867
|
}, "strip", z.ZodTypeAny, {
|
|
12449
12868
|
appName: string;
|
|
12450
12869
|
appVersion: string;
|
|
@@ -12453,11 +12872,15 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
12453
12872
|
editorName: string;
|
|
12454
12873
|
language: string;
|
|
12455
12874
|
mode: string;
|
|
12456
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12875
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12876
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12457
12877
|
taskId?: string | undefined;
|
|
12458
12878
|
modelId?: string | undefined;
|
|
12459
12879
|
diffStrategy?: string | undefined;
|
|
12460
12880
|
isSubtask?: boolean | undefined;
|
|
12881
|
+
repositoryUrl?: string | undefined;
|
|
12882
|
+
repositoryName?: string | undefined;
|
|
12883
|
+
defaultBranch?: string | undefined;
|
|
12461
12884
|
}, {
|
|
12462
12885
|
appName: string;
|
|
12463
12886
|
appVersion: string;
|
|
@@ -12466,13 +12889,18 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
12466
12889
|
editorName: string;
|
|
12467
12890
|
language: string;
|
|
12468
12891
|
mode: string;
|
|
12469
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12892
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12893
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12470
12894
|
taskId?: string | undefined;
|
|
12471
12895
|
modelId?: string | undefined;
|
|
12472
12896
|
diffStrategy?: string | undefined;
|
|
12473
12897
|
isSubtask?: boolean | undefined;
|
|
12898
|
+
repositoryUrl?: string | undefined;
|
|
12899
|
+
repositoryName?: string | undefined;
|
|
12900
|
+
defaultBranch?: string | undefined;
|
|
12474
12901
|
}>;
|
|
12475
12902
|
type TelemetryProperties = z.infer<typeof telemetryPropertiesSchema>;
|
|
12903
|
+
type GitProperties = z.infer<typeof gitPropertiesSchema>;
|
|
12476
12904
|
/**
|
|
12477
12905
|
* TelemetryEvent
|
|
12478
12906
|
*/
|
|
@@ -12484,10 +12912,13 @@ type TelemetryEvent = {
|
|
|
12484
12912
|
* RooCodeTelemetryEvent
|
|
12485
12913
|
*/
|
|
12486
12914
|
declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
12487
|
-
type: z.ZodEnum<[TelemetryEventName.TASK_CREATED, TelemetryEventName.TASK_RESTARTED, TelemetryEventName.TASK_COMPLETED, TelemetryEventName.TASK_CONVERSATION_MESSAGE, TelemetryEventName.MODE_SWITCH, TelemetryEventName.TOOL_USED, TelemetryEventName.CHECKPOINT_CREATED, TelemetryEventName.CHECKPOINT_RESTORED, TelemetryEventName.CHECKPOINT_DIFFED, TelemetryEventName.CODE_ACTION_USED, TelemetryEventName.PROMPT_ENHANCED, TelemetryEventName.TITLE_BUTTON_CLICKED, TelemetryEventName.AUTHENTICATION_INITIATED, TelemetryEventName.MARKETPLACE_ITEM_INSTALLED, TelemetryEventName.MARKETPLACE_ITEM_REMOVED, TelemetryEventName.SCHEMA_VALIDATION_ERROR, TelemetryEventName.DIFF_APPLICATION_ERROR, TelemetryEventName.SHELL_INTEGRATION_ERROR, TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR, TelemetryEventName.CONTEXT_CONDENSED, TelemetryEventName.SLIDING_WINDOW_TRUNCATION]>;
|
|
12915
|
+
type: z.ZodEnum<[TelemetryEventName.TASK_CREATED, TelemetryEventName.TASK_RESTARTED, TelemetryEventName.TASK_COMPLETED, TelemetryEventName.TASK_CONVERSATION_MESSAGE, TelemetryEventName.MODE_SWITCH, TelemetryEventName.MODE_SELECTOR_OPENED, TelemetryEventName.TOOL_USED, TelemetryEventName.CHECKPOINT_CREATED, TelemetryEventName.CHECKPOINT_RESTORED, TelemetryEventName.CHECKPOINT_DIFFED, TelemetryEventName.CODE_ACTION_USED, TelemetryEventName.PROMPT_ENHANCED, TelemetryEventName.TITLE_BUTTON_CLICKED, TelemetryEventName.AUTHENTICATION_INITIATED, TelemetryEventName.MARKETPLACE_ITEM_INSTALLED, TelemetryEventName.MARKETPLACE_ITEM_REMOVED, TelemetryEventName.MARKETPLACE_TAB_VIEWED, TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED, TelemetryEventName.SHARE_BUTTON_CLICKED, TelemetryEventName.SHARE_ORGANIZATION_CLICKED, TelemetryEventName.SHARE_PUBLIC_CLICKED, TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED, TelemetryEventName.ACCOUNT_CONNECT_CLICKED, TelemetryEventName.ACCOUNT_CONNECT_SUCCESS, TelemetryEventName.ACCOUNT_LOGOUT_CLICKED, TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS, TelemetryEventName.SCHEMA_VALIDATION_ERROR, TelemetryEventName.DIFF_APPLICATION_ERROR, TelemetryEventName.SHELL_INTEGRATION_ERROR, TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR, TelemetryEventName.CONTEXT_CONDENSED, TelemetryEventName.SLIDING_WINDOW_TRUNCATION, TelemetryEventName.TAB_SHOWN, TelemetryEventName.MODE_SETTINGS_CHANGED, TelemetryEventName.CUSTOM_MODE_CREATED]>;
|
|
12488
12916
|
properties: z.ZodObject<{
|
|
12917
|
+
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
12918
|
+
repositoryName: z.ZodOptional<z.ZodString>;
|
|
12919
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
12489
12920
|
taskId: z.ZodOptional<z.ZodString>;
|
|
12490
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
12921
|
+
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"]>>;
|
|
12491
12922
|
modelId: z.ZodOptional<z.ZodString>;
|
|
12492
12923
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
12493
12924
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12498,6 +12929,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12498
12929
|
editorName: z.ZodString;
|
|
12499
12930
|
language: z.ZodString;
|
|
12500
12931
|
mode: z.ZodString;
|
|
12932
|
+
cloudIsAuthenticated: z.ZodOptional<z.ZodBoolean>;
|
|
12501
12933
|
}, "strip", z.ZodTypeAny, {
|
|
12502
12934
|
appName: string;
|
|
12503
12935
|
appVersion: string;
|
|
@@ -12506,11 +12938,15 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12506
12938
|
editorName: string;
|
|
12507
12939
|
language: string;
|
|
12508
12940
|
mode: string;
|
|
12509
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12941
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12942
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12510
12943
|
taskId?: string | undefined;
|
|
12511
12944
|
modelId?: string | undefined;
|
|
12512
12945
|
diffStrategy?: string | undefined;
|
|
12513
12946
|
isSubtask?: boolean | undefined;
|
|
12947
|
+
repositoryUrl?: string | undefined;
|
|
12948
|
+
repositoryName?: string | undefined;
|
|
12949
|
+
defaultBranch?: string | undefined;
|
|
12514
12950
|
}, {
|
|
12515
12951
|
appName: string;
|
|
12516
12952
|
appVersion: string;
|
|
@@ -12519,14 +12955,18 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12519
12955
|
editorName: string;
|
|
12520
12956
|
language: string;
|
|
12521
12957
|
mode: string;
|
|
12522
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12958
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12959
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12523
12960
|
taskId?: string | undefined;
|
|
12524
12961
|
modelId?: string | undefined;
|
|
12525
12962
|
diffStrategy?: string | undefined;
|
|
12526
12963
|
isSubtask?: boolean | undefined;
|
|
12964
|
+
repositoryUrl?: string | undefined;
|
|
12965
|
+
repositoryName?: string | undefined;
|
|
12966
|
+
defaultBranch?: string | undefined;
|
|
12527
12967
|
}>;
|
|
12528
12968
|
}, "strip", z.ZodTypeAny, {
|
|
12529
|
-
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
12969
|
+
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.MODE_SELECTOR_OPENED | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.TAB_SHOWN | TelemetryEventName.MODE_SETTINGS_CHANGED | TelemetryEventName.CUSTOM_MODE_CREATED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.MARKETPLACE_TAB_VIEWED | TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED | TelemetryEventName.SHARE_BUTTON_CLICKED | TelemetryEventName.SHARE_ORGANIZATION_CLICKED | TelemetryEventName.SHARE_PUBLIC_CLICKED | TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_SUCCESS | TelemetryEventName.ACCOUNT_LOGOUT_CLICKED | TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
12530
12970
|
properties: {
|
|
12531
12971
|
appName: string;
|
|
12532
12972
|
appVersion: string;
|
|
@@ -12535,14 +12975,18 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12535
12975
|
editorName: string;
|
|
12536
12976
|
language: string;
|
|
12537
12977
|
mode: string;
|
|
12538
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12978
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12979
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12539
12980
|
taskId?: string | undefined;
|
|
12540
12981
|
modelId?: string | undefined;
|
|
12541
12982
|
diffStrategy?: string | undefined;
|
|
12542
12983
|
isSubtask?: boolean | undefined;
|
|
12984
|
+
repositoryUrl?: string | undefined;
|
|
12985
|
+
repositoryName?: string | undefined;
|
|
12986
|
+
defaultBranch?: string | undefined;
|
|
12543
12987
|
};
|
|
12544
12988
|
}, {
|
|
12545
|
-
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
12989
|
+
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.MODE_SELECTOR_OPENED | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.TAB_SHOWN | TelemetryEventName.MODE_SETTINGS_CHANGED | TelemetryEventName.CUSTOM_MODE_CREATED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.MARKETPLACE_TAB_VIEWED | TelemetryEventName.MARKETPLACE_INSTALL_BUTTON_CLICKED | TelemetryEventName.SHARE_BUTTON_CLICKED | TelemetryEventName.SHARE_ORGANIZATION_CLICKED | TelemetryEventName.SHARE_PUBLIC_CLICKED | TelemetryEventName.SHARE_CONNECT_TO_CLOUD_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_CLICKED | TelemetryEventName.ACCOUNT_CONNECT_SUCCESS | TelemetryEventName.ACCOUNT_LOGOUT_CLICKED | TelemetryEventName.ACCOUNT_LOGOUT_SUCCESS | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
12546
12990
|
properties: {
|
|
12547
12991
|
appName: string;
|
|
12548
12992
|
appVersion: string;
|
|
@@ -12551,11 +12995,15 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12551
12995
|
editorName: string;
|
|
12552
12996
|
language: string;
|
|
12553
12997
|
mode: string;
|
|
12554
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12998
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12999
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12555
13000
|
taskId?: string | undefined;
|
|
12556
13001
|
modelId?: string | undefined;
|
|
12557
13002
|
diffStrategy?: string | undefined;
|
|
12558
13003
|
isSubtask?: boolean | undefined;
|
|
13004
|
+
repositoryUrl?: string | undefined;
|
|
13005
|
+
repositoryName?: string | undefined;
|
|
13006
|
+
defaultBranch?: string | undefined;
|
|
12559
13007
|
};
|
|
12560
13008
|
}>, z.ZodObject<{
|
|
12561
13009
|
type: z.ZodLiteral<TelemetryEventName.TASK_MESSAGE>;
|
|
@@ -12644,7 +13092,10 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12644
13092
|
} | undefined;
|
|
12645
13093
|
isProtected?: boolean | undefined;
|
|
12646
13094
|
}>;
|
|
12647
|
-
|
|
13095
|
+
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
13096
|
+
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13097
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
13098
|
+
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"]>>;
|
|
12648
13099
|
modelId: z.ZodOptional<z.ZodString>;
|
|
12649
13100
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
12650
13101
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12655,6 +13106,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12655
13106
|
editorName: z.ZodString;
|
|
12656
13107
|
language: z.ZodString;
|
|
12657
13108
|
mode: z.ZodString;
|
|
13109
|
+
cloudIsAuthenticated: z.ZodOptional<z.ZodBoolean>;
|
|
12658
13110
|
}, "strip", z.ZodTypeAny, {
|
|
12659
13111
|
message: {
|
|
12660
13112
|
type: "ask" | "say";
|
|
@@ -12687,10 +13139,14 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12687
13139
|
language: string;
|
|
12688
13140
|
mode: string;
|
|
12689
13141
|
taskId: string;
|
|
12690
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13142
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13143
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12691
13144
|
modelId?: string | undefined;
|
|
12692
13145
|
diffStrategy?: string | undefined;
|
|
12693
13146
|
isSubtask?: boolean | undefined;
|
|
13147
|
+
repositoryUrl?: string | undefined;
|
|
13148
|
+
repositoryName?: string | undefined;
|
|
13149
|
+
defaultBranch?: string | undefined;
|
|
12694
13150
|
}, {
|
|
12695
13151
|
message: {
|
|
12696
13152
|
type: "ask" | "say";
|
|
@@ -12723,10 +13179,14 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12723
13179
|
language: string;
|
|
12724
13180
|
mode: string;
|
|
12725
13181
|
taskId: string;
|
|
12726
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13182
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13183
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12727
13184
|
modelId?: string | undefined;
|
|
12728
13185
|
diffStrategy?: string | undefined;
|
|
12729
13186
|
isSubtask?: boolean | undefined;
|
|
13187
|
+
repositoryUrl?: string | undefined;
|
|
13188
|
+
repositoryName?: string | undefined;
|
|
13189
|
+
defaultBranch?: string | undefined;
|
|
12730
13190
|
}>;
|
|
12731
13191
|
}, "strip", z.ZodTypeAny, {
|
|
12732
13192
|
type: TelemetryEventName.TASK_MESSAGE;
|
|
@@ -12762,10 +13222,14 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12762
13222
|
language: string;
|
|
12763
13223
|
mode: string;
|
|
12764
13224
|
taskId: string;
|
|
12765
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13225
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13226
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12766
13227
|
modelId?: string | undefined;
|
|
12767
13228
|
diffStrategy?: string | undefined;
|
|
12768
13229
|
isSubtask?: boolean | undefined;
|
|
13230
|
+
repositoryUrl?: string | undefined;
|
|
13231
|
+
repositoryName?: string | undefined;
|
|
13232
|
+
defaultBranch?: string | undefined;
|
|
12769
13233
|
};
|
|
12770
13234
|
}, {
|
|
12771
13235
|
type: TelemetryEventName.TASK_MESSAGE;
|
|
@@ -12801,10 +13265,14 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12801
13265
|
language: string;
|
|
12802
13266
|
mode: string;
|
|
12803
13267
|
taskId: string;
|
|
12804
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13268
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13269
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12805
13270
|
modelId?: string | undefined;
|
|
12806
13271
|
diffStrategy?: string | undefined;
|
|
12807
13272
|
isSubtask?: boolean | undefined;
|
|
13273
|
+
repositoryUrl?: string | undefined;
|
|
13274
|
+
repositoryName?: string | undefined;
|
|
13275
|
+
defaultBranch?: string | undefined;
|
|
12808
13276
|
};
|
|
12809
13277
|
}>, z.ZodObject<{
|
|
12810
13278
|
type: z.ZodLiteral<TelemetryEventName.LLM_COMPLETION>;
|
|
@@ -12814,8 +13282,11 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12814
13282
|
cacheReadTokens: z.ZodOptional<z.ZodNumber>;
|
|
12815
13283
|
cacheWriteTokens: z.ZodOptional<z.ZodNumber>;
|
|
12816
13284
|
cost: z.ZodOptional<z.ZodNumber>;
|
|
13285
|
+
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
13286
|
+
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13287
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
12817
13288
|
taskId: z.ZodOptional<z.ZodString>;
|
|
12818
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
13289
|
+
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"]>>;
|
|
12819
13290
|
modelId: z.ZodOptional<z.ZodString>;
|
|
12820
13291
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
12821
13292
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12826,6 +13297,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12826
13297
|
editorName: z.ZodString;
|
|
12827
13298
|
language: z.ZodString;
|
|
12828
13299
|
mode: z.ZodString;
|
|
13300
|
+
cloudIsAuthenticated: z.ZodOptional<z.ZodBoolean>;
|
|
12829
13301
|
}, "strip", z.ZodTypeAny, {
|
|
12830
13302
|
appName: string;
|
|
12831
13303
|
appVersion: string;
|
|
@@ -12836,12 +13308,16 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12836
13308
|
mode: string;
|
|
12837
13309
|
inputTokens: number;
|
|
12838
13310
|
outputTokens: number;
|
|
12839
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13311
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12840
13312
|
cost?: number | undefined;
|
|
13313
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12841
13314
|
taskId?: string | undefined;
|
|
12842
13315
|
modelId?: string | undefined;
|
|
12843
13316
|
diffStrategy?: string | undefined;
|
|
12844
13317
|
isSubtask?: boolean | undefined;
|
|
13318
|
+
repositoryUrl?: string | undefined;
|
|
13319
|
+
repositoryName?: string | undefined;
|
|
13320
|
+
defaultBranch?: string | undefined;
|
|
12845
13321
|
cacheReadTokens?: number | undefined;
|
|
12846
13322
|
cacheWriteTokens?: number | undefined;
|
|
12847
13323
|
}, {
|
|
@@ -12854,12 +13330,16 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12854
13330
|
mode: string;
|
|
12855
13331
|
inputTokens: number;
|
|
12856
13332
|
outputTokens: number;
|
|
12857
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13333
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12858
13334
|
cost?: number | undefined;
|
|
13335
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12859
13336
|
taskId?: string | undefined;
|
|
12860
13337
|
modelId?: string | undefined;
|
|
12861
13338
|
diffStrategy?: string | undefined;
|
|
12862
13339
|
isSubtask?: boolean | undefined;
|
|
13340
|
+
repositoryUrl?: string | undefined;
|
|
13341
|
+
repositoryName?: string | undefined;
|
|
13342
|
+
defaultBranch?: string | undefined;
|
|
12863
13343
|
cacheReadTokens?: number | undefined;
|
|
12864
13344
|
cacheWriteTokens?: number | undefined;
|
|
12865
13345
|
}>;
|
|
@@ -12875,12 +13355,16 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12875
13355
|
mode: string;
|
|
12876
13356
|
inputTokens: number;
|
|
12877
13357
|
outputTokens: number;
|
|
12878
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13358
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12879
13359
|
cost?: number | undefined;
|
|
13360
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12880
13361
|
taskId?: string | undefined;
|
|
12881
13362
|
modelId?: string | undefined;
|
|
12882
13363
|
diffStrategy?: string | undefined;
|
|
12883
13364
|
isSubtask?: boolean | undefined;
|
|
13365
|
+
repositoryUrl?: string | undefined;
|
|
13366
|
+
repositoryName?: string | undefined;
|
|
13367
|
+
defaultBranch?: string | undefined;
|
|
12884
13368
|
cacheReadTokens?: number | undefined;
|
|
12885
13369
|
cacheWriteTokens?: number | undefined;
|
|
12886
13370
|
};
|
|
@@ -12896,12 +13380,16 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
12896
13380
|
mode: string;
|
|
12897
13381
|
inputTokens: number;
|
|
12898
13382
|
outputTokens: number;
|
|
12899
|
-
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
13383
|
+
apiProvider?: "openai" | "ollama" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "gemini-cli" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
12900
13384
|
cost?: number | undefined;
|
|
13385
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
12901
13386
|
taskId?: string | undefined;
|
|
12902
13387
|
modelId?: string | undefined;
|
|
12903
13388
|
diffStrategy?: string | undefined;
|
|
12904
13389
|
isSubtask?: boolean | undefined;
|
|
13390
|
+
repositoryUrl?: string | undefined;
|
|
13391
|
+
repositoryName?: string | undefined;
|
|
13392
|
+
defaultBranch?: string | undefined;
|
|
12905
13393
|
cacheReadTokens?: number | undefined;
|
|
12906
13394
|
cacheWriteTokens?: number | undefined;
|
|
12907
13395
|
};
|
|
@@ -13005,7 +13493,7 @@ type TerminalActionPromptType = `TERMINAL_${TerminalActionName}`;
|
|
|
13005
13493
|
/**
|
|
13006
13494
|
* Command
|
|
13007
13495
|
*/
|
|
13008
|
-
declare const commandIds: readonly ["activationCompleted", "plusButtonClicked", "promptsButtonClicked", "mcpButtonClicked", "historyButtonClicked", "marketplaceButtonClicked", "popoutButtonClicked", "accountButtonClicked", "settingsButtonClicked", "openInNewTab", "showHumanRelayDialog", "registerHumanRelayCallback", "unregisterHumanRelayCallback", "handleHumanRelayResponse", "newTask", "setCustomStoragePath", "focusInput", "acceptInput", "focusPanel"];
|
|
13496
|
+
declare const commandIds: readonly ["activationCompleted", "plusButtonClicked", "promptsButtonClicked", "mcpButtonClicked", "historyButtonClicked", "marketplaceButtonClicked", "popoutButtonClicked", "accountButtonClicked", "settingsButtonClicked", "openInNewTab", "showHumanRelayDialog", "registerHumanRelayCallback", "unregisterHumanRelayCallback", "handleHumanRelayResponse", "newTask", "setCustomStoragePath", "importSettings", "focusInput", "acceptInput", "focusPanel"];
|
|
13009
13497
|
type CommandId = (typeof commandIds)[number];
|
|
13010
13498
|
/**
|
|
13011
13499
|
* Language
|
|
@@ -13015,4 +13503,4 @@ declare const languagesSchema: z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "i
|
|
|
13015
13503
|
type Language = z.infer<typeof languagesSchema>;
|
|
13016
13504
|
declare const isLanguage: (value: string) => value is Language;
|
|
13017
13505
|
|
|
13018
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS,
|
|
13506
|
+
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, 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 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, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|