@roo-code/types 1.58.0 → 1.60.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 +73 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +326 -174
- package/dist/index.d.ts +326 -174
- package/dist/index.js +70 -11
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1068,8 +1068,8 @@ type AssertEqual<T extends true> = T;
|
|
|
1068
1068
|
/**
|
|
1069
1069
|
* ProviderName
|
|
1070
1070
|
*/
|
|
1071
|
-
declare const providerNames: readonly ["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"];
|
|
1072
|
-
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>;
|
|
1071
|
+
declare const providerNames: readonly ["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"];
|
|
1072
|
+
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>;
|
|
1073
1073
|
type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
1074
1074
|
/**
|
|
1075
1075
|
* ProviderSettingsEntry
|
|
@@ -1077,15 +1077,15 @@ type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
|
1077
1077
|
declare const providerSettingsEntrySchema: z.ZodObject<{
|
|
1078
1078
|
id: z.ZodString;
|
|
1079
1079
|
name: z.ZodString;
|
|
1080
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
1080
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
1081
1081
|
}, "strip", z.ZodTypeAny, {
|
|
1082
1082
|
name: string;
|
|
1083
1083
|
id: string;
|
|
1084
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
1084
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
1085
1085
|
}, {
|
|
1086
1086
|
name: string;
|
|
1087
1087
|
id: string;
|
|
1088
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
1088
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
1089
1089
|
}>;
|
|
1090
1090
|
type ProviderSettingsEntry = z.infer<typeof providerSettingsEntrySchema>;
|
|
1091
1091
|
/**
|
|
@@ -1431,6 +1431,8 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1431
1431
|
vertexJsonCredentials: z.ZodOptional<z.ZodString>;
|
|
1432
1432
|
vertexProjectId: z.ZodOptional<z.ZodString>;
|
|
1433
1433
|
vertexRegion: z.ZodOptional<z.ZodString>;
|
|
1434
|
+
enableUrlContext: z.ZodOptional<z.ZodBoolean>;
|
|
1435
|
+
enableGrounding: z.ZodOptional<z.ZodBoolean>;
|
|
1434
1436
|
} & {
|
|
1435
1437
|
apiProvider: z.ZodLiteral<"vertex">;
|
|
1436
1438
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1452,6 +1454,8 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1452
1454
|
vertexJsonCredentials?: string | undefined;
|
|
1453
1455
|
vertexProjectId?: string | undefined;
|
|
1454
1456
|
vertexRegion?: string | undefined;
|
|
1457
|
+
enableUrlContext?: boolean | undefined;
|
|
1458
|
+
enableGrounding?: boolean | undefined;
|
|
1455
1459
|
}, {
|
|
1456
1460
|
apiProvider: "vertex";
|
|
1457
1461
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -1471,6 +1475,8 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1471
1475
|
vertexJsonCredentials?: string | undefined;
|
|
1472
1476
|
vertexProjectId?: string | undefined;
|
|
1473
1477
|
vertexRegion?: string | undefined;
|
|
1478
|
+
enableUrlContext?: boolean | undefined;
|
|
1479
|
+
enableGrounding?: boolean | undefined;
|
|
1474
1480
|
}>, z.ZodObject<{
|
|
1475
1481
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
1476
1482
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1915,10 +1921,10 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1915
1921
|
modelMaxThinkingTokens?: number | undefined;
|
|
1916
1922
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
1917
1923
|
apiModelId?: string | undefined;
|
|
1918
|
-
geminiApiKey?: string | undefined;
|
|
1919
|
-
googleGeminiBaseUrl?: string | undefined;
|
|
1920
1924
|
enableUrlContext?: boolean | undefined;
|
|
1921
1925
|
enableGrounding?: boolean | undefined;
|
|
1926
|
+
geminiApiKey?: string | undefined;
|
|
1927
|
+
googleGeminiBaseUrl?: string | undefined;
|
|
1922
1928
|
}, {
|
|
1923
1929
|
apiProvider: "gemini";
|
|
1924
1930
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -1934,10 +1940,10 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1934
1940
|
modelMaxThinkingTokens?: number | undefined;
|
|
1935
1941
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
1936
1942
|
apiModelId?: string | undefined;
|
|
1937
|
-
geminiApiKey?: string | undefined;
|
|
1938
|
-
googleGeminiBaseUrl?: string | undefined;
|
|
1939
1943
|
enableUrlContext?: boolean | undefined;
|
|
1940
1944
|
enableGrounding?: boolean | undefined;
|
|
1945
|
+
geminiApiKey?: string | undefined;
|
|
1946
|
+
googleGeminiBaseUrl?: string | undefined;
|
|
1941
1947
|
}>, z.ZodObject<{
|
|
1942
1948
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
1943
1949
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3044,6 +3050,57 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3044
3050
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3045
3051
|
} & {
|
|
3046
3052
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3053
|
+
} & {
|
|
3054
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
3055
|
+
} & {
|
|
3056
|
+
apiProvider: z.ZodLiteral<"qwen-code">;
|
|
3057
|
+
}, "strip", z.ZodTypeAny, {
|
|
3058
|
+
apiProvider: "qwen-code";
|
|
3059
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3060
|
+
includeMaxTokens?: boolean | undefined;
|
|
3061
|
+
diffEnabled?: boolean | undefined;
|
|
3062
|
+
todoListEnabled?: boolean | undefined;
|
|
3063
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3064
|
+
modelTemperature?: number | null | undefined;
|
|
3065
|
+
rateLimitSeconds?: number | undefined;
|
|
3066
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3067
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3068
|
+
modelMaxTokens?: number | undefined;
|
|
3069
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3070
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
3071
|
+
apiModelId?: string | undefined;
|
|
3072
|
+
qwenCodeOauthPath?: string | undefined;
|
|
3073
|
+
}, {
|
|
3074
|
+
apiProvider: "qwen-code";
|
|
3075
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3076
|
+
includeMaxTokens?: boolean | undefined;
|
|
3077
|
+
diffEnabled?: boolean | undefined;
|
|
3078
|
+
todoListEnabled?: boolean | undefined;
|
|
3079
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3080
|
+
modelTemperature?: number | null | undefined;
|
|
3081
|
+
rateLimitSeconds?: number | undefined;
|
|
3082
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3083
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3084
|
+
modelMaxTokens?: number | undefined;
|
|
3085
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3086
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
3087
|
+
apiModelId?: string | undefined;
|
|
3088
|
+
qwenCodeOauthPath?: string | undefined;
|
|
3089
|
+
}>, z.ZodObject<{
|
|
3090
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3091
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3092
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3093
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3094
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3095
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3096
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
3097
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
3098
|
+
reasoningEffort: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>>;
|
|
3099
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3100
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3101
|
+
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3102
|
+
} & {
|
|
3103
|
+
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3047
3104
|
} & {
|
|
3048
3105
|
apiProvider: z.ZodLiteral<"roo">;
|
|
3049
3106
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3104,6 +3161,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3104
3161
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3105
3162
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3106
3163
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3164
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
3107
3165
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
3108
3166
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
3109
3167
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -3305,7 +3363,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3305
3363
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3306
3364
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3307
3365
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
3308
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
3366
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
3309
3367
|
}, "strip", z.ZodTypeAny, {
|
|
3310
3368
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3311
3369
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3315,7 +3373,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3315
3373
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3316
3374
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3317
3375
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3318
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3376
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3319
3377
|
includeMaxTokens?: boolean | undefined;
|
|
3320
3378
|
diffEnabled?: boolean | undefined;
|
|
3321
3379
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3360,6 +3418,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3360
3418
|
vertexJsonCredentials?: string | undefined;
|
|
3361
3419
|
vertexProjectId?: string | undefined;
|
|
3362
3420
|
vertexRegion?: string | undefined;
|
|
3421
|
+
enableUrlContext?: boolean | undefined;
|
|
3422
|
+
enableGrounding?: boolean | undefined;
|
|
3363
3423
|
openAiBaseUrl?: string | undefined;
|
|
3364
3424
|
openAiApiKey?: string | undefined;
|
|
3365
3425
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -3413,8 +3473,6 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3413
3473
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3414
3474
|
geminiApiKey?: string | undefined;
|
|
3415
3475
|
googleGeminiBaseUrl?: string | undefined;
|
|
3416
|
-
enableUrlContext?: boolean | undefined;
|
|
3417
|
-
enableGrounding?: boolean | undefined;
|
|
3418
3476
|
geminiCliOAuthPath?: string | undefined;
|
|
3419
3477
|
geminiCliProjectId?: string | undefined;
|
|
3420
3478
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -3451,6 +3509,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3451
3509
|
featherlessApiKey?: string | undefined;
|
|
3452
3510
|
ioIntelligenceModelId?: string | undefined;
|
|
3453
3511
|
ioIntelligenceApiKey?: string | undefined;
|
|
3512
|
+
qwenCodeOauthPath?: string | undefined;
|
|
3454
3513
|
}, {
|
|
3455
3514
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3456
3515
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3460,7 +3519,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3460
3519
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3461
3520
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3462
3521
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3463
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3522
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3464
3523
|
includeMaxTokens?: boolean | undefined;
|
|
3465
3524
|
diffEnabled?: boolean | undefined;
|
|
3466
3525
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3505,6 +3564,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3505
3564
|
vertexJsonCredentials?: string | undefined;
|
|
3506
3565
|
vertexProjectId?: string | undefined;
|
|
3507
3566
|
vertexRegion?: string | undefined;
|
|
3567
|
+
enableUrlContext?: boolean | undefined;
|
|
3568
|
+
enableGrounding?: boolean | undefined;
|
|
3508
3569
|
openAiBaseUrl?: string | undefined;
|
|
3509
3570
|
openAiApiKey?: string | undefined;
|
|
3510
3571
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -3558,8 +3619,6 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3558
3619
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3559
3620
|
geminiApiKey?: string | undefined;
|
|
3560
3621
|
googleGeminiBaseUrl?: string | undefined;
|
|
3561
|
-
enableUrlContext?: boolean | undefined;
|
|
3562
|
-
enableGrounding?: boolean | undefined;
|
|
3563
3622
|
geminiCliOAuthPath?: string | undefined;
|
|
3564
3623
|
geminiCliProjectId?: string | undefined;
|
|
3565
3624
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -3596,6 +3655,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3596
3655
|
featherlessApiKey?: string | undefined;
|
|
3597
3656
|
ioIntelligenceModelId?: string | undefined;
|
|
3598
3657
|
ioIntelligenceApiKey?: string | undefined;
|
|
3658
|
+
qwenCodeOauthPath?: string | undefined;
|
|
3599
3659
|
}>;
|
|
3600
3660
|
type ProviderSettings = z.infer<typeof providerSettingsSchema>;
|
|
3601
3661
|
declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
@@ -3619,6 +3679,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3619
3679
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3620
3680
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3621
3681
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3682
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
3622
3683
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
3623
3684
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
3624
3685
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -3820,7 +3881,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3820
3881
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3821
3882
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3822
3883
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
3823
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
3884
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
3824
3885
|
} & {
|
|
3825
3886
|
id: z.ZodOptional<z.ZodString>;
|
|
3826
3887
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3833,7 +3894,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3833
3894
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3834
3895
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3835
3896
|
id?: string | undefined;
|
|
3836
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3897
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3837
3898
|
includeMaxTokens?: boolean | undefined;
|
|
3838
3899
|
diffEnabled?: boolean | undefined;
|
|
3839
3900
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3878,6 +3939,8 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3878
3939
|
vertexJsonCredentials?: string | undefined;
|
|
3879
3940
|
vertexProjectId?: string | undefined;
|
|
3880
3941
|
vertexRegion?: string | undefined;
|
|
3942
|
+
enableUrlContext?: boolean | undefined;
|
|
3943
|
+
enableGrounding?: boolean | undefined;
|
|
3881
3944
|
openAiBaseUrl?: string | undefined;
|
|
3882
3945
|
openAiApiKey?: string | undefined;
|
|
3883
3946
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -3931,8 +3994,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3931
3994
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3932
3995
|
geminiApiKey?: string | undefined;
|
|
3933
3996
|
googleGeminiBaseUrl?: string | undefined;
|
|
3934
|
-
enableUrlContext?: boolean | undefined;
|
|
3935
|
-
enableGrounding?: boolean | undefined;
|
|
3936
3997
|
geminiCliOAuthPath?: string | undefined;
|
|
3937
3998
|
geminiCliProjectId?: string | undefined;
|
|
3938
3999
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -3969,6 +4030,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3969
4030
|
featherlessApiKey?: string | undefined;
|
|
3970
4031
|
ioIntelligenceModelId?: string | undefined;
|
|
3971
4032
|
ioIntelligenceApiKey?: string | undefined;
|
|
4033
|
+
qwenCodeOauthPath?: string | undefined;
|
|
3972
4034
|
}, {
|
|
3973
4035
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3974
4036
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3979,7 +4041,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3979
4041
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3980
4042
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3981
4043
|
id?: string | undefined;
|
|
3982
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
4044
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3983
4045
|
includeMaxTokens?: boolean | undefined;
|
|
3984
4046
|
diffEnabled?: boolean | undefined;
|
|
3985
4047
|
todoListEnabled?: boolean | undefined;
|
|
@@ -4024,6 +4086,8 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4024
4086
|
vertexJsonCredentials?: string | undefined;
|
|
4025
4087
|
vertexProjectId?: string | undefined;
|
|
4026
4088
|
vertexRegion?: string | undefined;
|
|
4089
|
+
enableUrlContext?: boolean | undefined;
|
|
4090
|
+
enableGrounding?: boolean | undefined;
|
|
4027
4091
|
openAiBaseUrl?: string | undefined;
|
|
4028
4092
|
openAiApiKey?: string | undefined;
|
|
4029
4093
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -4077,8 +4141,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4077
4141
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
4078
4142
|
geminiApiKey?: string | undefined;
|
|
4079
4143
|
googleGeminiBaseUrl?: string | undefined;
|
|
4080
|
-
enableUrlContext?: boolean | undefined;
|
|
4081
|
-
enableGrounding?: boolean | undefined;
|
|
4082
4144
|
geminiCliOAuthPath?: string | undefined;
|
|
4083
4145
|
geminiCliProjectId?: string | undefined;
|
|
4084
4146
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -4115,6 +4177,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4115
4177
|
featherlessApiKey?: string | undefined;
|
|
4116
4178
|
ioIntelligenceModelId?: string | undefined;
|
|
4117
4179
|
ioIntelligenceApiKey?: string | undefined;
|
|
4180
|
+
qwenCodeOauthPath?: string | undefined;
|
|
4118
4181
|
}>;
|
|
4119
4182
|
declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"apiProvider", [z.ZodObject<{
|
|
4120
4183
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4452,6 +4515,8 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4452
4515
|
vertexJsonCredentials: z.ZodOptional<z.ZodString>;
|
|
4453
4516
|
vertexProjectId: z.ZodOptional<z.ZodString>;
|
|
4454
4517
|
vertexRegion: z.ZodOptional<z.ZodString>;
|
|
4518
|
+
enableUrlContext: z.ZodOptional<z.ZodBoolean>;
|
|
4519
|
+
enableGrounding: z.ZodOptional<z.ZodBoolean>;
|
|
4455
4520
|
} & {
|
|
4456
4521
|
apiProvider: z.ZodLiteral<"vertex">;
|
|
4457
4522
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4473,6 +4538,8 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4473
4538
|
vertexJsonCredentials?: string | undefined;
|
|
4474
4539
|
vertexProjectId?: string | undefined;
|
|
4475
4540
|
vertexRegion?: string | undefined;
|
|
4541
|
+
enableUrlContext?: boolean | undefined;
|
|
4542
|
+
enableGrounding?: boolean | undefined;
|
|
4476
4543
|
}, {
|
|
4477
4544
|
apiProvider: "vertex";
|
|
4478
4545
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -4492,6 +4559,8 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4492
4559
|
vertexJsonCredentials?: string | undefined;
|
|
4493
4560
|
vertexProjectId?: string | undefined;
|
|
4494
4561
|
vertexRegion?: string | undefined;
|
|
4562
|
+
enableUrlContext?: boolean | undefined;
|
|
4563
|
+
enableGrounding?: boolean | undefined;
|
|
4495
4564
|
}>, z.ZodObject<{
|
|
4496
4565
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
4497
4566
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4936,10 +5005,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4936
5005
|
modelMaxThinkingTokens?: number | undefined;
|
|
4937
5006
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4938
5007
|
apiModelId?: string | undefined;
|
|
4939
|
-
geminiApiKey?: string | undefined;
|
|
4940
|
-
googleGeminiBaseUrl?: string | undefined;
|
|
4941
5008
|
enableUrlContext?: boolean | undefined;
|
|
4942
5009
|
enableGrounding?: boolean | undefined;
|
|
5010
|
+
geminiApiKey?: string | undefined;
|
|
5011
|
+
googleGeminiBaseUrl?: string | undefined;
|
|
4943
5012
|
}, {
|
|
4944
5013
|
apiProvider: "gemini";
|
|
4945
5014
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -4955,10 +5024,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4955
5024
|
modelMaxThinkingTokens?: number | undefined;
|
|
4956
5025
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4957
5026
|
apiModelId?: string | undefined;
|
|
4958
|
-
geminiApiKey?: string | undefined;
|
|
4959
|
-
googleGeminiBaseUrl?: string | undefined;
|
|
4960
5027
|
enableUrlContext?: boolean | undefined;
|
|
4961
5028
|
enableGrounding?: boolean | undefined;
|
|
5029
|
+
geminiApiKey?: string | undefined;
|
|
5030
|
+
googleGeminiBaseUrl?: string | undefined;
|
|
4962
5031
|
}>, z.ZodObject<{
|
|
4963
5032
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
4964
5033
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6065,6 +6134,57 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6065
6134
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
6066
6135
|
} & {
|
|
6067
6136
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6137
|
+
} & {
|
|
6138
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
6139
|
+
} & {
|
|
6140
|
+
apiProvider: z.ZodLiteral<"qwen-code">;
|
|
6141
|
+
}, "strip", z.ZodTypeAny, {
|
|
6142
|
+
apiProvider: "qwen-code";
|
|
6143
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
6144
|
+
includeMaxTokens?: boolean | undefined;
|
|
6145
|
+
diffEnabled?: boolean | undefined;
|
|
6146
|
+
todoListEnabled?: boolean | undefined;
|
|
6147
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
6148
|
+
modelTemperature?: number | null | undefined;
|
|
6149
|
+
rateLimitSeconds?: number | undefined;
|
|
6150
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
6151
|
+
enableReasoningEffort?: boolean | undefined;
|
|
6152
|
+
modelMaxTokens?: number | undefined;
|
|
6153
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
6154
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6155
|
+
apiModelId?: string | undefined;
|
|
6156
|
+
qwenCodeOauthPath?: string | undefined;
|
|
6157
|
+
}, {
|
|
6158
|
+
apiProvider: "qwen-code";
|
|
6159
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
6160
|
+
includeMaxTokens?: boolean | undefined;
|
|
6161
|
+
diffEnabled?: boolean | undefined;
|
|
6162
|
+
todoListEnabled?: boolean | undefined;
|
|
6163
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
6164
|
+
modelTemperature?: number | null | undefined;
|
|
6165
|
+
rateLimitSeconds?: number | undefined;
|
|
6166
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
6167
|
+
enableReasoningEffort?: boolean | undefined;
|
|
6168
|
+
modelMaxTokens?: number | undefined;
|
|
6169
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
6170
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6171
|
+
apiModelId?: string | undefined;
|
|
6172
|
+
qwenCodeOauthPath?: string | undefined;
|
|
6173
|
+
}>, z.ZodObject<{
|
|
6174
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
6175
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6176
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6177
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
6178
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6179
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
6180
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
6181
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
6182
|
+
reasoningEffort: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>>;
|
|
6183
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
6184
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
6185
|
+
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
6186
|
+
} & {
|
|
6187
|
+
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6068
6188
|
} & {
|
|
6069
6189
|
apiProvider: z.ZodLiteral<"roo">;
|
|
6070
6190
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6111,7 +6231,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6111
6231
|
id?: string | undefined;
|
|
6112
6232
|
}>>;
|
|
6113
6233
|
type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
|
|
6114
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "
|
|
6234
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "unboundApiKey", "unboundModelId", "requestyBaseUrl", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId", "litellmUsePromptCache", "cerebrasApiKey", "sambaNovaApiKey", "zaiApiKey", "zaiApiLine", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceModelId", "ioIntelligenceApiKey", "qwenCodeOauthPath"];
|
|
6115
6235
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
6116
6236
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6117
6237
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
@@ -6123,7 +6243,7 @@ declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "huma
|
|
|
6123
6243
|
}>;
|
|
6124
6244
|
declare const dynamicProviders: readonly ["glama", "huggingface", "litellm", "openrouter", "requesty", "unbound"];
|
|
6125
6245
|
type DynamicProvider = (typeof dynamicProviders)[number];
|
|
6126
|
-
declare const
|
|
6246
|
+
declare const isDynamicProvider: (key: string) => key is DynamicProvider;
|
|
6127
6247
|
|
|
6128
6248
|
/**
|
|
6129
6249
|
* Default delay in milliseconds after writes to allow diagnostics to detect potential problems.
|
|
@@ -6145,15 +6265,15 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6145
6265
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6146
6266
|
id: z.ZodString;
|
|
6147
6267
|
name: z.ZodString;
|
|
6148
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
6268
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
6149
6269
|
}, "strip", z.ZodTypeAny, {
|
|
6150
6270
|
name: string;
|
|
6151
6271
|
id: string;
|
|
6152
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6272
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6153
6273
|
}, {
|
|
6154
6274
|
name: string;
|
|
6155
6275
|
id: string;
|
|
6156
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6276
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6157
6277
|
}>, "many">>;
|
|
6158
6278
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6159
6279
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6273,17 +6393,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6273
6393
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
6274
6394
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
6275
6395
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
6276
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
6277
6396
|
}, "strip", z.ZodTypeAny, {
|
|
6278
6397
|
powerSteering?: boolean | undefined;
|
|
6279
6398
|
multiFileApplyDiff?: boolean | undefined;
|
|
6280
6399
|
preventFocusDisruption?: boolean | undefined;
|
|
6281
|
-
assistantMessageParser?: boolean | undefined;
|
|
6282
6400
|
}, {
|
|
6283
6401
|
powerSteering?: boolean | undefined;
|
|
6284
6402
|
multiFileApplyDiff?: boolean | undefined;
|
|
6285
6403
|
preventFocusDisruption?: boolean | undefined;
|
|
6286
|
-
assistantMessageParser?: boolean | undefined;
|
|
6287
6404
|
}>>;
|
|
6288
6405
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
6289
6406
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -6492,7 +6609,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6492
6609
|
listApiConfigMeta?: {
|
|
6493
6610
|
name: string;
|
|
6494
6611
|
id: string;
|
|
6495
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6612
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6496
6613
|
}[] | undefined;
|
|
6497
6614
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6498
6615
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6574,7 +6691,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6574
6691
|
powerSteering?: boolean | undefined;
|
|
6575
6692
|
multiFileApplyDiff?: boolean | undefined;
|
|
6576
6693
|
preventFocusDisruption?: boolean | undefined;
|
|
6577
|
-
assistantMessageParser?: boolean | undefined;
|
|
6578
6694
|
} | undefined;
|
|
6579
6695
|
codebaseIndexModels?: {
|
|
6580
6696
|
openai?: Record<string, {
|
|
@@ -6648,7 +6764,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6648
6764
|
listApiConfigMeta?: {
|
|
6649
6765
|
name: string;
|
|
6650
6766
|
id: string;
|
|
6651
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6767
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6652
6768
|
}[] | undefined;
|
|
6653
6769
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6654
6770
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6730,7 +6846,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6730
6846
|
powerSteering?: boolean | undefined;
|
|
6731
6847
|
multiFileApplyDiff?: boolean | undefined;
|
|
6732
6848
|
preventFocusDisruption?: boolean | undefined;
|
|
6733
|
-
assistantMessageParser?: boolean | undefined;
|
|
6734
6849
|
} | undefined;
|
|
6735
6850
|
codebaseIndexModels?: {
|
|
6736
6851
|
openai?: Record<string, {
|
|
@@ -6804,6 +6919,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
6804
6919
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
6805
6920
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
6806
6921
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6922
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
6807
6923
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
6808
6924
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
6809
6925
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -7005,21 +7121,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7005
7121
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7006
7122
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
7007
7123
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
7008
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
7124
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
7009
7125
|
} & {
|
|
7010
7126
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
7011
7127
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7012
7128
|
id: z.ZodString;
|
|
7013
7129
|
name: z.ZodString;
|
|
7014
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
7130
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
7015
7131
|
}, "strip", z.ZodTypeAny, {
|
|
7016
7132
|
name: string;
|
|
7017
7133
|
id: string;
|
|
7018
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7134
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7019
7135
|
}, {
|
|
7020
7136
|
name: string;
|
|
7021
7137
|
id: string;
|
|
7022
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7138
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7023
7139
|
}>, "many">>;
|
|
7024
7140
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
7025
7141
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -7131,17 +7247,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7131
7247
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
7132
7248
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
7133
7249
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
7134
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
7135
7250
|
}, "strip", z.ZodTypeAny, {
|
|
7136
7251
|
powerSteering?: boolean | undefined;
|
|
7137
7252
|
multiFileApplyDiff?: boolean | undefined;
|
|
7138
7253
|
preventFocusDisruption?: boolean | undefined;
|
|
7139
|
-
assistantMessageParser?: boolean | undefined;
|
|
7140
7254
|
}, {
|
|
7141
7255
|
powerSteering?: boolean | undefined;
|
|
7142
7256
|
multiFileApplyDiff?: boolean | undefined;
|
|
7143
7257
|
preventFocusDisruption?: boolean | undefined;
|
|
7144
|
-
assistantMessageParser?: boolean | undefined;
|
|
7145
7258
|
}>>;
|
|
7146
7259
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
7147
7260
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -7335,7 +7448,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7335
7448
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7336
7449
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7337
7450
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7338
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7451
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7339
7452
|
includeMaxTokens?: boolean | undefined;
|
|
7340
7453
|
diffEnabled?: boolean | undefined;
|
|
7341
7454
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7380,6 +7493,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7380
7493
|
vertexJsonCredentials?: string | undefined;
|
|
7381
7494
|
vertexProjectId?: string | undefined;
|
|
7382
7495
|
vertexRegion?: string | undefined;
|
|
7496
|
+
enableUrlContext?: boolean | undefined;
|
|
7497
|
+
enableGrounding?: boolean | undefined;
|
|
7383
7498
|
openAiBaseUrl?: string | undefined;
|
|
7384
7499
|
openAiApiKey?: string | undefined;
|
|
7385
7500
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -7433,8 +7548,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7433
7548
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
7434
7549
|
geminiApiKey?: string | undefined;
|
|
7435
7550
|
googleGeminiBaseUrl?: string | undefined;
|
|
7436
|
-
enableUrlContext?: boolean | undefined;
|
|
7437
|
-
enableGrounding?: boolean | undefined;
|
|
7438
7551
|
geminiCliOAuthPath?: string | undefined;
|
|
7439
7552
|
geminiCliProjectId?: string | undefined;
|
|
7440
7553
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -7471,6 +7584,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7471
7584
|
featherlessApiKey?: string | undefined;
|
|
7472
7585
|
ioIntelligenceModelId?: string | undefined;
|
|
7473
7586
|
ioIntelligenceApiKey?: string | undefined;
|
|
7587
|
+
qwenCodeOauthPath?: string | undefined;
|
|
7474
7588
|
mode?: string | undefined;
|
|
7475
7589
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
7476
7590
|
customInstructions?: string | undefined;
|
|
@@ -7491,7 +7605,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7491
7605
|
listApiConfigMeta?: {
|
|
7492
7606
|
name: string;
|
|
7493
7607
|
id: string;
|
|
7494
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7608
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7495
7609
|
}[] | undefined;
|
|
7496
7610
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7497
7611
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7573,7 +7687,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7573
7687
|
powerSteering?: boolean | undefined;
|
|
7574
7688
|
multiFileApplyDiff?: boolean | undefined;
|
|
7575
7689
|
preventFocusDisruption?: boolean | undefined;
|
|
7576
|
-
assistantMessageParser?: boolean | undefined;
|
|
7577
7690
|
} | undefined;
|
|
7578
7691
|
codebaseIndexModels?: {
|
|
7579
7692
|
openai?: Record<string, {
|
|
@@ -7632,7 +7745,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7632
7745
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7633
7746
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7634
7747
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7635
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7748
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7636
7749
|
includeMaxTokens?: boolean | undefined;
|
|
7637
7750
|
diffEnabled?: boolean | undefined;
|
|
7638
7751
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7677,6 +7790,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7677
7790
|
vertexJsonCredentials?: string | undefined;
|
|
7678
7791
|
vertexProjectId?: string | undefined;
|
|
7679
7792
|
vertexRegion?: string | undefined;
|
|
7793
|
+
enableUrlContext?: boolean | undefined;
|
|
7794
|
+
enableGrounding?: boolean | undefined;
|
|
7680
7795
|
openAiBaseUrl?: string | undefined;
|
|
7681
7796
|
openAiApiKey?: string | undefined;
|
|
7682
7797
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -7730,8 +7845,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7730
7845
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
7731
7846
|
geminiApiKey?: string | undefined;
|
|
7732
7847
|
googleGeminiBaseUrl?: string | undefined;
|
|
7733
|
-
enableUrlContext?: boolean | undefined;
|
|
7734
|
-
enableGrounding?: boolean | undefined;
|
|
7735
7848
|
geminiCliOAuthPath?: string | undefined;
|
|
7736
7849
|
geminiCliProjectId?: string | undefined;
|
|
7737
7850
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -7768,6 +7881,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7768
7881
|
featherlessApiKey?: string | undefined;
|
|
7769
7882
|
ioIntelligenceModelId?: string | undefined;
|
|
7770
7883
|
ioIntelligenceApiKey?: string | undefined;
|
|
7884
|
+
qwenCodeOauthPath?: string | undefined;
|
|
7771
7885
|
mode?: string | undefined;
|
|
7772
7886
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
7773
7887
|
customInstructions?: string | undefined;
|
|
@@ -7788,7 +7902,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7788
7902
|
listApiConfigMeta?: {
|
|
7789
7903
|
name: string;
|
|
7790
7904
|
id: string;
|
|
7791
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7905
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7792
7906
|
}[] | undefined;
|
|
7793
7907
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7794
7908
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7870,7 +7984,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7870
7984
|
powerSteering?: boolean | undefined;
|
|
7871
7985
|
multiFileApplyDiff?: boolean | undefined;
|
|
7872
7986
|
preventFocusDisruption?: boolean | undefined;
|
|
7873
|
-
assistantMessageParser?: boolean | undefined;
|
|
7874
7987
|
} | undefined;
|
|
7875
7988
|
codebaseIndexModels?: {
|
|
7876
7989
|
openai?: Record<string, {
|
|
@@ -8007,6 +8120,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8007
8120
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
8008
8121
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
8009
8122
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
8123
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
8010
8124
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
8011
8125
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
8012
8126
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -8208,21 +8322,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8208
8322
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8209
8323
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
8210
8324
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
8211
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
8325
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
8212
8326
|
} & {
|
|
8213
8327
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
8214
8328
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8215
8329
|
id: z.ZodString;
|
|
8216
8330
|
name: z.ZodString;
|
|
8217
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
8331
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
8218
8332
|
}, "strip", z.ZodTypeAny, {
|
|
8219
8333
|
name: string;
|
|
8220
8334
|
id: string;
|
|
8221
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8335
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8222
8336
|
}, {
|
|
8223
8337
|
name: string;
|
|
8224
8338
|
id: string;
|
|
8225
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8339
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8226
8340
|
}>, "many">>;
|
|
8227
8341
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8228
8342
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8334,17 +8448,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8334
8448
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
8335
8449
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
8336
8450
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
8337
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
8338
8451
|
}, "strip", z.ZodTypeAny, {
|
|
8339
8452
|
powerSteering?: boolean | undefined;
|
|
8340
8453
|
multiFileApplyDiff?: boolean | undefined;
|
|
8341
8454
|
preventFocusDisruption?: boolean | undefined;
|
|
8342
|
-
assistantMessageParser?: boolean | undefined;
|
|
8343
8455
|
}, {
|
|
8344
8456
|
powerSteering?: boolean | undefined;
|
|
8345
8457
|
multiFileApplyDiff?: boolean | undefined;
|
|
8346
8458
|
preventFocusDisruption?: boolean | undefined;
|
|
8347
|
-
assistantMessageParser?: boolean | undefined;
|
|
8348
8459
|
}>>;
|
|
8349
8460
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
8350
8461
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -8538,7 +8649,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8538
8649
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8539
8650
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8540
8651
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
8541
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8652
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8542
8653
|
includeMaxTokens?: boolean | undefined;
|
|
8543
8654
|
diffEnabled?: boolean | undefined;
|
|
8544
8655
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8583,6 +8694,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8583
8694
|
vertexJsonCredentials?: string | undefined;
|
|
8584
8695
|
vertexProjectId?: string | undefined;
|
|
8585
8696
|
vertexRegion?: string | undefined;
|
|
8697
|
+
enableUrlContext?: boolean | undefined;
|
|
8698
|
+
enableGrounding?: boolean | undefined;
|
|
8586
8699
|
openAiBaseUrl?: string | undefined;
|
|
8587
8700
|
openAiApiKey?: string | undefined;
|
|
8588
8701
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -8636,8 +8749,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8636
8749
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
8637
8750
|
geminiApiKey?: string | undefined;
|
|
8638
8751
|
googleGeminiBaseUrl?: string | undefined;
|
|
8639
|
-
enableUrlContext?: boolean | undefined;
|
|
8640
|
-
enableGrounding?: boolean | undefined;
|
|
8641
8752
|
geminiCliOAuthPath?: string | undefined;
|
|
8642
8753
|
geminiCliProjectId?: string | undefined;
|
|
8643
8754
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -8674,6 +8785,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8674
8785
|
featherlessApiKey?: string | undefined;
|
|
8675
8786
|
ioIntelligenceModelId?: string | undefined;
|
|
8676
8787
|
ioIntelligenceApiKey?: string | undefined;
|
|
8788
|
+
qwenCodeOauthPath?: string | undefined;
|
|
8677
8789
|
mode?: string | undefined;
|
|
8678
8790
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
8679
8791
|
customInstructions?: string | undefined;
|
|
@@ -8694,7 +8806,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8694
8806
|
listApiConfigMeta?: {
|
|
8695
8807
|
name: string;
|
|
8696
8808
|
id: string;
|
|
8697
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8809
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8698
8810
|
}[] | undefined;
|
|
8699
8811
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8700
8812
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8776,7 +8888,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8776
8888
|
powerSteering?: boolean | undefined;
|
|
8777
8889
|
multiFileApplyDiff?: boolean | undefined;
|
|
8778
8890
|
preventFocusDisruption?: boolean | undefined;
|
|
8779
|
-
assistantMessageParser?: boolean | undefined;
|
|
8780
8891
|
} | undefined;
|
|
8781
8892
|
codebaseIndexModels?: {
|
|
8782
8893
|
openai?: Record<string, {
|
|
@@ -8835,7 +8946,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8835
8946
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8836
8947
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8837
8948
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
8838
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8949
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8839
8950
|
includeMaxTokens?: boolean | undefined;
|
|
8840
8951
|
diffEnabled?: boolean | undefined;
|
|
8841
8952
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8880,6 +8991,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8880
8991
|
vertexJsonCredentials?: string | undefined;
|
|
8881
8992
|
vertexProjectId?: string | undefined;
|
|
8882
8993
|
vertexRegion?: string | undefined;
|
|
8994
|
+
enableUrlContext?: boolean | undefined;
|
|
8995
|
+
enableGrounding?: boolean | undefined;
|
|
8883
8996
|
openAiBaseUrl?: string | undefined;
|
|
8884
8997
|
openAiApiKey?: string | undefined;
|
|
8885
8998
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -8933,8 +9046,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8933
9046
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
8934
9047
|
geminiApiKey?: string | undefined;
|
|
8935
9048
|
googleGeminiBaseUrl?: string | undefined;
|
|
8936
|
-
enableUrlContext?: boolean | undefined;
|
|
8937
|
-
enableGrounding?: boolean | undefined;
|
|
8938
9049
|
geminiCliOAuthPath?: string | undefined;
|
|
8939
9050
|
geminiCliProjectId?: string | undefined;
|
|
8940
9051
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -8971,6 +9082,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8971
9082
|
featherlessApiKey?: string | undefined;
|
|
8972
9083
|
ioIntelligenceModelId?: string | undefined;
|
|
8973
9084
|
ioIntelligenceApiKey?: string | undefined;
|
|
9085
|
+
qwenCodeOauthPath?: string | undefined;
|
|
8974
9086
|
mode?: string | undefined;
|
|
8975
9087
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
8976
9088
|
customInstructions?: string | undefined;
|
|
@@ -8991,7 +9103,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8991
9103
|
listApiConfigMeta?: {
|
|
8992
9104
|
name: string;
|
|
8993
9105
|
id: string;
|
|
8994
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9106
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8995
9107
|
}[] | undefined;
|
|
8996
9108
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8997
9109
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9073,7 +9185,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9073
9185
|
powerSteering?: boolean | undefined;
|
|
9074
9186
|
multiFileApplyDiff?: boolean | undefined;
|
|
9075
9187
|
preventFocusDisruption?: boolean | undefined;
|
|
9076
|
-
assistantMessageParser?: boolean | undefined;
|
|
9077
9188
|
} | undefined;
|
|
9078
9189
|
codebaseIndexModels?: {
|
|
9079
9190
|
openai?: Record<string, {
|
|
@@ -9138,7 +9249,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9138
9249
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9139
9250
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9140
9251
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9141
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9252
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9142
9253
|
includeMaxTokens?: boolean | undefined;
|
|
9143
9254
|
diffEnabled?: boolean | undefined;
|
|
9144
9255
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9183,6 +9294,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9183
9294
|
vertexJsonCredentials?: string | undefined;
|
|
9184
9295
|
vertexProjectId?: string | undefined;
|
|
9185
9296
|
vertexRegion?: string | undefined;
|
|
9297
|
+
enableUrlContext?: boolean | undefined;
|
|
9298
|
+
enableGrounding?: boolean | undefined;
|
|
9186
9299
|
openAiBaseUrl?: string | undefined;
|
|
9187
9300
|
openAiApiKey?: string | undefined;
|
|
9188
9301
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -9236,8 +9349,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9236
9349
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9237
9350
|
geminiApiKey?: string | undefined;
|
|
9238
9351
|
googleGeminiBaseUrl?: string | undefined;
|
|
9239
|
-
enableUrlContext?: boolean | undefined;
|
|
9240
|
-
enableGrounding?: boolean | undefined;
|
|
9241
9352
|
geminiCliOAuthPath?: string | undefined;
|
|
9242
9353
|
geminiCliProjectId?: string | undefined;
|
|
9243
9354
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -9274,6 +9385,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9274
9385
|
featherlessApiKey?: string | undefined;
|
|
9275
9386
|
ioIntelligenceModelId?: string | undefined;
|
|
9276
9387
|
ioIntelligenceApiKey?: string | undefined;
|
|
9388
|
+
qwenCodeOauthPath?: string | undefined;
|
|
9277
9389
|
mode?: string | undefined;
|
|
9278
9390
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9279
9391
|
customInstructions?: string | undefined;
|
|
@@ -9294,7 +9406,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9294
9406
|
listApiConfigMeta?: {
|
|
9295
9407
|
name: string;
|
|
9296
9408
|
id: string;
|
|
9297
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9409
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9298
9410
|
}[] | undefined;
|
|
9299
9411
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9300
9412
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9376,7 +9488,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9376
9488
|
powerSteering?: boolean | undefined;
|
|
9377
9489
|
multiFileApplyDiff?: boolean | undefined;
|
|
9378
9490
|
preventFocusDisruption?: boolean | undefined;
|
|
9379
|
-
assistantMessageParser?: boolean | undefined;
|
|
9380
9491
|
} | undefined;
|
|
9381
9492
|
codebaseIndexModels?: {
|
|
9382
9493
|
openai?: Record<string, {
|
|
@@ -9440,7 +9551,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9440
9551
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9441
9552
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9442
9553
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9443
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9554
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9444
9555
|
includeMaxTokens?: boolean | undefined;
|
|
9445
9556
|
diffEnabled?: boolean | undefined;
|
|
9446
9557
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9485,6 +9596,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9485
9596
|
vertexJsonCredentials?: string | undefined;
|
|
9486
9597
|
vertexProjectId?: string | undefined;
|
|
9487
9598
|
vertexRegion?: string | undefined;
|
|
9599
|
+
enableUrlContext?: boolean | undefined;
|
|
9600
|
+
enableGrounding?: boolean | undefined;
|
|
9488
9601
|
openAiBaseUrl?: string | undefined;
|
|
9489
9602
|
openAiApiKey?: string | undefined;
|
|
9490
9603
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -9538,8 +9651,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9538
9651
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9539
9652
|
geminiApiKey?: string | undefined;
|
|
9540
9653
|
googleGeminiBaseUrl?: string | undefined;
|
|
9541
|
-
enableUrlContext?: boolean | undefined;
|
|
9542
|
-
enableGrounding?: boolean | undefined;
|
|
9543
9654
|
geminiCliOAuthPath?: string | undefined;
|
|
9544
9655
|
geminiCliProjectId?: string | undefined;
|
|
9545
9656
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -9576,6 +9687,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9576
9687
|
featherlessApiKey?: string | undefined;
|
|
9577
9688
|
ioIntelligenceModelId?: string | undefined;
|
|
9578
9689
|
ioIntelligenceApiKey?: string | undefined;
|
|
9690
|
+
qwenCodeOauthPath?: string | undefined;
|
|
9579
9691
|
mode?: string | undefined;
|
|
9580
9692
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9581
9693
|
customInstructions?: string | undefined;
|
|
@@ -9596,7 +9708,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9596
9708
|
listApiConfigMeta?: {
|
|
9597
9709
|
name: string;
|
|
9598
9710
|
id: string;
|
|
9599
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9711
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9600
9712
|
}[] | undefined;
|
|
9601
9713
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9602
9714
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9678,7 +9790,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9678
9790
|
powerSteering?: boolean | undefined;
|
|
9679
9791
|
multiFileApplyDiff?: boolean | undefined;
|
|
9680
9792
|
preventFocusDisruption?: boolean | undefined;
|
|
9681
|
-
assistantMessageParser?: boolean | undefined;
|
|
9682
9793
|
} | undefined;
|
|
9683
9794
|
codebaseIndexModels?: {
|
|
9684
9795
|
openai?: Record<string, {
|
|
@@ -9745,7 +9856,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9745
9856
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9746
9857
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9747
9858
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9748
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9859
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9749
9860
|
includeMaxTokens?: boolean | undefined;
|
|
9750
9861
|
diffEnabled?: boolean | undefined;
|
|
9751
9862
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9790,6 +9901,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9790
9901
|
vertexJsonCredentials?: string | undefined;
|
|
9791
9902
|
vertexProjectId?: string | undefined;
|
|
9792
9903
|
vertexRegion?: string | undefined;
|
|
9904
|
+
enableUrlContext?: boolean | undefined;
|
|
9905
|
+
enableGrounding?: boolean | undefined;
|
|
9793
9906
|
openAiBaseUrl?: string | undefined;
|
|
9794
9907
|
openAiApiKey?: string | undefined;
|
|
9795
9908
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -9843,8 +9956,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9843
9956
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9844
9957
|
geminiApiKey?: string | undefined;
|
|
9845
9958
|
googleGeminiBaseUrl?: string | undefined;
|
|
9846
|
-
enableUrlContext?: boolean | undefined;
|
|
9847
|
-
enableGrounding?: boolean | undefined;
|
|
9848
9959
|
geminiCliOAuthPath?: string | undefined;
|
|
9849
9960
|
geminiCliProjectId?: string | undefined;
|
|
9850
9961
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -9881,6 +9992,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9881
9992
|
featherlessApiKey?: string | undefined;
|
|
9882
9993
|
ioIntelligenceModelId?: string | undefined;
|
|
9883
9994
|
ioIntelligenceApiKey?: string | undefined;
|
|
9995
|
+
qwenCodeOauthPath?: string | undefined;
|
|
9884
9996
|
mode?: string | undefined;
|
|
9885
9997
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9886
9998
|
customInstructions?: string | undefined;
|
|
@@ -9901,7 +10013,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9901
10013
|
listApiConfigMeta?: {
|
|
9902
10014
|
name: string;
|
|
9903
10015
|
id: string;
|
|
9904
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10016
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9905
10017
|
}[] | undefined;
|
|
9906
10018
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9907
10019
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9983,7 +10095,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9983
10095
|
powerSteering?: boolean | undefined;
|
|
9984
10096
|
multiFileApplyDiff?: boolean | undefined;
|
|
9985
10097
|
preventFocusDisruption?: boolean | undefined;
|
|
9986
|
-
assistantMessageParser?: boolean | undefined;
|
|
9987
10098
|
} | undefined;
|
|
9988
10099
|
codebaseIndexModels?: {
|
|
9989
10100
|
openai?: Record<string, {
|
|
@@ -10050,7 +10161,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10050
10161
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10051
10162
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10052
10163
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
10053
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10164
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10054
10165
|
includeMaxTokens?: boolean | undefined;
|
|
10055
10166
|
diffEnabled?: boolean | undefined;
|
|
10056
10167
|
todoListEnabled?: boolean | undefined;
|
|
@@ -10095,6 +10206,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10095
10206
|
vertexJsonCredentials?: string | undefined;
|
|
10096
10207
|
vertexProjectId?: string | undefined;
|
|
10097
10208
|
vertexRegion?: string | undefined;
|
|
10209
|
+
enableUrlContext?: boolean | undefined;
|
|
10210
|
+
enableGrounding?: boolean | undefined;
|
|
10098
10211
|
openAiBaseUrl?: string | undefined;
|
|
10099
10212
|
openAiApiKey?: string | undefined;
|
|
10100
10213
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -10148,8 +10261,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10148
10261
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
10149
10262
|
geminiApiKey?: string | undefined;
|
|
10150
10263
|
googleGeminiBaseUrl?: string | undefined;
|
|
10151
|
-
enableUrlContext?: boolean | undefined;
|
|
10152
|
-
enableGrounding?: boolean | undefined;
|
|
10153
10264
|
geminiCliOAuthPath?: string | undefined;
|
|
10154
10265
|
geminiCliProjectId?: string | undefined;
|
|
10155
10266
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -10186,6 +10297,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10186
10297
|
featherlessApiKey?: string | undefined;
|
|
10187
10298
|
ioIntelligenceModelId?: string | undefined;
|
|
10188
10299
|
ioIntelligenceApiKey?: string | undefined;
|
|
10300
|
+
qwenCodeOauthPath?: string | undefined;
|
|
10189
10301
|
mode?: string | undefined;
|
|
10190
10302
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
10191
10303
|
customInstructions?: string | undefined;
|
|
@@ -10206,7 +10318,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10206
10318
|
listApiConfigMeta?: {
|
|
10207
10319
|
name: string;
|
|
10208
10320
|
id: string;
|
|
10209
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10321
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10210
10322
|
}[] | undefined;
|
|
10211
10323
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10212
10324
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10288,7 +10400,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10288
10400
|
powerSteering?: boolean | undefined;
|
|
10289
10401
|
multiFileApplyDiff?: boolean | undefined;
|
|
10290
10402
|
preventFocusDisruption?: boolean | undefined;
|
|
10291
|
-
assistantMessageParser?: boolean | undefined;
|
|
10292
10403
|
} | undefined;
|
|
10293
10404
|
codebaseIndexModels?: {
|
|
10294
10405
|
openai?: Record<string, {
|
|
@@ -10431,6 +10542,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10431
10542
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
10432
10543
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
10433
10544
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
10545
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
10434
10546
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
10435
10547
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
10436
10548
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -10632,21 +10744,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10632
10744
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
10633
10745
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
10634
10746
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
10635
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
10747
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
10636
10748
|
} & {
|
|
10637
10749
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
10638
10750
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10639
10751
|
id: z.ZodString;
|
|
10640
10752
|
name: z.ZodString;
|
|
10641
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
10753
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
10642
10754
|
}, "strip", z.ZodTypeAny, {
|
|
10643
10755
|
name: string;
|
|
10644
10756
|
id: string;
|
|
10645
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10757
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10646
10758
|
}, {
|
|
10647
10759
|
name: string;
|
|
10648
10760
|
id: string;
|
|
10649
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10761
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10650
10762
|
}>, "many">>;
|
|
10651
10763
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
10652
10764
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -10758,17 +10870,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10758
10870
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
10759
10871
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
10760
10872
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
10761
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
10762
10873
|
}, "strip", z.ZodTypeAny, {
|
|
10763
10874
|
powerSteering?: boolean | undefined;
|
|
10764
10875
|
multiFileApplyDiff?: boolean | undefined;
|
|
10765
10876
|
preventFocusDisruption?: boolean | undefined;
|
|
10766
|
-
assistantMessageParser?: boolean | undefined;
|
|
10767
10877
|
}, {
|
|
10768
10878
|
powerSteering?: boolean | undefined;
|
|
10769
10879
|
multiFileApplyDiff?: boolean | undefined;
|
|
10770
10880
|
preventFocusDisruption?: boolean | undefined;
|
|
10771
|
-
assistantMessageParser?: boolean | undefined;
|
|
10772
10881
|
}>>;
|
|
10773
10882
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
10774
10883
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -10962,7 +11071,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10962
11071
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10963
11072
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10964
11073
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
10965
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11074
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10966
11075
|
includeMaxTokens?: boolean | undefined;
|
|
10967
11076
|
diffEnabled?: boolean | undefined;
|
|
10968
11077
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11007,6 +11116,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11007
11116
|
vertexJsonCredentials?: string | undefined;
|
|
11008
11117
|
vertexProjectId?: string | undefined;
|
|
11009
11118
|
vertexRegion?: string | undefined;
|
|
11119
|
+
enableUrlContext?: boolean | undefined;
|
|
11120
|
+
enableGrounding?: boolean | undefined;
|
|
11010
11121
|
openAiBaseUrl?: string | undefined;
|
|
11011
11122
|
openAiApiKey?: string | undefined;
|
|
11012
11123
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11060,8 +11171,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11060
11171
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11061
11172
|
geminiApiKey?: string | undefined;
|
|
11062
11173
|
googleGeminiBaseUrl?: string | undefined;
|
|
11063
|
-
enableUrlContext?: boolean | undefined;
|
|
11064
|
-
enableGrounding?: boolean | undefined;
|
|
11065
11174
|
geminiCliOAuthPath?: string | undefined;
|
|
11066
11175
|
geminiCliProjectId?: string | undefined;
|
|
11067
11176
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -11098,6 +11207,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11098
11207
|
featherlessApiKey?: string | undefined;
|
|
11099
11208
|
ioIntelligenceModelId?: string | undefined;
|
|
11100
11209
|
ioIntelligenceApiKey?: string | undefined;
|
|
11210
|
+
qwenCodeOauthPath?: string | undefined;
|
|
11101
11211
|
mode?: string | undefined;
|
|
11102
11212
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11103
11213
|
customInstructions?: string | undefined;
|
|
@@ -11118,7 +11228,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11118
11228
|
listApiConfigMeta?: {
|
|
11119
11229
|
name: string;
|
|
11120
11230
|
id: string;
|
|
11121
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11231
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11122
11232
|
}[] | undefined;
|
|
11123
11233
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11124
11234
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11200,7 +11310,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11200
11310
|
powerSteering?: boolean | undefined;
|
|
11201
11311
|
multiFileApplyDiff?: boolean | undefined;
|
|
11202
11312
|
preventFocusDisruption?: boolean | undefined;
|
|
11203
|
-
assistantMessageParser?: boolean | undefined;
|
|
11204
11313
|
} | undefined;
|
|
11205
11314
|
codebaseIndexModels?: {
|
|
11206
11315
|
openai?: Record<string, {
|
|
@@ -11259,7 +11368,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11259
11368
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11260
11369
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11261
11370
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11262
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11371
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11263
11372
|
includeMaxTokens?: boolean | undefined;
|
|
11264
11373
|
diffEnabled?: boolean | undefined;
|
|
11265
11374
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11304,6 +11413,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11304
11413
|
vertexJsonCredentials?: string | undefined;
|
|
11305
11414
|
vertexProjectId?: string | undefined;
|
|
11306
11415
|
vertexRegion?: string | undefined;
|
|
11416
|
+
enableUrlContext?: boolean | undefined;
|
|
11417
|
+
enableGrounding?: boolean | undefined;
|
|
11307
11418
|
openAiBaseUrl?: string | undefined;
|
|
11308
11419
|
openAiApiKey?: string | undefined;
|
|
11309
11420
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11357,8 +11468,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11357
11468
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11358
11469
|
geminiApiKey?: string | undefined;
|
|
11359
11470
|
googleGeminiBaseUrl?: string | undefined;
|
|
11360
|
-
enableUrlContext?: boolean | undefined;
|
|
11361
|
-
enableGrounding?: boolean | undefined;
|
|
11362
11471
|
geminiCliOAuthPath?: string | undefined;
|
|
11363
11472
|
geminiCliProjectId?: string | undefined;
|
|
11364
11473
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -11395,6 +11504,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11395
11504
|
featherlessApiKey?: string | undefined;
|
|
11396
11505
|
ioIntelligenceModelId?: string | undefined;
|
|
11397
11506
|
ioIntelligenceApiKey?: string | undefined;
|
|
11507
|
+
qwenCodeOauthPath?: string | undefined;
|
|
11398
11508
|
mode?: string | undefined;
|
|
11399
11509
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11400
11510
|
customInstructions?: string | undefined;
|
|
@@ -11415,7 +11525,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11415
11525
|
listApiConfigMeta?: {
|
|
11416
11526
|
name: string;
|
|
11417
11527
|
id: string;
|
|
11418
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11528
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11419
11529
|
}[] | undefined;
|
|
11420
11530
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11421
11531
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11497,7 +11607,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11497
11607
|
powerSteering?: boolean | undefined;
|
|
11498
11608
|
multiFileApplyDiff?: boolean | undefined;
|
|
11499
11609
|
preventFocusDisruption?: boolean | undefined;
|
|
11500
|
-
assistantMessageParser?: boolean | undefined;
|
|
11501
11610
|
} | undefined;
|
|
11502
11611
|
codebaseIndexModels?: {
|
|
11503
11612
|
openai?: Record<string, {
|
|
@@ -11562,7 +11671,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11562
11671
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11563
11672
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11564
11673
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11565
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11674
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11566
11675
|
includeMaxTokens?: boolean | undefined;
|
|
11567
11676
|
diffEnabled?: boolean | undefined;
|
|
11568
11677
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11607,6 +11716,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11607
11716
|
vertexJsonCredentials?: string | undefined;
|
|
11608
11717
|
vertexProjectId?: string | undefined;
|
|
11609
11718
|
vertexRegion?: string | undefined;
|
|
11719
|
+
enableUrlContext?: boolean | undefined;
|
|
11720
|
+
enableGrounding?: boolean | undefined;
|
|
11610
11721
|
openAiBaseUrl?: string | undefined;
|
|
11611
11722
|
openAiApiKey?: string | undefined;
|
|
11612
11723
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11660,8 +11771,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11660
11771
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11661
11772
|
geminiApiKey?: string | undefined;
|
|
11662
11773
|
googleGeminiBaseUrl?: string | undefined;
|
|
11663
|
-
enableUrlContext?: boolean | undefined;
|
|
11664
|
-
enableGrounding?: boolean | undefined;
|
|
11665
11774
|
geminiCliOAuthPath?: string | undefined;
|
|
11666
11775
|
geminiCliProjectId?: string | undefined;
|
|
11667
11776
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -11698,6 +11807,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11698
11807
|
featherlessApiKey?: string | undefined;
|
|
11699
11808
|
ioIntelligenceModelId?: string | undefined;
|
|
11700
11809
|
ioIntelligenceApiKey?: string | undefined;
|
|
11810
|
+
qwenCodeOauthPath?: string | undefined;
|
|
11701
11811
|
mode?: string | undefined;
|
|
11702
11812
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11703
11813
|
customInstructions?: string | undefined;
|
|
@@ -11718,7 +11828,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11718
11828
|
listApiConfigMeta?: {
|
|
11719
11829
|
name: string;
|
|
11720
11830
|
id: string;
|
|
11721
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11831
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11722
11832
|
}[] | undefined;
|
|
11723
11833
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11724
11834
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11800,7 +11910,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11800
11910
|
powerSteering?: boolean | undefined;
|
|
11801
11911
|
multiFileApplyDiff?: boolean | undefined;
|
|
11802
11912
|
preventFocusDisruption?: boolean | undefined;
|
|
11803
|
-
assistantMessageParser?: boolean | undefined;
|
|
11804
11913
|
} | undefined;
|
|
11805
11914
|
codebaseIndexModels?: {
|
|
11806
11915
|
openai?: Record<string, {
|
|
@@ -11864,7 +11973,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11864
11973
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11865
11974
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11866
11975
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11867
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11976
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11868
11977
|
includeMaxTokens?: boolean | undefined;
|
|
11869
11978
|
diffEnabled?: boolean | undefined;
|
|
11870
11979
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11909,6 +12018,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11909
12018
|
vertexJsonCredentials?: string | undefined;
|
|
11910
12019
|
vertexProjectId?: string | undefined;
|
|
11911
12020
|
vertexRegion?: string | undefined;
|
|
12021
|
+
enableUrlContext?: boolean | undefined;
|
|
12022
|
+
enableGrounding?: boolean | undefined;
|
|
11912
12023
|
openAiBaseUrl?: string | undefined;
|
|
11913
12024
|
openAiApiKey?: string | undefined;
|
|
11914
12025
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11962,8 +12073,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11962
12073
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11963
12074
|
geminiApiKey?: string | undefined;
|
|
11964
12075
|
googleGeminiBaseUrl?: string | undefined;
|
|
11965
|
-
enableUrlContext?: boolean | undefined;
|
|
11966
|
-
enableGrounding?: boolean | undefined;
|
|
11967
12076
|
geminiCliOAuthPath?: string | undefined;
|
|
11968
12077
|
geminiCliProjectId?: string | undefined;
|
|
11969
12078
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12000,6 +12109,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12000
12109
|
featherlessApiKey?: string | undefined;
|
|
12001
12110
|
ioIntelligenceModelId?: string | undefined;
|
|
12002
12111
|
ioIntelligenceApiKey?: string | undefined;
|
|
12112
|
+
qwenCodeOauthPath?: string | undefined;
|
|
12003
12113
|
mode?: string | undefined;
|
|
12004
12114
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12005
12115
|
customInstructions?: string | undefined;
|
|
@@ -12020,7 +12130,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12020
12130
|
listApiConfigMeta?: {
|
|
12021
12131
|
name: string;
|
|
12022
12132
|
id: string;
|
|
12023
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12133
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12024
12134
|
}[] | undefined;
|
|
12025
12135
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12026
12136
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12102,7 +12212,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12102
12212
|
powerSteering?: boolean | undefined;
|
|
12103
12213
|
multiFileApplyDiff?: boolean | undefined;
|
|
12104
12214
|
preventFocusDisruption?: boolean | undefined;
|
|
12105
|
-
assistantMessageParser?: boolean | undefined;
|
|
12106
12215
|
} | undefined;
|
|
12107
12216
|
codebaseIndexModels?: {
|
|
12108
12217
|
openai?: Record<string, {
|
|
@@ -12169,7 +12278,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12169
12278
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12170
12279
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12171
12280
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12172
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12281
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12173
12282
|
includeMaxTokens?: boolean | undefined;
|
|
12174
12283
|
diffEnabled?: boolean | undefined;
|
|
12175
12284
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12214,6 +12323,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12214
12323
|
vertexJsonCredentials?: string | undefined;
|
|
12215
12324
|
vertexProjectId?: string | undefined;
|
|
12216
12325
|
vertexRegion?: string | undefined;
|
|
12326
|
+
enableUrlContext?: boolean | undefined;
|
|
12327
|
+
enableGrounding?: boolean | undefined;
|
|
12217
12328
|
openAiBaseUrl?: string | undefined;
|
|
12218
12329
|
openAiApiKey?: string | undefined;
|
|
12219
12330
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -12267,8 +12378,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12267
12378
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
12268
12379
|
geminiApiKey?: string | undefined;
|
|
12269
12380
|
googleGeminiBaseUrl?: string | undefined;
|
|
12270
|
-
enableUrlContext?: boolean | undefined;
|
|
12271
|
-
enableGrounding?: boolean | undefined;
|
|
12272
12381
|
geminiCliOAuthPath?: string | undefined;
|
|
12273
12382
|
geminiCliProjectId?: string | undefined;
|
|
12274
12383
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12305,6 +12414,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12305
12414
|
featherlessApiKey?: string | undefined;
|
|
12306
12415
|
ioIntelligenceModelId?: string | undefined;
|
|
12307
12416
|
ioIntelligenceApiKey?: string | undefined;
|
|
12417
|
+
qwenCodeOauthPath?: string | undefined;
|
|
12308
12418
|
mode?: string | undefined;
|
|
12309
12419
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12310
12420
|
customInstructions?: string | undefined;
|
|
@@ -12325,7 +12435,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12325
12435
|
listApiConfigMeta?: {
|
|
12326
12436
|
name: string;
|
|
12327
12437
|
id: string;
|
|
12328
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12438
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12329
12439
|
}[] | undefined;
|
|
12330
12440
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12331
12441
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12407,7 +12517,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12407
12517
|
powerSteering?: boolean | undefined;
|
|
12408
12518
|
multiFileApplyDiff?: boolean | undefined;
|
|
12409
12519
|
preventFocusDisruption?: boolean | undefined;
|
|
12410
|
-
assistantMessageParser?: boolean | undefined;
|
|
12411
12520
|
} | undefined;
|
|
12412
12521
|
codebaseIndexModels?: {
|
|
12413
12522
|
openai?: Record<string, {
|
|
@@ -12474,7 +12583,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12474
12583
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12475
12584
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12476
12585
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12477
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12586
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12478
12587
|
includeMaxTokens?: boolean | undefined;
|
|
12479
12588
|
diffEnabled?: boolean | undefined;
|
|
12480
12589
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12519,6 +12628,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12519
12628
|
vertexJsonCredentials?: string | undefined;
|
|
12520
12629
|
vertexProjectId?: string | undefined;
|
|
12521
12630
|
vertexRegion?: string | undefined;
|
|
12631
|
+
enableUrlContext?: boolean | undefined;
|
|
12632
|
+
enableGrounding?: boolean | undefined;
|
|
12522
12633
|
openAiBaseUrl?: string | undefined;
|
|
12523
12634
|
openAiApiKey?: string | undefined;
|
|
12524
12635
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -12572,8 +12683,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12572
12683
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
12573
12684
|
geminiApiKey?: string | undefined;
|
|
12574
12685
|
googleGeminiBaseUrl?: string | undefined;
|
|
12575
|
-
enableUrlContext?: boolean | undefined;
|
|
12576
|
-
enableGrounding?: boolean | undefined;
|
|
12577
12686
|
geminiCliOAuthPath?: string | undefined;
|
|
12578
12687
|
geminiCliProjectId?: string | undefined;
|
|
12579
12688
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12610,6 +12719,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12610
12719
|
featherlessApiKey?: string | undefined;
|
|
12611
12720
|
ioIntelligenceModelId?: string | undefined;
|
|
12612
12721
|
ioIntelligenceApiKey?: string | undefined;
|
|
12722
|
+
qwenCodeOauthPath?: string | undefined;
|
|
12613
12723
|
mode?: string | undefined;
|
|
12614
12724
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12615
12725
|
customInstructions?: string | undefined;
|
|
@@ -12630,7 +12740,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12630
12740
|
listApiConfigMeta?: {
|
|
12631
12741
|
name: string;
|
|
12632
12742
|
id: string;
|
|
12633
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12743
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12634
12744
|
}[] | undefined;
|
|
12635
12745
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12636
12746
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12712,7 +12822,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12712
12822
|
powerSteering?: boolean | undefined;
|
|
12713
12823
|
multiFileApplyDiff?: boolean | undefined;
|
|
12714
12824
|
preventFocusDisruption?: boolean | undefined;
|
|
12715
|
-
assistantMessageParser?: boolean | undefined;
|
|
12716
12825
|
} | undefined;
|
|
12717
12826
|
codebaseIndexModels?: {
|
|
12718
12827
|
openai?: Record<string, {
|
|
@@ -12810,7 +12919,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12810
12919
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12811
12920
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12812
12921
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12813
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12922
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12814
12923
|
includeMaxTokens?: boolean | undefined;
|
|
12815
12924
|
diffEnabled?: boolean | undefined;
|
|
12816
12925
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12855,6 +12964,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12855
12964
|
vertexJsonCredentials?: string | undefined;
|
|
12856
12965
|
vertexProjectId?: string | undefined;
|
|
12857
12966
|
vertexRegion?: string | undefined;
|
|
12967
|
+
enableUrlContext?: boolean | undefined;
|
|
12968
|
+
enableGrounding?: boolean | undefined;
|
|
12858
12969
|
openAiBaseUrl?: string | undefined;
|
|
12859
12970
|
openAiApiKey?: string | undefined;
|
|
12860
12971
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -12908,8 +13019,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12908
13019
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
12909
13020
|
geminiApiKey?: string | undefined;
|
|
12910
13021
|
googleGeminiBaseUrl?: string | undefined;
|
|
12911
|
-
enableUrlContext?: boolean | undefined;
|
|
12912
|
-
enableGrounding?: boolean | undefined;
|
|
12913
13022
|
geminiCliOAuthPath?: string | undefined;
|
|
12914
13023
|
geminiCliProjectId?: string | undefined;
|
|
12915
13024
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12946,6 +13055,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12946
13055
|
featherlessApiKey?: string | undefined;
|
|
12947
13056
|
ioIntelligenceModelId?: string | undefined;
|
|
12948
13057
|
ioIntelligenceApiKey?: string | undefined;
|
|
13058
|
+
qwenCodeOauthPath?: string | undefined;
|
|
12949
13059
|
mode?: string | undefined;
|
|
12950
13060
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12951
13061
|
customInstructions?: string | undefined;
|
|
@@ -12966,7 +13076,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12966
13076
|
listApiConfigMeta?: {
|
|
12967
13077
|
name: string;
|
|
12968
13078
|
id: string;
|
|
12969
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
13079
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12970
13080
|
}[] | undefined;
|
|
12971
13081
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12972
13082
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -13048,7 +13158,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13048
13158
|
powerSteering?: boolean | undefined;
|
|
13049
13159
|
multiFileApplyDiff?: boolean | undefined;
|
|
13050
13160
|
preventFocusDisruption?: boolean | undefined;
|
|
13051
|
-
assistantMessageParser?: boolean | undefined;
|
|
13052
13161
|
} | undefined;
|
|
13053
13162
|
codebaseIndexModels?: {
|
|
13054
13163
|
openai?: Record<string, {
|
|
@@ -13129,7 +13238,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13129
13238
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
13130
13239
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
13131
13240
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
13132
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
13241
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
13133
13242
|
includeMaxTokens?: boolean | undefined;
|
|
13134
13243
|
diffEnabled?: boolean | undefined;
|
|
13135
13244
|
todoListEnabled?: boolean | undefined;
|
|
@@ -13174,6 +13283,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13174
13283
|
vertexJsonCredentials?: string | undefined;
|
|
13175
13284
|
vertexProjectId?: string | undefined;
|
|
13176
13285
|
vertexRegion?: string | undefined;
|
|
13286
|
+
enableUrlContext?: boolean | undefined;
|
|
13287
|
+
enableGrounding?: boolean | undefined;
|
|
13177
13288
|
openAiBaseUrl?: string | undefined;
|
|
13178
13289
|
openAiApiKey?: string | undefined;
|
|
13179
13290
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -13227,8 +13338,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13227
13338
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
13228
13339
|
geminiApiKey?: string | undefined;
|
|
13229
13340
|
googleGeminiBaseUrl?: string | undefined;
|
|
13230
|
-
enableUrlContext?: boolean | undefined;
|
|
13231
|
-
enableGrounding?: boolean | undefined;
|
|
13232
13341
|
geminiCliOAuthPath?: string | undefined;
|
|
13233
13342
|
geminiCliProjectId?: string | undefined;
|
|
13234
13343
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -13265,6 +13374,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13265
13374
|
featherlessApiKey?: string | undefined;
|
|
13266
13375
|
ioIntelligenceModelId?: string | undefined;
|
|
13267
13376
|
ioIntelligenceApiKey?: string | undefined;
|
|
13377
|
+
qwenCodeOauthPath?: string | undefined;
|
|
13268
13378
|
mode?: string | undefined;
|
|
13269
13379
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
13270
13380
|
customInstructions?: string | undefined;
|
|
@@ -13285,7 +13395,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13285
13395
|
listApiConfigMeta?: {
|
|
13286
13396
|
name: string;
|
|
13287
13397
|
id: string;
|
|
13288
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
13398
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
13289
13399
|
}[] | undefined;
|
|
13290
13400
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
13291
13401
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -13367,7 +13477,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13367
13477
|
powerSteering?: boolean | undefined;
|
|
13368
13478
|
multiFileApplyDiff?: boolean | undefined;
|
|
13369
13479
|
preventFocusDisruption?: boolean | undefined;
|
|
13370
|
-
assistantMessageParser?: boolean | undefined;
|
|
13371
13480
|
} | undefined;
|
|
13372
13481
|
codebaseIndexModels?: {
|
|
13373
13482
|
openai?: Record<string, {
|
|
@@ -14623,8 +14732,8 @@ type CodebaseIndexProvider = z.infer<typeof codebaseIndexProviderSchema>;
|
|
|
14623
14732
|
/**
|
|
14624
14733
|
* ExperimentId
|
|
14625
14734
|
*/
|
|
14626
|
-
declare const experimentIds: readonly ["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"
|
|
14627
|
-
declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"
|
|
14735
|
+
declare const experimentIds: readonly ["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"];
|
|
14736
|
+
declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"]>;
|
|
14628
14737
|
type ExperimentId = z.infer<typeof experimentIdsSchema>;
|
|
14629
14738
|
/**
|
|
14630
14739
|
* Experiments
|
|
@@ -14633,17 +14742,14 @@ declare const experimentsSchema: z.ZodObject<{
|
|
|
14633
14742
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
14634
14743
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
14635
14744
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
14636
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
14637
14745
|
}, "strip", z.ZodTypeAny, {
|
|
14638
14746
|
powerSteering?: boolean | undefined;
|
|
14639
14747
|
multiFileApplyDiff?: boolean | undefined;
|
|
14640
14748
|
preventFocusDisruption?: boolean | undefined;
|
|
14641
|
-
assistantMessageParser?: boolean | undefined;
|
|
14642
14749
|
}, {
|
|
14643
14750
|
powerSteering?: boolean | undefined;
|
|
14644
14751
|
multiFileApplyDiff?: boolean | undefined;
|
|
14645
14752
|
preventFocusDisruption?: boolean | undefined;
|
|
14646
|
-
assistantMessageParser?: boolean | undefined;
|
|
14647
14753
|
}>;
|
|
14648
14754
|
type Experiments = z.infer<typeof experimentsSchema>;
|
|
14649
14755
|
|
|
@@ -16030,7 +16136,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
16030
16136
|
type AppProperties = z.infer<typeof appPropertiesSchema>;
|
|
16031
16137
|
declare const taskPropertiesSchema: z.ZodObject<{
|
|
16032
16138
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16033
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16139
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16034
16140
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16035
16141
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16036
16142
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16053,7 +16159,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16053
16159
|
}, "strip", z.ZodTypeAny, {
|
|
16054
16160
|
isSubtask?: boolean | undefined;
|
|
16055
16161
|
taskId?: string | undefined;
|
|
16056
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16162
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16057
16163
|
modelId?: string | undefined;
|
|
16058
16164
|
diffStrategy?: string | undefined;
|
|
16059
16165
|
todos?: {
|
|
@@ -16065,7 +16171,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16065
16171
|
}, {
|
|
16066
16172
|
isSubtask?: boolean | undefined;
|
|
16067
16173
|
taskId?: string | undefined;
|
|
16068
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16174
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16069
16175
|
modelId?: string | undefined;
|
|
16070
16176
|
diffStrategy?: string | undefined;
|
|
16071
16177
|
todos?: {
|
|
@@ -16095,7 +16201,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16095
16201
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16096
16202
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16097
16203
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16098
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16204
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16099
16205
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16100
16206
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16101
16207
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16133,7 +16239,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16133
16239
|
language: string;
|
|
16134
16240
|
isSubtask?: boolean | undefined;
|
|
16135
16241
|
taskId?: string | undefined;
|
|
16136
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16242
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16137
16243
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16138
16244
|
modelId?: string | undefined;
|
|
16139
16245
|
diffStrategy?: string | undefined;
|
|
@@ -16156,7 +16262,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16156
16262
|
language: string;
|
|
16157
16263
|
isSubtask?: boolean | undefined;
|
|
16158
16264
|
taskId?: string | undefined;
|
|
16159
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16265
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16160
16266
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16161
16267
|
modelId?: string | undefined;
|
|
16162
16268
|
diffStrategy?: string | undefined;
|
|
@@ -16188,7 +16294,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16188
16294
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16189
16295
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16190
16296
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16191
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16297
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16192
16298
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16193
16299
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16194
16300
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16226,7 +16332,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16226
16332
|
language: string;
|
|
16227
16333
|
isSubtask?: boolean | undefined;
|
|
16228
16334
|
taskId?: string | undefined;
|
|
16229
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16335
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16230
16336
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16231
16337
|
modelId?: string | undefined;
|
|
16232
16338
|
diffStrategy?: string | undefined;
|
|
@@ -16249,7 +16355,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16249
16355
|
language: string;
|
|
16250
16356
|
isSubtask?: boolean | undefined;
|
|
16251
16357
|
taskId?: string | undefined;
|
|
16252
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16358
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16253
16359
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16254
16360
|
modelId?: string | undefined;
|
|
16255
16361
|
diffStrategy?: string | undefined;
|
|
@@ -16275,7 +16381,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16275
16381
|
language: string;
|
|
16276
16382
|
isSubtask?: boolean | undefined;
|
|
16277
16383
|
taskId?: string | undefined;
|
|
16278
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16384
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16279
16385
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16280
16386
|
modelId?: string | undefined;
|
|
16281
16387
|
diffStrategy?: string | undefined;
|
|
@@ -16301,7 +16407,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16301
16407
|
language: string;
|
|
16302
16408
|
isSubtask?: boolean | undefined;
|
|
16303
16409
|
taskId?: string | undefined;
|
|
16304
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16410
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16305
16411
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16306
16412
|
modelId?: string | undefined;
|
|
16307
16413
|
diffStrategy?: string | undefined;
|
|
@@ -16449,7 +16555,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16449
16555
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16450
16556
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16451
16557
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16452
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16558
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16453
16559
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16454
16560
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16455
16561
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16518,7 +16624,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16518
16624
|
editorName: string;
|
|
16519
16625
|
language: string;
|
|
16520
16626
|
isSubtask?: boolean | undefined;
|
|
16521
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16627
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16522
16628
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16523
16629
|
modelId?: string | undefined;
|
|
16524
16630
|
diffStrategy?: string | undefined;
|
|
@@ -16572,7 +16678,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16572
16678
|
editorName: string;
|
|
16573
16679
|
language: string;
|
|
16574
16680
|
isSubtask?: boolean | undefined;
|
|
16575
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16681
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16576
16682
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16577
16683
|
modelId?: string | undefined;
|
|
16578
16684
|
diffStrategy?: string | undefined;
|
|
@@ -16629,7 +16735,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16629
16735
|
editorName: string;
|
|
16630
16736
|
language: string;
|
|
16631
16737
|
isSubtask?: boolean | undefined;
|
|
16632
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16738
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16633
16739
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16634
16740
|
modelId?: string | undefined;
|
|
16635
16741
|
diffStrategy?: string | undefined;
|
|
@@ -16686,7 +16792,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16686
16792
|
editorName: string;
|
|
16687
16793
|
language: string;
|
|
16688
16794
|
isSubtask?: boolean | undefined;
|
|
16689
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16795
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16690
16796
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16691
16797
|
modelId?: string | undefined;
|
|
16692
16798
|
diffStrategy?: string | undefined;
|
|
@@ -16712,7 +16818,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16712
16818
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16713
16819
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16714
16820
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16715
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16821
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16716
16822
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16717
16823
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16718
16824
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16753,7 +16859,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16753
16859
|
cost?: number | undefined;
|
|
16754
16860
|
isSubtask?: boolean | undefined;
|
|
16755
16861
|
taskId?: string | undefined;
|
|
16756
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16862
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16757
16863
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16758
16864
|
modelId?: string | undefined;
|
|
16759
16865
|
diffStrategy?: string | undefined;
|
|
@@ -16781,7 +16887,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16781
16887
|
cost?: number | undefined;
|
|
16782
16888
|
isSubtask?: boolean | undefined;
|
|
16783
16889
|
taskId?: string | undefined;
|
|
16784
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16890
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16785
16891
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16786
16892
|
modelId?: string | undefined;
|
|
16787
16893
|
diffStrategy?: string | undefined;
|
|
@@ -16812,7 +16918,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16812
16918
|
cost?: number | undefined;
|
|
16813
16919
|
isSubtask?: boolean | undefined;
|
|
16814
16920
|
taskId?: string | undefined;
|
|
16815
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16921
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16816
16922
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16817
16923
|
modelId?: string | undefined;
|
|
16818
16924
|
diffStrategy?: string | undefined;
|
|
@@ -16843,7 +16949,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16843
16949
|
cost?: number | undefined;
|
|
16844
16950
|
isSubtask?: boolean | undefined;
|
|
16845
16951
|
taskId?: string | undefined;
|
|
16846
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16952
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16847
16953
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16848
16954
|
modelId?: string | undefined;
|
|
16849
16955
|
diffStrategy?: string | undefined;
|
|
@@ -17672,7 +17778,7 @@ declare const cerebrasModels: {
|
|
|
17672
17778
|
};
|
|
17673
17779
|
};
|
|
17674
17780
|
|
|
17675
|
-
type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-235B-A22B-Instruct-2507" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera" | "zai-org/GLM-4.5-Air" | "zai-org/GLM-4.5-FP8" | "moonshotai/Kimi-K2-Instruct-75k";
|
|
17781
|
+
type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "deepseek-ai/DeepSeek-V3.1" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-235B-A22B-Instruct-2507" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera" | "zai-org/GLM-4.5-Air" | "zai-org/GLM-4.5-FP8" | "moonshotai/Kimi-K2-Instruct-75k";
|
|
17676
17782
|
declare const chutesDefaultModelId: ChutesModelId;
|
|
17677
17783
|
declare const chutesModels: {
|
|
17678
17784
|
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
@@ -17702,6 +17808,15 @@ declare const chutesModels: {
|
|
|
17702
17808
|
readonly outputPrice: 0;
|
|
17703
17809
|
readonly description: "DeepSeek V3 model.";
|
|
17704
17810
|
};
|
|
17811
|
+
readonly "deepseek-ai/DeepSeek-V3.1": {
|
|
17812
|
+
readonly maxTokens: 32768;
|
|
17813
|
+
readonly contextWindow: 163840;
|
|
17814
|
+
readonly supportsImages: false;
|
|
17815
|
+
readonly supportsPromptCache: false;
|
|
17816
|
+
readonly inputPrice: 0;
|
|
17817
|
+
readonly outputPrice: 0;
|
|
17818
|
+
readonly description: "DeepSeek V3.1 model.";
|
|
17819
|
+
};
|
|
17705
17820
|
readonly "unsloth/Llama-3.3-70B-Instruct": {
|
|
17706
17821
|
readonly maxTokens: 32768;
|
|
17707
17822
|
readonly contextWindow: 131072;
|
|
@@ -18044,7 +18159,7 @@ declare const deepSeekDefaultModelId: DeepSeekModelId;
|
|
|
18044
18159
|
declare const deepSeekModels: {
|
|
18045
18160
|
readonly "deepseek-chat": {
|
|
18046
18161
|
readonly maxTokens: 8192;
|
|
18047
|
-
readonly contextWindow:
|
|
18162
|
+
readonly contextWindow: 128000;
|
|
18048
18163
|
readonly supportsImages: false;
|
|
18049
18164
|
readonly supportsPromptCache: true;
|
|
18050
18165
|
readonly inputPrice: 0.27;
|
|
@@ -18054,15 +18169,15 @@ declare const deepSeekModels: {
|
|
|
18054
18169
|
readonly description: "DeepSeek-V3 achieves a significant breakthrough in inference speed over previous models. It tops the leaderboard among open-source models and rivals the most advanced closed-source models globally.";
|
|
18055
18170
|
};
|
|
18056
18171
|
readonly "deepseek-reasoner": {
|
|
18057
|
-
readonly maxTokens:
|
|
18058
|
-
readonly contextWindow:
|
|
18172
|
+
readonly maxTokens: 65536;
|
|
18173
|
+
readonly contextWindow: 128000;
|
|
18059
18174
|
readonly supportsImages: false;
|
|
18060
18175
|
readonly supportsPromptCache: true;
|
|
18061
18176
|
readonly inputPrice: 0.55;
|
|
18062
18177
|
readonly outputPrice: 2.19;
|
|
18063
18178
|
readonly cacheWritesPrice: 0.55;
|
|
18064
18179
|
readonly cacheReadsPrice: 0.14;
|
|
18065
|
-
readonly description: "DeepSeek-R1 achieves performance comparable to OpenAI-o1 across math, code, and reasoning tasks. Supports Chain of Thought reasoning with up to
|
|
18180
|
+
readonly description: "DeepSeek-R1 achieves performance comparable to OpenAI-o1 across math, code, and reasoning tasks. Supports Chain of Thought reasoning with up to 64K output tokens.";
|
|
18066
18181
|
};
|
|
18067
18182
|
};
|
|
18068
18183
|
declare const DEEP_SEEK_DEFAULT_TEMPERATURE = 0.6;
|
|
@@ -18157,7 +18272,7 @@ declare const featherlessModels: {
|
|
|
18157
18272
|
};
|
|
18158
18273
|
declare const featherlessDefaultModelId: FeatherlessModelId;
|
|
18159
18274
|
|
|
18160
|
-
type FireworksModelId = "accounts/fireworks/models/kimi-k2-instruct" | "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507" | "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct" | "accounts/fireworks/models/deepseek-r1-0528" | "accounts/fireworks/models/deepseek-v3" | "accounts/fireworks/models/glm-4p5" | "accounts/fireworks/models/glm-4p5-air" | "accounts/fireworks/models/gpt-oss-20b" | "accounts/fireworks/models/gpt-oss-120b";
|
|
18275
|
+
type FireworksModelId = "accounts/fireworks/models/kimi-k2-instruct" | "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507" | "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct" | "accounts/fireworks/models/deepseek-r1-0528" | "accounts/fireworks/models/deepseek-v3" | "accounts/fireworks/models/deepseek-v3p1" | "accounts/fireworks/models/glm-4p5" | "accounts/fireworks/models/glm-4p5-air" | "accounts/fireworks/models/gpt-oss-20b" | "accounts/fireworks/models/gpt-oss-120b";
|
|
18161
18276
|
declare const fireworksDefaultModelId: FireworksModelId;
|
|
18162
18277
|
declare const fireworksModels: {
|
|
18163
18278
|
readonly "accounts/fireworks/models/kimi-k2-instruct": {
|
|
@@ -18205,6 +18320,15 @@ declare const fireworksModels: {
|
|
|
18205
18320
|
readonly outputPrice: 0.9;
|
|
18206
18321
|
readonly description: "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token from Deepseek. Note that fine-tuning for this model is only available through contacting fireworks at https://fireworks.ai/company/contact-us.";
|
|
18207
18322
|
};
|
|
18323
|
+
readonly "accounts/fireworks/models/deepseek-v3p1": {
|
|
18324
|
+
readonly maxTokens: 16384;
|
|
18325
|
+
readonly contextWindow: 163840;
|
|
18326
|
+
readonly supportsImages: false;
|
|
18327
|
+
readonly supportsPromptCache: false;
|
|
18328
|
+
readonly inputPrice: 0.56;
|
|
18329
|
+
readonly outputPrice: 1.68;
|
|
18330
|
+
readonly description: "DeepSeek v3.1 is an improved version of the v3 model with enhanced performance, better reasoning capabilities, and improved code generation. This Mixture-of-Experts (MoE) model maintains the same 671B total parameters with 37B activated per token.";
|
|
18331
|
+
};
|
|
18208
18332
|
readonly "accounts/fireworks/models/glm-4p5": {
|
|
18209
18333
|
readonly maxTokens: 16384;
|
|
18210
18334
|
readonly contextWindow: 128000;
|
|
@@ -18605,9 +18729,10 @@ declare const groqModels: {
|
|
|
18605
18729
|
readonly maxTokens: 16384;
|
|
18606
18730
|
readonly contextWindow: 131072;
|
|
18607
18731
|
readonly supportsImages: false;
|
|
18608
|
-
readonly supportsPromptCache:
|
|
18732
|
+
readonly supportsPromptCache: true;
|
|
18609
18733
|
readonly inputPrice: 1;
|
|
18610
18734
|
readonly outputPrice: 3;
|
|
18735
|
+
readonly cacheReadsPrice: 0.5;
|
|
18611
18736
|
readonly description: "Moonshot AI Kimi K2 Instruct 1T model, 128K context.";
|
|
18612
18737
|
};
|
|
18613
18738
|
readonly "openai/gpt-oss-120b": {
|
|
@@ -19027,6 +19152,33 @@ declare const OPEN_ROUTER_COMPUTER_USE_MODELS: Set<string>;
|
|
|
19027
19152
|
declare const OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS: Set<string>;
|
|
19028
19153
|
declare const OPEN_ROUTER_REASONING_BUDGET_MODELS: Set<string>;
|
|
19029
19154
|
|
|
19155
|
+
type QwenCodeModelId = "qwen3-coder-plus" | "qwen3-coder-flash";
|
|
19156
|
+
declare const qwenCodeDefaultModelId: QwenCodeModelId;
|
|
19157
|
+
declare const qwenCodeModels: {
|
|
19158
|
+
readonly "qwen3-coder-plus": {
|
|
19159
|
+
readonly maxTokens: 65536;
|
|
19160
|
+
readonly contextWindow: 1000000;
|
|
19161
|
+
readonly supportsImages: false;
|
|
19162
|
+
readonly supportsPromptCache: false;
|
|
19163
|
+
readonly inputPrice: 0;
|
|
19164
|
+
readonly outputPrice: 0;
|
|
19165
|
+
readonly cacheWritesPrice: 0;
|
|
19166
|
+
readonly cacheReadsPrice: 0;
|
|
19167
|
+
readonly description: "Qwen3 Coder Plus - High-performance coding model with 1M context window for large codebases";
|
|
19168
|
+
};
|
|
19169
|
+
readonly "qwen3-coder-flash": {
|
|
19170
|
+
readonly maxTokens: 65536;
|
|
19171
|
+
readonly contextWindow: 1000000;
|
|
19172
|
+
readonly supportsImages: false;
|
|
19173
|
+
readonly supportsPromptCache: false;
|
|
19174
|
+
readonly inputPrice: 0;
|
|
19175
|
+
readonly outputPrice: 0;
|
|
19176
|
+
readonly cacheWritesPrice: 0;
|
|
19177
|
+
readonly cacheReadsPrice: 0;
|
|
19178
|
+
readonly description: "Qwen3 Coder Flash - Fast coding model with 1M context window optimized for speed";
|
|
19179
|
+
};
|
|
19180
|
+
};
|
|
19181
|
+
|
|
19030
19182
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
19031
19183
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
19032
19184
|
|
|
@@ -19770,4 +19922,4 @@ declare const mainlandZAiModels: {
|
|
|
19770
19922
|
};
|
|
19771
19923
|
declare const ZAI_DEFAULT_TEMPERATURE = 0;
|
|
19772
19924
|
|
|
19773
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, 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, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FeatherlessModelId, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, type OpenAiNativeModelId, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS, SINGLE_FILE_READ_MODELS, type SambaNovaModelId, type SecretState, type StaticAppProperties, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, type TaskProviderState, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema,
|
|
19925
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, 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, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FeatherlessModelId, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, type OpenAiNativeModelId, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS, SINGLE_FILE_READ_MODELS, type SambaNovaModelId, type SecretState, type StaticAppProperties, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, type TaskProviderState, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isDynamicProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isLanguage, isModelParameter, isResumableAsk, isSecretStateKey, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, verbosityLevels, verbosityLevelsSchema, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|