@roo-code/types 1.59.0 → 1.61.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 +209 -31
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +498 -179
- package/dist/index.d.ts +498 -179
- package/dist/index.js +201 -30
- 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", "vercel-ai-gateway"];
|
|
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", "vercel-ai-gateway"]>;
|
|
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", "vercel-ai-gateway"]>>;
|
|
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" | "vercel-ai-gateway" | 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" | "vercel-ai-gateway" | 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, {
|
|
@@ -3076,6 +3133,56 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3076
3133
|
modelMaxThinkingTokens?: number | undefined;
|
|
3077
3134
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
3078
3135
|
apiModelId?: string | undefined;
|
|
3136
|
+
}>, z.ZodObject<{
|
|
3137
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3138
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3139
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3140
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3141
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3142
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3143
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
3144
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
3145
|
+
reasoningEffort: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>>;
|
|
3146
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3147
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3148
|
+
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3149
|
+
} & {
|
|
3150
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
3151
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
3152
|
+
} & {
|
|
3153
|
+
apiProvider: z.ZodLiteral<"vercel-ai-gateway">;
|
|
3154
|
+
}, "strip", z.ZodTypeAny, {
|
|
3155
|
+
apiProvider: "vercel-ai-gateway";
|
|
3156
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3157
|
+
includeMaxTokens?: boolean | undefined;
|
|
3158
|
+
diffEnabled?: boolean | undefined;
|
|
3159
|
+
todoListEnabled?: boolean | undefined;
|
|
3160
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3161
|
+
modelTemperature?: number | null | undefined;
|
|
3162
|
+
rateLimitSeconds?: number | undefined;
|
|
3163
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3164
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3165
|
+
modelMaxTokens?: number | undefined;
|
|
3166
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3167
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
3168
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
3169
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
3170
|
+
}, {
|
|
3171
|
+
apiProvider: "vercel-ai-gateway";
|
|
3172
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3173
|
+
includeMaxTokens?: boolean | undefined;
|
|
3174
|
+
diffEnabled?: boolean | undefined;
|
|
3175
|
+
todoListEnabled?: boolean | undefined;
|
|
3176
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3177
|
+
modelTemperature?: number | null | undefined;
|
|
3178
|
+
rateLimitSeconds?: number | undefined;
|
|
3179
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3180
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3181
|
+
modelMaxTokens?: number | undefined;
|
|
3182
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3183
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
3184
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
3185
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
3079
3186
|
}>, z.ZodObject<{
|
|
3080
3187
|
apiProvider: z.ZodUndefined;
|
|
3081
3188
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3103,7 +3210,10 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3103
3210
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3104
3211
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3105
3212
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3213
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
3214
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
3106
3215
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3216
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
3107
3217
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
3108
3218
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
3109
3219
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -3305,7 +3415,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3305
3415
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3306
3416
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3307
3417
|
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"]>>;
|
|
3418
|
+
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", "vercel-ai-gateway"]>>;
|
|
3309
3419
|
}, "strip", z.ZodTypeAny, {
|
|
3310
3420
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3311
3421
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3315,7 +3425,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3315
3425
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3316
3426
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3317
3427
|
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;
|
|
3428
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
3319
3429
|
includeMaxTokens?: boolean | undefined;
|
|
3320
3430
|
diffEnabled?: boolean | undefined;
|
|
3321
3431
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3360,6 +3470,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3360
3470
|
vertexJsonCredentials?: string | undefined;
|
|
3361
3471
|
vertexProjectId?: string | undefined;
|
|
3362
3472
|
vertexRegion?: string | undefined;
|
|
3473
|
+
enableUrlContext?: boolean | undefined;
|
|
3474
|
+
enableGrounding?: boolean | undefined;
|
|
3363
3475
|
openAiBaseUrl?: string | undefined;
|
|
3364
3476
|
openAiApiKey?: string | undefined;
|
|
3365
3477
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -3413,8 +3525,6 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3413
3525
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3414
3526
|
geminiApiKey?: string | undefined;
|
|
3415
3527
|
googleGeminiBaseUrl?: string | undefined;
|
|
3416
|
-
enableUrlContext?: boolean | undefined;
|
|
3417
|
-
enableGrounding?: boolean | undefined;
|
|
3418
3528
|
geminiCliOAuthPath?: string | undefined;
|
|
3419
3529
|
geminiCliProjectId?: string | undefined;
|
|
3420
3530
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -3451,6 +3561,9 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3451
3561
|
featherlessApiKey?: string | undefined;
|
|
3452
3562
|
ioIntelligenceModelId?: string | undefined;
|
|
3453
3563
|
ioIntelligenceApiKey?: string | undefined;
|
|
3564
|
+
qwenCodeOauthPath?: string | undefined;
|
|
3565
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
3566
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
3454
3567
|
}, {
|
|
3455
3568
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3456
3569
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3460,7 +3573,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3460
3573
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3461
3574
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3462
3575
|
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;
|
|
3576
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
3464
3577
|
includeMaxTokens?: boolean | undefined;
|
|
3465
3578
|
diffEnabled?: boolean | undefined;
|
|
3466
3579
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3505,6 +3618,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3505
3618
|
vertexJsonCredentials?: string | undefined;
|
|
3506
3619
|
vertexProjectId?: string | undefined;
|
|
3507
3620
|
vertexRegion?: string | undefined;
|
|
3621
|
+
enableUrlContext?: boolean | undefined;
|
|
3622
|
+
enableGrounding?: boolean | undefined;
|
|
3508
3623
|
openAiBaseUrl?: string | undefined;
|
|
3509
3624
|
openAiApiKey?: string | undefined;
|
|
3510
3625
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -3558,8 +3673,6 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3558
3673
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3559
3674
|
geminiApiKey?: string | undefined;
|
|
3560
3675
|
googleGeminiBaseUrl?: string | undefined;
|
|
3561
|
-
enableUrlContext?: boolean | undefined;
|
|
3562
|
-
enableGrounding?: boolean | undefined;
|
|
3563
3676
|
geminiCliOAuthPath?: string | undefined;
|
|
3564
3677
|
geminiCliProjectId?: string | undefined;
|
|
3565
3678
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -3596,6 +3709,9 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3596
3709
|
featherlessApiKey?: string | undefined;
|
|
3597
3710
|
ioIntelligenceModelId?: string | undefined;
|
|
3598
3711
|
ioIntelligenceApiKey?: string | undefined;
|
|
3712
|
+
qwenCodeOauthPath?: string | undefined;
|
|
3713
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
3714
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
3599
3715
|
}>;
|
|
3600
3716
|
type ProviderSettings = z.infer<typeof providerSettingsSchema>;
|
|
3601
3717
|
declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
@@ -3618,7 +3734,10 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3618
3734
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3619
3735
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3620
3736
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3737
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
3738
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
3621
3739
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3740
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
3622
3741
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
3623
3742
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
3624
3743
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -3820,7 +3939,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3820
3939
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3821
3940
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3822
3941
|
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"]>>;
|
|
3942
|
+
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", "vercel-ai-gateway"]>>;
|
|
3824
3943
|
} & {
|
|
3825
3944
|
id: z.ZodOptional<z.ZodString>;
|
|
3826
3945
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3833,7 +3952,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3833
3952
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3834
3953
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3835
3954
|
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;
|
|
3955
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
3837
3956
|
includeMaxTokens?: boolean | undefined;
|
|
3838
3957
|
diffEnabled?: boolean | undefined;
|
|
3839
3958
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3878,6 +3997,8 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3878
3997
|
vertexJsonCredentials?: string | undefined;
|
|
3879
3998
|
vertexProjectId?: string | undefined;
|
|
3880
3999
|
vertexRegion?: string | undefined;
|
|
4000
|
+
enableUrlContext?: boolean | undefined;
|
|
4001
|
+
enableGrounding?: boolean | undefined;
|
|
3881
4002
|
openAiBaseUrl?: string | undefined;
|
|
3882
4003
|
openAiApiKey?: string | undefined;
|
|
3883
4004
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -3931,8 +4052,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3931
4052
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
3932
4053
|
geminiApiKey?: string | undefined;
|
|
3933
4054
|
googleGeminiBaseUrl?: string | undefined;
|
|
3934
|
-
enableUrlContext?: boolean | undefined;
|
|
3935
|
-
enableGrounding?: boolean | undefined;
|
|
3936
4055
|
geminiCliOAuthPath?: string | undefined;
|
|
3937
4056
|
geminiCliProjectId?: string | undefined;
|
|
3938
4057
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -3969,6 +4088,9 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3969
4088
|
featherlessApiKey?: string | undefined;
|
|
3970
4089
|
ioIntelligenceModelId?: string | undefined;
|
|
3971
4090
|
ioIntelligenceApiKey?: string | undefined;
|
|
4091
|
+
qwenCodeOauthPath?: string | undefined;
|
|
4092
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
4093
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
3972
4094
|
}, {
|
|
3973
4095
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3974
4096
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3979,7 +4101,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3979
4101
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3980
4102
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3981
4103
|
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;
|
|
4104
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
3983
4105
|
includeMaxTokens?: boolean | undefined;
|
|
3984
4106
|
diffEnabled?: boolean | undefined;
|
|
3985
4107
|
todoListEnabled?: boolean | undefined;
|
|
@@ -4024,6 +4146,8 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4024
4146
|
vertexJsonCredentials?: string | undefined;
|
|
4025
4147
|
vertexProjectId?: string | undefined;
|
|
4026
4148
|
vertexRegion?: string | undefined;
|
|
4149
|
+
enableUrlContext?: boolean | undefined;
|
|
4150
|
+
enableGrounding?: boolean | undefined;
|
|
4027
4151
|
openAiBaseUrl?: string | undefined;
|
|
4028
4152
|
openAiApiKey?: string | undefined;
|
|
4029
4153
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -4077,8 +4201,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4077
4201
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
4078
4202
|
geminiApiKey?: string | undefined;
|
|
4079
4203
|
googleGeminiBaseUrl?: string | undefined;
|
|
4080
|
-
enableUrlContext?: boolean | undefined;
|
|
4081
|
-
enableGrounding?: boolean | undefined;
|
|
4082
4204
|
geminiCliOAuthPath?: string | undefined;
|
|
4083
4205
|
geminiCliProjectId?: string | undefined;
|
|
4084
4206
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -4115,6 +4237,9 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4115
4237
|
featherlessApiKey?: string | undefined;
|
|
4116
4238
|
ioIntelligenceModelId?: string | undefined;
|
|
4117
4239
|
ioIntelligenceApiKey?: string | undefined;
|
|
4240
|
+
qwenCodeOauthPath?: string | undefined;
|
|
4241
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
4242
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
4118
4243
|
}>;
|
|
4119
4244
|
declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"apiProvider", [z.ZodObject<{
|
|
4120
4245
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4452,6 +4577,8 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4452
4577
|
vertexJsonCredentials: z.ZodOptional<z.ZodString>;
|
|
4453
4578
|
vertexProjectId: z.ZodOptional<z.ZodString>;
|
|
4454
4579
|
vertexRegion: z.ZodOptional<z.ZodString>;
|
|
4580
|
+
enableUrlContext: z.ZodOptional<z.ZodBoolean>;
|
|
4581
|
+
enableGrounding: z.ZodOptional<z.ZodBoolean>;
|
|
4455
4582
|
} & {
|
|
4456
4583
|
apiProvider: z.ZodLiteral<"vertex">;
|
|
4457
4584
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4473,6 +4600,8 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4473
4600
|
vertexJsonCredentials?: string | undefined;
|
|
4474
4601
|
vertexProjectId?: string | undefined;
|
|
4475
4602
|
vertexRegion?: string | undefined;
|
|
4603
|
+
enableUrlContext?: boolean | undefined;
|
|
4604
|
+
enableGrounding?: boolean | undefined;
|
|
4476
4605
|
}, {
|
|
4477
4606
|
apiProvider: "vertex";
|
|
4478
4607
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -4492,6 +4621,8 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4492
4621
|
vertexJsonCredentials?: string | undefined;
|
|
4493
4622
|
vertexProjectId?: string | undefined;
|
|
4494
4623
|
vertexRegion?: string | undefined;
|
|
4624
|
+
enableUrlContext?: boolean | undefined;
|
|
4625
|
+
enableGrounding?: boolean | undefined;
|
|
4495
4626
|
}>, z.ZodObject<{
|
|
4496
4627
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
4497
4628
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4936,10 +5067,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4936
5067
|
modelMaxThinkingTokens?: number | undefined;
|
|
4937
5068
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4938
5069
|
apiModelId?: string | undefined;
|
|
4939
|
-
geminiApiKey?: string | undefined;
|
|
4940
|
-
googleGeminiBaseUrl?: string | undefined;
|
|
4941
5070
|
enableUrlContext?: boolean | undefined;
|
|
4942
5071
|
enableGrounding?: boolean | undefined;
|
|
5072
|
+
geminiApiKey?: string | undefined;
|
|
5073
|
+
googleGeminiBaseUrl?: string | undefined;
|
|
4943
5074
|
}, {
|
|
4944
5075
|
apiProvider: "gemini";
|
|
4945
5076
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
@@ -4955,10 +5086,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4955
5086
|
modelMaxThinkingTokens?: number | undefined;
|
|
4956
5087
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4957
5088
|
apiModelId?: string | undefined;
|
|
4958
|
-
geminiApiKey?: string | undefined;
|
|
4959
|
-
googleGeminiBaseUrl?: string | undefined;
|
|
4960
5089
|
enableUrlContext?: boolean | undefined;
|
|
4961
5090
|
enableGrounding?: boolean | undefined;
|
|
5091
|
+
geminiApiKey?: string | undefined;
|
|
5092
|
+
googleGeminiBaseUrl?: string | undefined;
|
|
4962
5093
|
}>, z.ZodObject<{
|
|
4963
5094
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
4964
5095
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6065,6 +6196,57 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6065
6196
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
6066
6197
|
} & {
|
|
6067
6198
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6199
|
+
} & {
|
|
6200
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
6201
|
+
} & {
|
|
6202
|
+
apiProvider: z.ZodLiteral<"qwen-code">;
|
|
6203
|
+
}, "strip", z.ZodTypeAny, {
|
|
6204
|
+
apiProvider: "qwen-code";
|
|
6205
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
6206
|
+
includeMaxTokens?: boolean | undefined;
|
|
6207
|
+
diffEnabled?: boolean | undefined;
|
|
6208
|
+
todoListEnabled?: boolean | undefined;
|
|
6209
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
6210
|
+
modelTemperature?: number | null | undefined;
|
|
6211
|
+
rateLimitSeconds?: number | undefined;
|
|
6212
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
6213
|
+
enableReasoningEffort?: boolean | undefined;
|
|
6214
|
+
modelMaxTokens?: number | undefined;
|
|
6215
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
6216
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6217
|
+
apiModelId?: string | undefined;
|
|
6218
|
+
qwenCodeOauthPath?: string | undefined;
|
|
6219
|
+
}, {
|
|
6220
|
+
apiProvider: "qwen-code";
|
|
6221
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
6222
|
+
includeMaxTokens?: boolean | undefined;
|
|
6223
|
+
diffEnabled?: boolean | undefined;
|
|
6224
|
+
todoListEnabled?: boolean | undefined;
|
|
6225
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
6226
|
+
modelTemperature?: number | null | undefined;
|
|
6227
|
+
rateLimitSeconds?: number | undefined;
|
|
6228
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
6229
|
+
enableReasoningEffort?: boolean | undefined;
|
|
6230
|
+
modelMaxTokens?: number | undefined;
|
|
6231
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
6232
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6233
|
+
apiModelId?: string | undefined;
|
|
6234
|
+
qwenCodeOauthPath?: string | undefined;
|
|
6235
|
+
}>, z.ZodObject<{
|
|
6236
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
6237
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6238
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6239
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
6240
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6241
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
6242
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
6243
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
6244
|
+
reasoningEffort: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>>;
|
|
6245
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
6246
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
6247
|
+
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
6248
|
+
} & {
|
|
6249
|
+
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6068
6250
|
} & {
|
|
6069
6251
|
apiProvider: z.ZodLiteral<"roo">;
|
|
6070
6252
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6097,6 +6279,56 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6097
6279
|
modelMaxThinkingTokens?: number | undefined;
|
|
6098
6280
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6099
6281
|
apiModelId?: string | undefined;
|
|
6282
|
+
}>, z.ZodObject<{
|
|
6283
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
6284
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6285
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6286
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
6287
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6288
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
6289
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
6290
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
6291
|
+
reasoningEffort: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>>;
|
|
6292
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
6293
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
6294
|
+
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
6295
|
+
} & {
|
|
6296
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
6297
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
6298
|
+
} & {
|
|
6299
|
+
apiProvider: z.ZodLiteral<"vercel-ai-gateway">;
|
|
6300
|
+
}, "strip", z.ZodTypeAny, {
|
|
6301
|
+
apiProvider: "vercel-ai-gateway";
|
|
6302
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
6303
|
+
includeMaxTokens?: boolean | undefined;
|
|
6304
|
+
diffEnabled?: boolean | undefined;
|
|
6305
|
+
todoListEnabled?: boolean | undefined;
|
|
6306
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
6307
|
+
modelTemperature?: number | null | undefined;
|
|
6308
|
+
rateLimitSeconds?: number | undefined;
|
|
6309
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
6310
|
+
enableReasoningEffort?: boolean | undefined;
|
|
6311
|
+
modelMaxTokens?: number | undefined;
|
|
6312
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
6313
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6314
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
6315
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
6316
|
+
}, {
|
|
6317
|
+
apiProvider: "vercel-ai-gateway";
|
|
6318
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
6319
|
+
includeMaxTokens?: boolean | undefined;
|
|
6320
|
+
diffEnabled?: boolean | undefined;
|
|
6321
|
+
todoListEnabled?: boolean | undefined;
|
|
6322
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
6323
|
+
modelTemperature?: number | null | undefined;
|
|
6324
|
+
rateLimitSeconds?: number | undefined;
|
|
6325
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
6326
|
+
enableReasoningEffort?: boolean | undefined;
|
|
6327
|
+
modelMaxTokens?: number | undefined;
|
|
6328
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
6329
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6330
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
6331
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
6100
6332
|
}>, z.ZodObject<{
|
|
6101
6333
|
apiProvider: z.ZodUndefined;
|
|
6102
6334
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6111,7 +6343,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6111
6343
|
id?: string | undefined;
|
|
6112
6344
|
}>>;
|
|
6113
6345
|
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", "
|
|
6346
|
+
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", "vercelAiGatewayApiKey", "vercelAiGatewayModelId"];
|
|
6115
6347
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
6116
6348
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6117
6349
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
@@ -6121,7 +6353,7 @@ declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "huma
|
|
|
6121
6353
|
label: string;
|
|
6122
6354
|
models: string[];
|
|
6123
6355
|
}>;
|
|
6124
|
-
declare const dynamicProviders: readonly ["glama", "huggingface", "litellm", "openrouter", "requesty", "unbound"];
|
|
6356
|
+
declare const dynamicProviders: readonly ["glama", "huggingface", "litellm", "openrouter", "requesty", "unbound", "vercel-ai-gateway"];
|
|
6125
6357
|
type DynamicProvider = (typeof dynamicProviders)[number];
|
|
6126
6358
|
declare const isDynamicProvider: (key: string) => key is DynamicProvider;
|
|
6127
6359
|
|
|
@@ -6145,15 +6377,15 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6145
6377
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6146
6378
|
id: z.ZodString;
|
|
6147
6379
|
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"]>>;
|
|
6380
|
+
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", "vercel-ai-gateway"]>>;
|
|
6149
6381
|
}, "strip", z.ZodTypeAny, {
|
|
6150
6382
|
name: string;
|
|
6151
6383
|
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;
|
|
6384
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
6153
6385
|
}, {
|
|
6154
6386
|
name: string;
|
|
6155
6387
|
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;
|
|
6388
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
6157
6389
|
}>, "many">>;
|
|
6158
6390
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6159
6391
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6273,17 +6505,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6273
6505
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
6274
6506
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
6275
6507
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
6276
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
6277
6508
|
}, "strip", z.ZodTypeAny, {
|
|
6278
6509
|
powerSteering?: boolean | undefined;
|
|
6279
6510
|
multiFileApplyDiff?: boolean | undefined;
|
|
6280
6511
|
preventFocusDisruption?: boolean | undefined;
|
|
6281
|
-
assistantMessageParser?: boolean | undefined;
|
|
6282
6512
|
}, {
|
|
6283
6513
|
powerSteering?: boolean | undefined;
|
|
6284
6514
|
multiFileApplyDiff?: boolean | undefined;
|
|
6285
6515
|
preventFocusDisruption?: boolean | undefined;
|
|
6286
|
-
assistantMessageParser?: boolean | undefined;
|
|
6287
6516
|
}>>;
|
|
6288
6517
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
6289
6518
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -6492,7 +6721,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6492
6721
|
listApiConfigMeta?: {
|
|
6493
6722
|
name: string;
|
|
6494
6723
|
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;
|
|
6724
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
6496
6725
|
}[] | undefined;
|
|
6497
6726
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6498
6727
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6574,7 +6803,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6574
6803
|
powerSteering?: boolean | undefined;
|
|
6575
6804
|
multiFileApplyDiff?: boolean | undefined;
|
|
6576
6805
|
preventFocusDisruption?: boolean | undefined;
|
|
6577
|
-
assistantMessageParser?: boolean | undefined;
|
|
6578
6806
|
} | undefined;
|
|
6579
6807
|
codebaseIndexModels?: {
|
|
6580
6808
|
openai?: Record<string, {
|
|
@@ -6648,7 +6876,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6648
6876
|
listApiConfigMeta?: {
|
|
6649
6877
|
name: string;
|
|
6650
6878
|
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;
|
|
6879
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
6652
6880
|
}[] | undefined;
|
|
6653
6881
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6654
6882
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6730,7 +6958,6 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6730
6958
|
powerSteering?: boolean | undefined;
|
|
6731
6959
|
multiFileApplyDiff?: boolean | undefined;
|
|
6732
6960
|
preventFocusDisruption?: boolean | undefined;
|
|
6733
|
-
assistantMessageParser?: boolean | undefined;
|
|
6734
6961
|
} | undefined;
|
|
6735
6962
|
codebaseIndexModels?: {
|
|
6736
6963
|
openai?: Record<string, {
|
|
@@ -6803,7 +7030,10 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
6803
7030
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
6804
7031
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
6805
7032
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
7033
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
7034
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
6806
7035
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
7036
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
6807
7037
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
6808
7038
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
6809
7039
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -7005,21 +7235,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7005
7235
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7006
7236
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
7007
7237
|
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"]>>;
|
|
7238
|
+
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", "vercel-ai-gateway"]>>;
|
|
7009
7239
|
} & {
|
|
7010
7240
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
7011
7241
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7012
7242
|
id: z.ZodString;
|
|
7013
7243
|
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"]>>;
|
|
7244
|
+
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", "vercel-ai-gateway"]>>;
|
|
7015
7245
|
}, "strip", z.ZodTypeAny, {
|
|
7016
7246
|
name: string;
|
|
7017
7247
|
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;
|
|
7248
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
7019
7249
|
}, {
|
|
7020
7250
|
name: string;
|
|
7021
7251
|
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;
|
|
7252
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
7023
7253
|
}>, "many">>;
|
|
7024
7254
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
7025
7255
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -7131,17 +7361,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7131
7361
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
7132
7362
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
7133
7363
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
7134
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
7135
7364
|
}, "strip", z.ZodTypeAny, {
|
|
7136
7365
|
powerSteering?: boolean | undefined;
|
|
7137
7366
|
multiFileApplyDiff?: boolean | undefined;
|
|
7138
7367
|
preventFocusDisruption?: boolean | undefined;
|
|
7139
|
-
assistantMessageParser?: boolean | undefined;
|
|
7140
7368
|
}, {
|
|
7141
7369
|
powerSteering?: boolean | undefined;
|
|
7142
7370
|
multiFileApplyDiff?: boolean | undefined;
|
|
7143
7371
|
preventFocusDisruption?: boolean | undefined;
|
|
7144
|
-
assistantMessageParser?: boolean | undefined;
|
|
7145
7372
|
}>>;
|
|
7146
7373
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
7147
7374
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -7335,7 +7562,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7335
7562
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7336
7563
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7337
7564
|
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;
|
|
7565
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
7339
7566
|
includeMaxTokens?: boolean | undefined;
|
|
7340
7567
|
diffEnabled?: boolean | undefined;
|
|
7341
7568
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7380,6 +7607,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7380
7607
|
vertexJsonCredentials?: string | undefined;
|
|
7381
7608
|
vertexProjectId?: string | undefined;
|
|
7382
7609
|
vertexRegion?: string | undefined;
|
|
7610
|
+
enableUrlContext?: boolean | undefined;
|
|
7611
|
+
enableGrounding?: boolean | undefined;
|
|
7383
7612
|
openAiBaseUrl?: string | undefined;
|
|
7384
7613
|
openAiApiKey?: string | undefined;
|
|
7385
7614
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -7433,8 +7662,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7433
7662
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
7434
7663
|
geminiApiKey?: string | undefined;
|
|
7435
7664
|
googleGeminiBaseUrl?: string | undefined;
|
|
7436
|
-
enableUrlContext?: boolean | undefined;
|
|
7437
|
-
enableGrounding?: boolean | undefined;
|
|
7438
7665
|
geminiCliOAuthPath?: string | undefined;
|
|
7439
7666
|
geminiCliProjectId?: string | undefined;
|
|
7440
7667
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -7471,6 +7698,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7471
7698
|
featherlessApiKey?: string | undefined;
|
|
7472
7699
|
ioIntelligenceModelId?: string | undefined;
|
|
7473
7700
|
ioIntelligenceApiKey?: string | undefined;
|
|
7701
|
+
qwenCodeOauthPath?: string | undefined;
|
|
7702
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
7703
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
7474
7704
|
mode?: string | undefined;
|
|
7475
7705
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
7476
7706
|
customInstructions?: string | undefined;
|
|
@@ -7491,7 +7721,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7491
7721
|
listApiConfigMeta?: {
|
|
7492
7722
|
name: string;
|
|
7493
7723
|
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;
|
|
7724
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
7495
7725
|
}[] | undefined;
|
|
7496
7726
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7497
7727
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7573,7 +7803,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7573
7803
|
powerSteering?: boolean | undefined;
|
|
7574
7804
|
multiFileApplyDiff?: boolean | undefined;
|
|
7575
7805
|
preventFocusDisruption?: boolean | undefined;
|
|
7576
|
-
assistantMessageParser?: boolean | undefined;
|
|
7577
7806
|
} | undefined;
|
|
7578
7807
|
codebaseIndexModels?: {
|
|
7579
7808
|
openai?: Record<string, {
|
|
@@ -7632,7 +7861,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7632
7861
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7633
7862
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7634
7863
|
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;
|
|
7864
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
7636
7865
|
includeMaxTokens?: boolean | undefined;
|
|
7637
7866
|
diffEnabled?: boolean | undefined;
|
|
7638
7867
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7677,6 +7906,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7677
7906
|
vertexJsonCredentials?: string | undefined;
|
|
7678
7907
|
vertexProjectId?: string | undefined;
|
|
7679
7908
|
vertexRegion?: string | undefined;
|
|
7909
|
+
enableUrlContext?: boolean | undefined;
|
|
7910
|
+
enableGrounding?: boolean | undefined;
|
|
7680
7911
|
openAiBaseUrl?: string | undefined;
|
|
7681
7912
|
openAiApiKey?: string | undefined;
|
|
7682
7913
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -7730,8 +7961,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7730
7961
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
7731
7962
|
geminiApiKey?: string | undefined;
|
|
7732
7963
|
googleGeminiBaseUrl?: string | undefined;
|
|
7733
|
-
enableUrlContext?: boolean | undefined;
|
|
7734
|
-
enableGrounding?: boolean | undefined;
|
|
7735
7964
|
geminiCliOAuthPath?: string | undefined;
|
|
7736
7965
|
geminiCliProjectId?: string | undefined;
|
|
7737
7966
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -7768,6 +7997,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7768
7997
|
featherlessApiKey?: string | undefined;
|
|
7769
7998
|
ioIntelligenceModelId?: string | undefined;
|
|
7770
7999
|
ioIntelligenceApiKey?: string | undefined;
|
|
8000
|
+
qwenCodeOauthPath?: string | undefined;
|
|
8001
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
8002
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
7771
8003
|
mode?: string | undefined;
|
|
7772
8004
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
7773
8005
|
customInstructions?: string | undefined;
|
|
@@ -7788,7 +8020,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7788
8020
|
listApiConfigMeta?: {
|
|
7789
8021
|
name: string;
|
|
7790
8022
|
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;
|
|
8023
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
7792
8024
|
}[] | undefined;
|
|
7793
8025
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7794
8026
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7870,7 +8102,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7870
8102
|
powerSteering?: boolean | undefined;
|
|
7871
8103
|
multiFileApplyDiff?: boolean | undefined;
|
|
7872
8104
|
preventFocusDisruption?: boolean | undefined;
|
|
7873
|
-
assistantMessageParser?: boolean | undefined;
|
|
7874
8105
|
} | undefined;
|
|
7875
8106
|
codebaseIndexModels?: {
|
|
7876
8107
|
openai?: Record<string, {
|
|
@@ -7925,7 +8156,7 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
7925
8156
|
/**
|
|
7926
8157
|
* SecretState
|
|
7927
8158
|
*/
|
|
7928
|
-
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsApiKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "cerebrasApiKey", "deepSeekApiKey", "doubaoApiKey", "moonshotApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "huggingFaceApiKey", "sambaNovaApiKey", "zaiApiKey", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceApiKey"];
|
|
8159
|
+
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsApiKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "cerebrasApiKey", "deepSeekApiKey", "doubaoApiKey", "moonshotApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "huggingFaceApiKey", "sambaNovaApiKey", "zaiApiKey", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceApiKey", "vercelAiGatewayApiKey"];
|
|
7929
8160
|
type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
|
|
7930
8161
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
7931
8162
|
/**
|
|
@@ -8006,7 +8237,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8006
8237
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
8007
8238
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
8008
8239
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
8240
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
8241
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
8009
8242
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
8243
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
8010
8244
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
8011
8245
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
8012
8246
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -8208,21 +8442,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8208
8442
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8209
8443
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
8210
8444
|
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"]>>;
|
|
8445
|
+
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", "vercel-ai-gateway"]>>;
|
|
8212
8446
|
} & {
|
|
8213
8447
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
8214
8448
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8215
8449
|
id: z.ZodString;
|
|
8216
8450
|
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"]>>;
|
|
8451
|
+
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", "vercel-ai-gateway"]>>;
|
|
8218
8452
|
}, "strip", z.ZodTypeAny, {
|
|
8219
8453
|
name: string;
|
|
8220
8454
|
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;
|
|
8455
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
8222
8456
|
}, {
|
|
8223
8457
|
name: string;
|
|
8224
8458
|
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;
|
|
8459
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
8226
8460
|
}>, "many">>;
|
|
8227
8461
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8228
8462
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8334,17 +8568,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8334
8568
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
8335
8569
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
8336
8570
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
8337
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
8338
8571
|
}, "strip", z.ZodTypeAny, {
|
|
8339
8572
|
powerSteering?: boolean | undefined;
|
|
8340
8573
|
multiFileApplyDiff?: boolean | undefined;
|
|
8341
8574
|
preventFocusDisruption?: boolean | undefined;
|
|
8342
|
-
assistantMessageParser?: boolean | undefined;
|
|
8343
8575
|
}, {
|
|
8344
8576
|
powerSteering?: boolean | undefined;
|
|
8345
8577
|
multiFileApplyDiff?: boolean | undefined;
|
|
8346
8578
|
preventFocusDisruption?: boolean | undefined;
|
|
8347
|
-
assistantMessageParser?: boolean | undefined;
|
|
8348
8579
|
}>>;
|
|
8349
8580
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
8350
8581
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -8538,7 +8769,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8538
8769
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8539
8770
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8540
8771
|
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;
|
|
8772
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
8542
8773
|
includeMaxTokens?: boolean | undefined;
|
|
8543
8774
|
diffEnabled?: boolean | undefined;
|
|
8544
8775
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8583,6 +8814,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8583
8814
|
vertexJsonCredentials?: string | undefined;
|
|
8584
8815
|
vertexProjectId?: string | undefined;
|
|
8585
8816
|
vertexRegion?: string | undefined;
|
|
8817
|
+
enableUrlContext?: boolean | undefined;
|
|
8818
|
+
enableGrounding?: boolean | undefined;
|
|
8586
8819
|
openAiBaseUrl?: string | undefined;
|
|
8587
8820
|
openAiApiKey?: string | undefined;
|
|
8588
8821
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -8636,8 +8869,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8636
8869
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
8637
8870
|
geminiApiKey?: string | undefined;
|
|
8638
8871
|
googleGeminiBaseUrl?: string | undefined;
|
|
8639
|
-
enableUrlContext?: boolean | undefined;
|
|
8640
|
-
enableGrounding?: boolean | undefined;
|
|
8641
8872
|
geminiCliOAuthPath?: string | undefined;
|
|
8642
8873
|
geminiCliProjectId?: string | undefined;
|
|
8643
8874
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -8674,6 +8905,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8674
8905
|
featherlessApiKey?: string | undefined;
|
|
8675
8906
|
ioIntelligenceModelId?: string | undefined;
|
|
8676
8907
|
ioIntelligenceApiKey?: string | undefined;
|
|
8908
|
+
qwenCodeOauthPath?: string | undefined;
|
|
8909
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
8910
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
8677
8911
|
mode?: string | undefined;
|
|
8678
8912
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
8679
8913
|
customInstructions?: string | undefined;
|
|
@@ -8694,7 +8928,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8694
8928
|
listApiConfigMeta?: {
|
|
8695
8929
|
name: string;
|
|
8696
8930
|
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;
|
|
8931
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
8698
8932
|
}[] | undefined;
|
|
8699
8933
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8700
8934
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8776,7 +9010,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8776
9010
|
powerSteering?: boolean | undefined;
|
|
8777
9011
|
multiFileApplyDiff?: boolean | undefined;
|
|
8778
9012
|
preventFocusDisruption?: boolean | undefined;
|
|
8779
|
-
assistantMessageParser?: boolean | undefined;
|
|
8780
9013
|
} | undefined;
|
|
8781
9014
|
codebaseIndexModels?: {
|
|
8782
9015
|
openai?: Record<string, {
|
|
@@ -8835,7 +9068,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8835
9068
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8836
9069
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8837
9070
|
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;
|
|
9071
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
8839
9072
|
includeMaxTokens?: boolean | undefined;
|
|
8840
9073
|
diffEnabled?: boolean | undefined;
|
|
8841
9074
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8880,6 +9113,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8880
9113
|
vertexJsonCredentials?: string | undefined;
|
|
8881
9114
|
vertexProjectId?: string | undefined;
|
|
8882
9115
|
vertexRegion?: string | undefined;
|
|
9116
|
+
enableUrlContext?: boolean | undefined;
|
|
9117
|
+
enableGrounding?: boolean | undefined;
|
|
8883
9118
|
openAiBaseUrl?: string | undefined;
|
|
8884
9119
|
openAiApiKey?: string | undefined;
|
|
8885
9120
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -8933,8 +9168,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8933
9168
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
8934
9169
|
geminiApiKey?: string | undefined;
|
|
8935
9170
|
googleGeminiBaseUrl?: string | undefined;
|
|
8936
|
-
enableUrlContext?: boolean | undefined;
|
|
8937
|
-
enableGrounding?: boolean | undefined;
|
|
8938
9171
|
geminiCliOAuthPath?: string | undefined;
|
|
8939
9172
|
geminiCliProjectId?: string | undefined;
|
|
8940
9173
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -8971,6 +9204,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8971
9204
|
featherlessApiKey?: string | undefined;
|
|
8972
9205
|
ioIntelligenceModelId?: string | undefined;
|
|
8973
9206
|
ioIntelligenceApiKey?: string | undefined;
|
|
9207
|
+
qwenCodeOauthPath?: string | undefined;
|
|
9208
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
9209
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
8974
9210
|
mode?: string | undefined;
|
|
8975
9211
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
8976
9212
|
customInstructions?: string | undefined;
|
|
@@ -8991,7 +9227,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8991
9227
|
listApiConfigMeta?: {
|
|
8992
9228
|
name: string;
|
|
8993
9229
|
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;
|
|
9230
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
8995
9231
|
}[] | undefined;
|
|
8996
9232
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8997
9233
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9073,7 +9309,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9073
9309
|
powerSteering?: boolean | undefined;
|
|
9074
9310
|
multiFileApplyDiff?: boolean | undefined;
|
|
9075
9311
|
preventFocusDisruption?: boolean | undefined;
|
|
9076
|
-
assistantMessageParser?: boolean | undefined;
|
|
9077
9312
|
} | undefined;
|
|
9078
9313
|
codebaseIndexModels?: {
|
|
9079
9314
|
openai?: Record<string, {
|
|
@@ -9138,7 +9373,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9138
9373
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9139
9374
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9140
9375
|
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;
|
|
9376
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
9142
9377
|
includeMaxTokens?: boolean | undefined;
|
|
9143
9378
|
diffEnabled?: boolean | undefined;
|
|
9144
9379
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9183,6 +9418,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9183
9418
|
vertexJsonCredentials?: string | undefined;
|
|
9184
9419
|
vertexProjectId?: string | undefined;
|
|
9185
9420
|
vertexRegion?: string | undefined;
|
|
9421
|
+
enableUrlContext?: boolean | undefined;
|
|
9422
|
+
enableGrounding?: boolean | undefined;
|
|
9186
9423
|
openAiBaseUrl?: string | undefined;
|
|
9187
9424
|
openAiApiKey?: string | undefined;
|
|
9188
9425
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -9236,8 +9473,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9236
9473
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9237
9474
|
geminiApiKey?: string | undefined;
|
|
9238
9475
|
googleGeminiBaseUrl?: string | undefined;
|
|
9239
|
-
enableUrlContext?: boolean | undefined;
|
|
9240
|
-
enableGrounding?: boolean | undefined;
|
|
9241
9476
|
geminiCliOAuthPath?: string | undefined;
|
|
9242
9477
|
geminiCliProjectId?: string | undefined;
|
|
9243
9478
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -9274,6 +9509,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9274
9509
|
featherlessApiKey?: string | undefined;
|
|
9275
9510
|
ioIntelligenceModelId?: string | undefined;
|
|
9276
9511
|
ioIntelligenceApiKey?: string | undefined;
|
|
9512
|
+
qwenCodeOauthPath?: string | undefined;
|
|
9513
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
9514
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
9277
9515
|
mode?: string | undefined;
|
|
9278
9516
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9279
9517
|
customInstructions?: string | undefined;
|
|
@@ -9294,7 +9532,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9294
9532
|
listApiConfigMeta?: {
|
|
9295
9533
|
name: string;
|
|
9296
9534
|
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;
|
|
9535
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
9298
9536
|
}[] | undefined;
|
|
9299
9537
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9300
9538
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9376,7 +9614,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9376
9614
|
powerSteering?: boolean | undefined;
|
|
9377
9615
|
multiFileApplyDiff?: boolean | undefined;
|
|
9378
9616
|
preventFocusDisruption?: boolean | undefined;
|
|
9379
|
-
assistantMessageParser?: boolean | undefined;
|
|
9380
9617
|
} | undefined;
|
|
9381
9618
|
codebaseIndexModels?: {
|
|
9382
9619
|
openai?: Record<string, {
|
|
@@ -9440,7 +9677,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9440
9677
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9441
9678
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9442
9679
|
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;
|
|
9680
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
9444
9681
|
includeMaxTokens?: boolean | undefined;
|
|
9445
9682
|
diffEnabled?: boolean | undefined;
|
|
9446
9683
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9485,6 +9722,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9485
9722
|
vertexJsonCredentials?: string | undefined;
|
|
9486
9723
|
vertexProjectId?: string | undefined;
|
|
9487
9724
|
vertexRegion?: string | undefined;
|
|
9725
|
+
enableUrlContext?: boolean | undefined;
|
|
9726
|
+
enableGrounding?: boolean | undefined;
|
|
9488
9727
|
openAiBaseUrl?: string | undefined;
|
|
9489
9728
|
openAiApiKey?: string | undefined;
|
|
9490
9729
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -9538,8 +9777,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9538
9777
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9539
9778
|
geminiApiKey?: string | undefined;
|
|
9540
9779
|
googleGeminiBaseUrl?: string | undefined;
|
|
9541
|
-
enableUrlContext?: boolean | undefined;
|
|
9542
|
-
enableGrounding?: boolean | undefined;
|
|
9543
9780
|
geminiCliOAuthPath?: string | undefined;
|
|
9544
9781
|
geminiCliProjectId?: string | undefined;
|
|
9545
9782
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -9576,6 +9813,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9576
9813
|
featherlessApiKey?: string | undefined;
|
|
9577
9814
|
ioIntelligenceModelId?: string | undefined;
|
|
9578
9815
|
ioIntelligenceApiKey?: string | undefined;
|
|
9816
|
+
qwenCodeOauthPath?: string | undefined;
|
|
9817
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
9818
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
9579
9819
|
mode?: string | undefined;
|
|
9580
9820
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9581
9821
|
customInstructions?: string | undefined;
|
|
@@ -9596,7 +9836,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9596
9836
|
listApiConfigMeta?: {
|
|
9597
9837
|
name: string;
|
|
9598
9838
|
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;
|
|
9839
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
9600
9840
|
}[] | undefined;
|
|
9601
9841
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9602
9842
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9678,7 +9918,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9678
9918
|
powerSteering?: boolean | undefined;
|
|
9679
9919
|
multiFileApplyDiff?: boolean | undefined;
|
|
9680
9920
|
preventFocusDisruption?: boolean | undefined;
|
|
9681
|
-
assistantMessageParser?: boolean | undefined;
|
|
9682
9921
|
} | undefined;
|
|
9683
9922
|
codebaseIndexModels?: {
|
|
9684
9923
|
openai?: Record<string, {
|
|
@@ -9745,7 +9984,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9745
9984
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9746
9985
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9747
9986
|
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;
|
|
9987
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
9749
9988
|
includeMaxTokens?: boolean | undefined;
|
|
9750
9989
|
diffEnabled?: boolean | undefined;
|
|
9751
9990
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9790,6 +10029,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9790
10029
|
vertexJsonCredentials?: string | undefined;
|
|
9791
10030
|
vertexProjectId?: string | undefined;
|
|
9792
10031
|
vertexRegion?: string | undefined;
|
|
10032
|
+
enableUrlContext?: boolean | undefined;
|
|
10033
|
+
enableGrounding?: boolean | undefined;
|
|
9793
10034
|
openAiBaseUrl?: string | undefined;
|
|
9794
10035
|
openAiApiKey?: string | undefined;
|
|
9795
10036
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -9843,8 +10084,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9843
10084
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
9844
10085
|
geminiApiKey?: string | undefined;
|
|
9845
10086
|
googleGeminiBaseUrl?: string | undefined;
|
|
9846
|
-
enableUrlContext?: boolean | undefined;
|
|
9847
|
-
enableGrounding?: boolean | undefined;
|
|
9848
10087
|
geminiCliOAuthPath?: string | undefined;
|
|
9849
10088
|
geminiCliProjectId?: string | undefined;
|
|
9850
10089
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -9881,6 +10120,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9881
10120
|
featherlessApiKey?: string | undefined;
|
|
9882
10121
|
ioIntelligenceModelId?: string | undefined;
|
|
9883
10122
|
ioIntelligenceApiKey?: string | undefined;
|
|
10123
|
+
qwenCodeOauthPath?: string | undefined;
|
|
10124
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
10125
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
9884
10126
|
mode?: string | undefined;
|
|
9885
10127
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9886
10128
|
customInstructions?: string | undefined;
|
|
@@ -9901,7 +10143,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9901
10143
|
listApiConfigMeta?: {
|
|
9902
10144
|
name: string;
|
|
9903
10145
|
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;
|
|
10146
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
9905
10147
|
}[] | undefined;
|
|
9906
10148
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9907
10149
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9983,7 +10225,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9983
10225
|
powerSteering?: boolean | undefined;
|
|
9984
10226
|
multiFileApplyDiff?: boolean | undefined;
|
|
9985
10227
|
preventFocusDisruption?: boolean | undefined;
|
|
9986
|
-
assistantMessageParser?: boolean | undefined;
|
|
9987
10228
|
} | undefined;
|
|
9988
10229
|
codebaseIndexModels?: {
|
|
9989
10230
|
openai?: Record<string, {
|
|
@@ -10050,7 +10291,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10050
10291
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10051
10292
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10052
10293
|
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;
|
|
10294
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
10054
10295
|
includeMaxTokens?: boolean | undefined;
|
|
10055
10296
|
diffEnabled?: boolean | undefined;
|
|
10056
10297
|
todoListEnabled?: boolean | undefined;
|
|
@@ -10095,6 +10336,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10095
10336
|
vertexJsonCredentials?: string | undefined;
|
|
10096
10337
|
vertexProjectId?: string | undefined;
|
|
10097
10338
|
vertexRegion?: string | undefined;
|
|
10339
|
+
enableUrlContext?: boolean | undefined;
|
|
10340
|
+
enableGrounding?: boolean | undefined;
|
|
10098
10341
|
openAiBaseUrl?: string | undefined;
|
|
10099
10342
|
openAiApiKey?: string | undefined;
|
|
10100
10343
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -10148,8 +10391,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10148
10391
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
10149
10392
|
geminiApiKey?: string | undefined;
|
|
10150
10393
|
googleGeminiBaseUrl?: string | undefined;
|
|
10151
|
-
enableUrlContext?: boolean | undefined;
|
|
10152
|
-
enableGrounding?: boolean | undefined;
|
|
10153
10394
|
geminiCliOAuthPath?: string | undefined;
|
|
10154
10395
|
geminiCliProjectId?: string | undefined;
|
|
10155
10396
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -10186,6 +10427,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10186
10427
|
featherlessApiKey?: string | undefined;
|
|
10187
10428
|
ioIntelligenceModelId?: string | undefined;
|
|
10188
10429
|
ioIntelligenceApiKey?: string | undefined;
|
|
10430
|
+
qwenCodeOauthPath?: string | undefined;
|
|
10431
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
10432
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
10189
10433
|
mode?: string | undefined;
|
|
10190
10434
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
10191
10435
|
customInstructions?: string | undefined;
|
|
@@ -10206,7 +10450,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10206
10450
|
listApiConfigMeta?: {
|
|
10207
10451
|
name: string;
|
|
10208
10452
|
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;
|
|
10453
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
10210
10454
|
}[] | undefined;
|
|
10211
10455
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10212
10456
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10288,7 +10532,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10288
10532
|
powerSteering?: boolean | undefined;
|
|
10289
10533
|
multiFileApplyDiff?: boolean | undefined;
|
|
10290
10534
|
preventFocusDisruption?: boolean | undefined;
|
|
10291
|
-
assistantMessageParser?: boolean | undefined;
|
|
10292
10535
|
} | undefined;
|
|
10293
10536
|
codebaseIndexModels?: {
|
|
10294
10537
|
openai?: Record<string, {
|
|
@@ -10430,7 +10673,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10430
10673
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
10431
10674
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
10432
10675
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
10676
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
10677
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
10433
10678
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
10679
|
+
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
10434
10680
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
10435
10681
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
10436
10682
|
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -10632,21 +10878,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10632
10878
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
10633
10879
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
10634
10880
|
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"]>>;
|
|
10881
|
+
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", "vercel-ai-gateway"]>>;
|
|
10636
10882
|
} & {
|
|
10637
10883
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
10638
10884
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10639
10885
|
id: z.ZodString;
|
|
10640
10886
|
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"]>>;
|
|
10887
|
+
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", "vercel-ai-gateway"]>>;
|
|
10642
10888
|
}, "strip", z.ZodTypeAny, {
|
|
10643
10889
|
name: string;
|
|
10644
10890
|
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;
|
|
10891
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
10646
10892
|
}, {
|
|
10647
10893
|
name: string;
|
|
10648
10894
|
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;
|
|
10895
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
10650
10896
|
}>, "many">>;
|
|
10651
10897
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
10652
10898
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -10758,17 +11004,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10758
11004
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
10759
11005
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
10760
11006
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
10761
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
10762
11007
|
}, "strip", z.ZodTypeAny, {
|
|
10763
11008
|
powerSteering?: boolean | undefined;
|
|
10764
11009
|
multiFileApplyDiff?: boolean | undefined;
|
|
10765
11010
|
preventFocusDisruption?: boolean | undefined;
|
|
10766
|
-
assistantMessageParser?: boolean | undefined;
|
|
10767
11011
|
}, {
|
|
10768
11012
|
powerSteering?: boolean | undefined;
|
|
10769
11013
|
multiFileApplyDiff?: boolean | undefined;
|
|
10770
11014
|
preventFocusDisruption?: boolean | undefined;
|
|
10771
|
-
assistantMessageParser?: boolean | undefined;
|
|
10772
11015
|
}>>;
|
|
10773
11016
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
10774
11017
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -10962,7 +11205,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10962
11205
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10963
11206
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10964
11207
|
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;
|
|
11208
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
10966
11209
|
includeMaxTokens?: boolean | undefined;
|
|
10967
11210
|
diffEnabled?: boolean | undefined;
|
|
10968
11211
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11007,6 +11250,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11007
11250
|
vertexJsonCredentials?: string | undefined;
|
|
11008
11251
|
vertexProjectId?: string | undefined;
|
|
11009
11252
|
vertexRegion?: string | undefined;
|
|
11253
|
+
enableUrlContext?: boolean | undefined;
|
|
11254
|
+
enableGrounding?: boolean | undefined;
|
|
11010
11255
|
openAiBaseUrl?: string | undefined;
|
|
11011
11256
|
openAiApiKey?: string | undefined;
|
|
11012
11257
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11060,8 +11305,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11060
11305
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11061
11306
|
geminiApiKey?: string | undefined;
|
|
11062
11307
|
googleGeminiBaseUrl?: string | undefined;
|
|
11063
|
-
enableUrlContext?: boolean | undefined;
|
|
11064
|
-
enableGrounding?: boolean | undefined;
|
|
11065
11308
|
geminiCliOAuthPath?: string | undefined;
|
|
11066
11309
|
geminiCliProjectId?: string | undefined;
|
|
11067
11310
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -11098,6 +11341,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11098
11341
|
featherlessApiKey?: string | undefined;
|
|
11099
11342
|
ioIntelligenceModelId?: string | undefined;
|
|
11100
11343
|
ioIntelligenceApiKey?: string | undefined;
|
|
11344
|
+
qwenCodeOauthPath?: string | undefined;
|
|
11345
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
11346
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
11101
11347
|
mode?: string | undefined;
|
|
11102
11348
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11103
11349
|
customInstructions?: string | undefined;
|
|
@@ -11118,7 +11364,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11118
11364
|
listApiConfigMeta?: {
|
|
11119
11365
|
name: string;
|
|
11120
11366
|
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;
|
|
11367
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
11122
11368
|
}[] | undefined;
|
|
11123
11369
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11124
11370
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11200,7 +11446,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11200
11446
|
powerSteering?: boolean | undefined;
|
|
11201
11447
|
multiFileApplyDiff?: boolean | undefined;
|
|
11202
11448
|
preventFocusDisruption?: boolean | undefined;
|
|
11203
|
-
assistantMessageParser?: boolean | undefined;
|
|
11204
11449
|
} | undefined;
|
|
11205
11450
|
codebaseIndexModels?: {
|
|
11206
11451
|
openai?: Record<string, {
|
|
@@ -11259,7 +11504,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11259
11504
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11260
11505
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11261
11506
|
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;
|
|
11507
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
11263
11508
|
includeMaxTokens?: boolean | undefined;
|
|
11264
11509
|
diffEnabled?: boolean | undefined;
|
|
11265
11510
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11304,6 +11549,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11304
11549
|
vertexJsonCredentials?: string | undefined;
|
|
11305
11550
|
vertexProjectId?: string | undefined;
|
|
11306
11551
|
vertexRegion?: string | undefined;
|
|
11552
|
+
enableUrlContext?: boolean | undefined;
|
|
11553
|
+
enableGrounding?: boolean | undefined;
|
|
11307
11554
|
openAiBaseUrl?: string | undefined;
|
|
11308
11555
|
openAiApiKey?: string | undefined;
|
|
11309
11556
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11357,8 +11604,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11357
11604
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11358
11605
|
geminiApiKey?: string | undefined;
|
|
11359
11606
|
googleGeminiBaseUrl?: string | undefined;
|
|
11360
|
-
enableUrlContext?: boolean | undefined;
|
|
11361
|
-
enableGrounding?: boolean | undefined;
|
|
11362
11607
|
geminiCliOAuthPath?: string | undefined;
|
|
11363
11608
|
geminiCliProjectId?: string | undefined;
|
|
11364
11609
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -11395,6 +11640,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11395
11640
|
featherlessApiKey?: string | undefined;
|
|
11396
11641
|
ioIntelligenceModelId?: string | undefined;
|
|
11397
11642
|
ioIntelligenceApiKey?: string | undefined;
|
|
11643
|
+
qwenCodeOauthPath?: string | undefined;
|
|
11644
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
11645
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
11398
11646
|
mode?: string | undefined;
|
|
11399
11647
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11400
11648
|
customInstructions?: string | undefined;
|
|
@@ -11415,7 +11663,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11415
11663
|
listApiConfigMeta?: {
|
|
11416
11664
|
name: string;
|
|
11417
11665
|
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;
|
|
11666
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
11419
11667
|
}[] | undefined;
|
|
11420
11668
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11421
11669
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11497,7 +11745,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11497
11745
|
powerSteering?: boolean | undefined;
|
|
11498
11746
|
multiFileApplyDiff?: boolean | undefined;
|
|
11499
11747
|
preventFocusDisruption?: boolean | undefined;
|
|
11500
|
-
assistantMessageParser?: boolean | undefined;
|
|
11501
11748
|
} | undefined;
|
|
11502
11749
|
codebaseIndexModels?: {
|
|
11503
11750
|
openai?: Record<string, {
|
|
@@ -11562,7 +11809,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11562
11809
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11563
11810
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11564
11811
|
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;
|
|
11812
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
11566
11813
|
includeMaxTokens?: boolean | undefined;
|
|
11567
11814
|
diffEnabled?: boolean | undefined;
|
|
11568
11815
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11607,6 +11854,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11607
11854
|
vertexJsonCredentials?: string | undefined;
|
|
11608
11855
|
vertexProjectId?: string | undefined;
|
|
11609
11856
|
vertexRegion?: string | undefined;
|
|
11857
|
+
enableUrlContext?: boolean | undefined;
|
|
11858
|
+
enableGrounding?: boolean | undefined;
|
|
11610
11859
|
openAiBaseUrl?: string | undefined;
|
|
11611
11860
|
openAiApiKey?: string | undefined;
|
|
11612
11861
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11660,8 +11909,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11660
11909
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11661
11910
|
geminiApiKey?: string | undefined;
|
|
11662
11911
|
googleGeminiBaseUrl?: string | undefined;
|
|
11663
|
-
enableUrlContext?: boolean | undefined;
|
|
11664
|
-
enableGrounding?: boolean | undefined;
|
|
11665
11912
|
geminiCliOAuthPath?: string | undefined;
|
|
11666
11913
|
geminiCliProjectId?: string | undefined;
|
|
11667
11914
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -11698,6 +11945,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11698
11945
|
featherlessApiKey?: string | undefined;
|
|
11699
11946
|
ioIntelligenceModelId?: string | undefined;
|
|
11700
11947
|
ioIntelligenceApiKey?: string | undefined;
|
|
11948
|
+
qwenCodeOauthPath?: string | undefined;
|
|
11949
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
11950
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
11701
11951
|
mode?: string | undefined;
|
|
11702
11952
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11703
11953
|
customInstructions?: string | undefined;
|
|
@@ -11718,7 +11968,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11718
11968
|
listApiConfigMeta?: {
|
|
11719
11969
|
name: string;
|
|
11720
11970
|
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;
|
|
11971
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
11722
11972
|
}[] | undefined;
|
|
11723
11973
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11724
11974
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11800,7 +12050,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11800
12050
|
powerSteering?: boolean | undefined;
|
|
11801
12051
|
multiFileApplyDiff?: boolean | undefined;
|
|
11802
12052
|
preventFocusDisruption?: boolean | undefined;
|
|
11803
|
-
assistantMessageParser?: boolean | undefined;
|
|
11804
12053
|
} | undefined;
|
|
11805
12054
|
codebaseIndexModels?: {
|
|
11806
12055
|
openai?: Record<string, {
|
|
@@ -11864,7 +12113,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11864
12113
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11865
12114
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11866
12115
|
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;
|
|
12116
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
11868
12117
|
includeMaxTokens?: boolean | undefined;
|
|
11869
12118
|
diffEnabled?: boolean | undefined;
|
|
11870
12119
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11909,6 +12158,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11909
12158
|
vertexJsonCredentials?: string | undefined;
|
|
11910
12159
|
vertexProjectId?: string | undefined;
|
|
11911
12160
|
vertexRegion?: string | undefined;
|
|
12161
|
+
enableUrlContext?: boolean | undefined;
|
|
12162
|
+
enableGrounding?: boolean | undefined;
|
|
11912
12163
|
openAiBaseUrl?: string | undefined;
|
|
11913
12164
|
openAiApiKey?: string | undefined;
|
|
11914
12165
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -11962,8 +12213,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11962
12213
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
11963
12214
|
geminiApiKey?: string | undefined;
|
|
11964
12215
|
googleGeminiBaseUrl?: string | undefined;
|
|
11965
|
-
enableUrlContext?: boolean | undefined;
|
|
11966
|
-
enableGrounding?: boolean | undefined;
|
|
11967
12216
|
geminiCliOAuthPath?: string | undefined;
|
|
11968
12217
|
geminiCliProjectId?: string | undefined;
|
|
11969
12218
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12000,6 +12249,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12000
12249
|
featherlessApiKey?: string | undefined;
|
|
12001
12250
|
ioIntelligenceModelId?: string | undefined;
|
|
12002
12251
|
ioIntelligenceApiKey?: string | undefined;
|
|
12252
|
+
qwenCodeOauthPath?: string | undefined;
|
|
12253
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
12254
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
12003
12255
|
mode?: string | undefined;
|
|
12004
12256
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12005
12257
|
customInstructions?: string | undefined;
|
|
@@ -12020,7 +12272,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12020
12272
|
listApiConfigMeta?: {
|
|
12021
12273
|
name: string;
|
|
12022
12274
|
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;
|
|
12275
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
12024
12276
|
}[] | undefined;
|
|
12025
12277
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12026
12278
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12102,7 +12354,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12102
12354
|
powerSteering?: boolean | undefined;
|
|
12103
12355
|
multiFileApplyDiff?: boolean | undefined;
|
|
12104
12356
|
preventFocusDisruption?: boolean | undefined;
|
|
12105
|
-
assistantMessageParser?: boolean | undefined;
|
|
12106
12357
|
} | undefined;
|
|
12107
12358
|
codebaseIndexModels?: {
|
|
12108
12359
|
openai?: Record<string, {
|
|
@@ -12169,7 +12420,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12169
12420
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12170
12421
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12171
12422
|
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;
|
|
12423
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
12173
12424
|
includeMaxTokens?: boolean | undefined;
|
|
12174
12425
|
diffEnabled?: boolean | undefined;
|
|
12175
12426
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12214,6 +12465,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12214
12465
|
vertexJsonCredentials?: string | undefined;
|
|
12215
12466
|
vertexProjectId?: string | undefined;
|
|
12216
12467
|
vertexRegion?: string | undefined;
|
|
12468
|
+
enableUrlContext?: boolean | undefined;
|
|
12469
|
+
enableGrounding?: boolean | undefined;
|
|
12217
12470
|
openAiBaseUrl?: string | undefined;
|
|
12218
12471
|
openAiApiKey?: string | undefined;
|
|
12219
12472
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -12267,8 +12520,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12267
12520
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
12268
12521
|
geminiApiKey?: string | undefined;
|
|
12269
12522
|
googleGeminiBaseUrl?: string | undefined;
|
|
12270
|
-
enableUrlContext?: boolean | undefined;
|
|
12271
|
-
enableGrounding?: boolean | undefined;
|
|
12272
12523
|
geminiCliOAuthPath?: string | undefined;
|
|
12273
12524
|
geminiCliProjectId?: string | undefined;
|
|
12274
12525
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12305,6 +12556,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12305
12556
|
featherlessApiKey?: string | undefined;
|
|
12306
12557
|
ioIntelligenceModelId?: string | undefined;
|
|
12307
12558
|
ioIntelligenceApiKey?: string | undefined;
|
|
12559
|
+
qwenCodeOauthPath?: string | undefined;
|
|
12560
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
12561
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
12308
12562
|
mode?: string | undefined;
|
|
12309
12563
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12310
12564
|
customInstructions?: string | undefined;
|
|
@@ -12325,7 +12579,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12325
12579
|
listApiConfigMeta?: {
|
|
12326
12580
|
name: string;
|
|
12327
12581
|
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;
|
|
12582
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
12329
12583
|
}[] | undefined;
|
|
12330
12584
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12331
12585
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12407,7 +12661,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12407
12661
|
powerSteering?: boolean | undefined;
|
|
12408
12662
|
multiFileApplyDiff?: boolean | undefined;
|
|
12409
12663
|
preventFocusDisruption?: boolean | undefined;
|
|
12410
|
-
assistantMessageParser?: boolean | undefined;
|
|
12411
12664
|
} | undefined;
|
|
12412
12665
|
codebaseIndexModels?: {
|
|
12413
12666
|
openai?: Record<string, {
|
|
@@ -12474,7 +12727,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12474
12727
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12475
12728
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12476
12729
|
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;
|
|
12730
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
12478
12731
|
includeMaxTokens?: boolean | undefined;
|
|
12479
12732
|
diffEnabled?: boolean | undefined;
|
|
12480
12733
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12519,6 +12772,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12519
12772
|
vertexJsonCredentials?: string | undefined;
|
|
12520
12773
|
vertexProjectId?: string | undefined;
|
|
12521
12774
|
vertexRegion?: string | undefined;
|
|
12775
|
+
enableUrlContext?: boolean | undefined;
|
|
12776
|
+
enableGrounding?: boolean | undefined;
|
|
12522
12777
|
openAiBaseUrl?: string | undefined;
|
|
12523
12778
|
openAiApiKey?: string | undefined;
|
|
12524
12779
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -12572,8 +12827,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12572
12827
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
12573
12828
|
geminiApiKey?: string | undefined;
|
|
12574
12829
|
googleGeminiBaseUrl?: string | undefined;
|
|
12575
|
-
enableUrlContext?: boolean | undefined;
|
|
12576
|
-
enableGrounding?: boolean | undefined;
|
|
12577
12830
|
geminiCliOAuthPath?: string | undefined;
|
|
12578
12831
|
geminiCliProjectId?: string | undefined;
|
|
12579
12832
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12610,6 +12863,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12610
12863
|
featherlessApiKey?: string | undefined;
|
|
12611
12864
|
ioIntelligenceModelId?: string | undefined;
|
|
12612
12865
|
ioIntelligenceApiKey?: string | undefined;
|
|
12866
|
+
qwenCodeOauthPath?: string | undefined;
|
|
12867
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
12868
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
12613
12869
|
mode?: string | undefined;
|
|
12614
12870
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12615
12871
|
customInstructions?: string | undefined;
|
|
@@ -12630,7 +12886,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12630
12886
|
listApiConfigMeta?: {
|
|
12631
12887
|
name: string;
|
|
12632
12888
|
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;
|
|
12889
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
12634
12890
|
}[] | undefined;
|
|
12635
12891
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12636
12892
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12712,7 +12968,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12712
12968
|
powerSteering?: boolean | undefined;
|
|
12713
12969
|
multiFileApplyDiff?: boolean | undefined;
|
|
12714
12970
|
preventFocusDisruption?: boolean | undefined;
|
|
12715
|
-
assistantMessageParser?: boolean | undefined;
|
|
12716
12971
|
} | undefined;
|
|
12717
12972
|
codebaseIndexModels?: {
|
|
12718
12973
|
openai?: Record<string, {
|
|
@@ -12810,7 +13065,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12810
13065
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12811
13066
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12812
13067
|
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;
|
|
13068
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
12814
13069
|
includeMaxTokens?: boolean | undefined;
|
|
12815
13070
|
diffEnabled?: boolean | undefined;
|
|
12816
13071
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12855,6 +13110,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12855
13110
|
vertexJsonCredentials?: string | undefined;
|
|
12856
13111
|
vertexProjectId?: string | undefined;
|
|
12857
13112
|
vertexRegion?: string | undefined;
|
|
13113
|
+
enableUrlContext?: boolean | undefined;
|
|
13114
|
+
enableGrounding?: boolean | undefined;
|
|
12858
13115
|
openAiBaseUrl?: string | undefined;
|
|
12859
13116
|
openAiApiKey?: string | undefined;
|
|
12860
13117
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -12908,8 +13165,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12908
13165
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
12909
13166
|
geminiApiKey?: string | undefined;
|
|
12910
13167
|
googleGeminiBaseUrl?: string | undefined;
|
|
12911
|
-
enableUrlContext?: boolean | undefined;
|
|
12912
|
-
enableGrounding?: boolean | undefined;
|
|
12913
13168
|
geminiCliOAuthPath?: string | undefined;
|
|
12914
13169
|
geminiCliProjectId?: string | undefined;
|
|
12915
13170
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -12946,6 +13201,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12946
13201
|
featherlessApiKey?: string | undefined;
|
|
12947
13202
|
ioIntelligenceModelId?: string | undefined;
|
|
12948
13203
|
ioIntelligenceApiKey?: string | undefined;
|
|
13204
|
+
qwenCodeOauthPath?: string | undefined;
|
|
13205
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
13206
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
12949
13207
|
mode?: string | undefined;
|
|
12950
13208
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12951
13209
|
customInstructions?: string | undefined;
|
|
@@ -12966,7 +13224,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12966
13224
|
listApiConfigMeta?: {
|
|
12967
13225
|
name: string;
|
|
12968
13226
|
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;
|
|
13227
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
12970
13228
|
}[] | undefined;
|
|
12971
13229
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12972
13230
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -13048,7 +13306,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13048
13306
|
powerSteering?: boolean | undefined;
|
|
13049
13307
|
multiFileApplyDiff?: boolean | undefined;
|
|
13050
13308
|
preventFocusDisruption?: boolean | undefined;
|
|
13051
|
-
assistantMessageParser?: boolean | undefined;
|
|
13052
13309
|
} | undefined;
|
|
13053
13310
|
codebaseIndexModels?: {
|
|
13054
13311
|
openai?: Record<string, {
|
|
@@ -13129,7 +13386,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13129
13386
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
13130
13387
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
13131
13388
|
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;
|
|
13389
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
13133
13390
|
includeMaxTokens?: boolean | undefined;
|
|
13134
13391
|
diffEnabled?: boolean | undefined;
|
|
13135
13392
|
todoListEnabled?: boolean | undefined;
|
|
@@ -13174,6 +13431,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13174
13431
|
vertexJsonCredentials?: string | undefined;
|
|
13175
13432
|
vertexProjectId?: string | undefined;
|
|
13176
13433
|
vertexRegion?: string | undefined;
|
|
13434
|
+
enableUrlContext?: boolean | undefined;
|
|
13435
|
+
enableGrounding?: boolean | undefined;
|
|
13177
13436
|
openAiBaseUrl?: string | undefined;
|
|
13178
13437
|
openAiApiKey?: string | undefined;
|
|
13179
13438
|
openAiLegacyFormat?: boolean | undefined;
|
|
@@ -13227,8 +13486,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13227
13486
|
lmStudioSpeculativeDecodingEnabled?: boolean | undefined;
|
|
13228
13487
|
geminiApiKey?: string | undefined;
|
|
13229
13488
|
googleGeminiBaseUrl?: string | undefined;
|
|
13230
|
-
enableUrlContext?: boolean | undefined;
|
|
13231
|
-
enableGrounding?: boolean | undefined;
|
|
13232
13489
|
geminiCliOAuthPath?: string | undefined;
|
|
13233
13490
|
geminiCliProjectId?: string | undefined;
|
|
13234
13491
|
openAiNativeApiKey?: string | undefined;
|
|
@@ -13265,6 +13522,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13265
13522
|
featherlessApiKey?: string | undefined;
|
|
13266
13523
|
ioIntelligenceModelId?: string | undefined;
|
|
13267
13524
|
ioIntelligenceApiKey?: string | undefined;
|
|
13525
|
+
qwenCodeOauthPath?: string | undefined;
|
|
13526
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
13527
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
13268
13528
|
mode?: string | undefined;
|
|
13269
13529
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
13270
13530
|
customInstructions?: string | undefined;
|
|
@@ -13285,7 +13545,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13285
13545
|
listApiConfigMeta?: {
|
|
13286
13546
|
name: string;
|
|
13287
13547
|
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;
|
|
13548
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
13289
13549
|
}[] | undefined;
|
|
13290
13550
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
13291
13551
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -13367,7 +13627,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13367
13627
|
powerSteering?: boolean | undefined;
|
|
13368
13628
|
multiFileApplyDiff?: boolean | undefined;
|
|
13369
13629
|
preventFocusDisruption?: boolean | undefined;
|
|
13370
|
-
assistantMessageParser?: boolean | undefined;
|
|
13371
13630
|
} | undefined;
|
|
13372
13631
|
codebaseIndexModels?: {
|
|
13373
13632
|
openai?: Record<string, {
|
|
@@ -14623,8 +14882,8 @@ type CodebaseIndexProvider = z.infer<typeof codebaseIndexProviderSchema>;
|
|
|
14623
14882
|
/**
|
|
14624
14883
|
* ExperimentId
|
|
14625
14884
|
*/
|
|
14626
|
-
declare const experimentIds: readonly ["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"
|
|
14627
|
-
declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"
|
|
14885
|
+
declare const experimentIds: readonly ["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"];
|
|
14886
|
+
declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "multiFileApplyDiff", "preventFocusDisruption"]>;
|
|
14628
14887
|
type ExperimentId = z.infer<typeof experimentIdsSchema>;
|
|
14629
14888
|
/**
|
|
14630
14889
|
* Experiments
|
|
@@ -14633,17 +14892,14 @@ declare const experimentsSchema: z.ZodObject<{
|
|
|
14633
14892
|
powerSteering: z.ZodOptional<z.ZodBoolean>;
|
|
14634
14893
|
multiFileApplyDiff: z.ZodOptional<z.ZodBoolean>;
|
|
14635
14894
|
preventFocusDisruption: z.ZodOptional<z.ZodBoolean>;
|
|
14636
|
-
assistantMessageParser: z.ZodOptional<z.ZodBoolean>;
|
|
14637
14895
|
}, "strip", z.ZodTypeAny, {
|
|
14638
14896
|
powerSteering?: boolean | undefined;
|
|
14639
14897
|
multiFileApplyDiff?: boolean | undefined;
|
|
14640
14898
|
preventFocusDisruption?: boolean | undefined;
|
|
14641
|
-
assistantMessageParser?: boolean | undefined;
|
|
14642
14899
|
}, {
|
|
14643
14900
|
powerSteering?: boolean | undefined;
|
|
14644
14901
|
multiFileApplyDiff?: boolean | undefined;
|
|
14645
14902
|
preventFocusDisruption?: boolean | undefined;
|
|
14646
|
-
assistantMessageParser?: boolean | undefined;
|
|
14647
14903
|
}>;
|
|
14648
14904
|
type Experiments = z.infer<typeof experimentsSchema>;
|
|
14649
14905
|
|
|
@@ -15873,7 +16129,6 @@ type ModelInfo = z.infer<typeof modelInfoSchema>;
|
|
|
15873
16129
|
* These models will use the simpler <read_file><path>...</path></read_file> format
|
|
15874
16130
|
* instead of the more complex multi-file args format
|
|
15875
16131
|
*/
|
|
15876
|
-
declare const SINGLE_FILE_READ_MODELS: Set<string>;
|
|
15877
16132
|
/**
|
|
15878
16133
|
* Check if a model should use single file read format
|
|
15879
16134
|
* @param modelId The model ID to check
|
|
@@ -16030,7 +16285,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
16030
16285
|
type AppProperties = z.infer<typeof appPropertiesSchema>;
|
|
16031
16286
|
declare const taskPropertiesSchema: z.ZodObject<{
|
|
16032
16287
|
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"]>>;
|
|
16288
|
+
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", "vercel-ai-gateway"]>>;
|
|
16034
16289
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16035
16290
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16036
16291
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16053,7 +16308,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16053
16308
|
}, "strip", z.ZodTypeAny, {
|
|
16054
16309
|
isSubtask?: boolean | undefined;
|
|
16055
16310
|
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;
|
|
16311
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16057
16312
|
modelId?: string | undefined;
|
|
16058
16313
|
diffStrategy?: string | undefined;
|
|
16059
16314
|
todos?: {
|
|
@@ -16065,7 +16320,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16065
16320
|
}, {
|
|
16066
16321
|
isSubtask?: boolean | undefined;
|
|
16067
16322
|
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;
|
|
16323
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16069
16324
|
modelId?: string | undefined;
|
|
16070
16325
|
diffStrategy?: string | undefined;
|
|
16071
16326
|
todos?: {
|
|
@@ -16095,7 +16350,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16095
16350
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16096
16351
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16097
16352
|
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"]>>;
|
|
16353
|
+
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", "vercel-ai-gateway"]>>;
|
|
16099
16354
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16100
16355
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16101
16356
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16133,7 +16388,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16133
16388
|
language: string;
|
|
16134
16389
|
isSubtask?: boolean | undefined;
|
|
16135
16390
|
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;
|
|
16391
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16137
16392
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16138
16393
|
modelId?: string | undefined;
|
|
16139
16394
|
diffStrategy?: string | undefined;
|
|
@@ -16156,7 +16411,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16156
16411
|
language: string;
|
|
16157
16412
|
isSubtask?: boolean | undefined;
|
|
16158
16413
|
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;
|
|
16414
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16160
16415
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16161
16416
|
modelId?: string | undefined;
|
|
16162
16417
|
diffStrategy?: string | undefined;
|
|
@@ -16188,7 +16443,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16188
16443
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16189
16444
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16190
16445
|
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"]>>;
|
|
16446
|
+
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", "vercel-ai-gateway"]>>;
|
|
16192
16447
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16193
16448
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16194
16449
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16226,7 +16481,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16226
16481
|
language: string;
|
|
16227
16482
|
isSubtask?: boolean | undefined;
|
|
16228
16483
|
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;
|
|
16484
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16230
16485
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16231
16486
|
modelId?: string | undefined;
|
|
16232
16487
|
diffStrategy?: string | undefined;
|
|
@@ -16249,7 +16504,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16249
16504
|
language: string;
|
|
16250
16505
|
isSubtask?: boolean | undefined;
|
|
16251
16506
|
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;
|
|
16507
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16253
16508
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16254
16509
|
modelId?: string | undefined;
|
|
16255
16510
|
diffStrategy?: string | undefined;
|
|
@@ -16275,7 +16530,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16275
16530
|
language: string;
|
|
16276
16531
|
isSubtask?: boolean | undefined;
|
|
16277
16532
|
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;
|
|
16533
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16279
16534
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16280
16535
|
modelId?: string | undefined;
|
|
16281
16536
|
diffStrategy?: string | undefined;
|
|
@@ -16301,7 +16556,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16301
16556
|
language: string;
|
|
16302
16557
|
isSubtask?: boolean | undefined;
|
|
16303
16558
|
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;
|
|
16559
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16305
16560
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16306
16561
|
modelId?: string | undefined;
|
|
16307
16562
|
diffStrategy?: string | undefined;
|
|
@@ -16449,7 +16704,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16449
16704
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16450
16705
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16451
16706
|
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"]>>;
|
|
16707
|
+
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", "vercel-ai-gateway"]>>;
|
|
16453
16708
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16454
16709
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16455
16710
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16518,7 +16773,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16518
16773
|
editorName: string;
|
|
16519
16774
|
language: string;
|
|
16520
16775
|
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;
|
|
16776
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16522
16777
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16523
16778
|
modelId?: string | undefined;
|
|
16524
16779
|
diffStrategy?: string | undefined;
|
|
@@ -16572,7 +16827,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16572
16827
|
editorName: string;
|
|
16573
16828
|
language: string;
|
|
16574
16829
|
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;
|
|
16830
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16576
16831
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16577
16832
|
modelId?: string | undefined;
|
|
16578
16833
|
diffStrategy?: string | undefined;
|
|
@@ -16629,7 +16884,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16629
16884
|
editorName: string;
|
|
16630
16885
|
language: string;
|
|
16631
16886
|
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;
|
|
16887
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16633
16888
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16634
16889
|
modelId?: string | undefined;
|
|
16635
16890
|
diffStrategy?: string | undefined;
|
|
@@ -16686,7 +16941,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16686
16941
|
editorName: string;
|
|
16687
16942
|
language: string;
|
|
16688
16943
|
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;
|
|
16944
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16690
16945
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16691
16946
|
modelId?: string | undefined;
|
|
16692
16947
|
diffStrategy?: string | undefined;
|
|
@@ -16712,7 +16967,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16712
16967
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16713
16968
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16714
16969
|
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"]>>;
|
|
16970
|
+
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", "vercel-ai-gateway"]>>;
|
|
16716
16971
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16717
16972
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16718
16973
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16753,7 +17008,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16753
17008
|
cost?: number | undefined;
|
|
16754
17009
|
isSubtask?: boolean | undefined;
|
|
16755
17010
|
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;
|
|
17011
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16757
17012
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16758
17013
|
modelId?: string | undefined;
|
|
16759
17014
|
diffStrategy?: string | undefined;
|
|
@@ -16781,7 +17036,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16781
17036
|
cost?: number | undefined;
|
|
16782
17037
|
isSubtask?: boolean | undefined;
|
|
16783
17038
|
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;
|
|
17039
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16785
17040
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16786
17041
|
modelId?: string | undefined;
|
|
16787
17042
|
diffStrategy?: string | undefined;
|
|
@@ -16812,7 +17067,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16812
17067
|
cost?: number | undefined;
|
|
16813
17068
|
isSubtask?: boolean | undefined;
|
|
16814
17069
|
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;
|
|
17070
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16816
17071
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16817
17072
|
modelId?: string | undefined;
|
|
16818
17073
|
diffStrategy?: string | undefined;
|
|
@@ -16843,7 +17098,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16843
17098
|
cost?: number | undefined;
|
|
16844
17099
|
isSubtask?: boolean | undefined;
|
|
16845
17100
|
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;
|
|
17101
|
+
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" | "vercel-ai-gateway" | undefined;
|
|
16847
17102
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16848
17103
|
modelId?: string | undefined;
|
|
16849
17104
|
diffStrategy?: string | undefined;
|
|
@@ -17672,7 +17927,7 @@ declare const cerebrasModels: {
|
|
|
17672
17927
|
};
|
|
17673
17928
|
};
|
|
17674
17929
|
|
|
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";
|
|
17930
|
+
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
17931
|
declare const chutesDefaultModelId: ChutesModelId;
|
|
17677
17932
|
declare const chutesModels: {
|
|
17678
17933
|
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
@@ -17702,6 +17957,15 @@ declare const chutesModels: {
|
|
|
17702
17957
|
readonly outputPrice: 0;
|
|
17703
17958
|
readonly description: "DeepSeek V3 model.";
|
|
17704
17959
|
};
|
|
17960
|
+
readonly "deepseek-ai/DeepSeek-V3.1": {
|
|
17961
|
+
readonly maxTokens: 32768;
|
|
17962
|
+
readonly contextWindow: 163840;
|
|
17963
|
+
readonly supportsImages: false;
|
|
17964
|
+
readonly supportsPromptCache: false;
|
|
17965
|
+
readonly inputPrice: 0;
|
|
17966
|
+
readonly outputPrice: 0;
|
|
17967
|
+
readonly description: "DeepSeek V3.1 model.";
|
|
17968
|
+
};
|
|
17705
17969
|
readonly "unsloth/Llama-3.3-70B-Instruct": {
|
|
17706
17970
|
readonly maxTokens: 32768;
|
|
17707
17971
|
readonly contextWindow: 131072;
|
|
@@ -18044,7 +18308,7 @@ declare const deepSeekDefaultModelId: DeepSeekModelId;
|
|
|
18044
18308
|
declare const deepSeekModels: {
|
|
18045
18309
|
readonly "deepseek-chat": {
|
|
18046
18310
|
readonly maxTokens: 8192;
|
|
18047
|
-
readonly contextWindow:
|
|
18311
|
+
readonly contextWindow: 128000;
|
|
18048
18312
|
readonly supportsImages: false;
|
|
18049
18313
|
readonly supportsPromptCache: true;
|
|
18050
18314
|
readonly inputPrice: 0.27;
|
|
@@ -18054,15 +18318,15 @@ declare const deepSeekModels: {
|
|
|
18054
18318
|
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
18319
|
};
|
|
18056
18320
|
readonly "deepseek-reasoner": {
|
|
18057
|
-
readonly maxTokens:
|
|
18058
|
-
readonly contextWindow:
|
|
18321
|
+
readonly maxTokens: 65536;
|
|
18322
|
+
readonly contextWindow: 128000;
|
|
18059
18323
|
readonly supportsImages: false;
|
|
18060
18324
|
readonly supportsPromptCache: true;
|
|
18061
18325
|
readonly inputPrice: 0.55;
|
|
18062
18326
|
readonly outputPrice: 2.19;
|
|
18063
18327
|
readonly cacheWritesPrice: 0.55;
|
|
18064
18328
|
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
|
|
18329
|
+
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
18330
|
};
|
|
18067
18331
|
};
|
|
18068
18332
|
declare const DEEP_SEEK_DEFAULT_TEMPERATURE = 0.6;
|
|
@@ -18157,7 +18421,7 @@ declare const featherlessModels: {
|
|
|
18157
18421
|
};
|
|
18158
18422
|
declare const featherlessDefaultModelId: FeatherlessModelId;
|
|
18159
18423
|
|
|
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";
|
|
18424
|
+
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
18425
|
declare const fireworksDefaultModelId: FireworksModelId;
|
|
18162
18426
|
declare const fireworksModels: {
|
|
18163
18427
|
readonly "accounts/fireworks/models/kimi-k2-instruct": {
|
|
@@ -18205,6 +18469,15 @@ declare const fireworksModels: {
|
|
|
18205
18469
|
readonly outputPrice: 0.9;
|
|
18206
18470
|
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
18471
|
};
|
|
18472
|
+
readonly "accounts/fireworks/models/deepseek-v3p1": {
|
|
18473
|
+
readonly maxTokens: 16384;
|
|
18474
|
+
readonly contextWindow: 163840;
|
|
18475
|
+
readonly supportsImages: false;
|
|
18476
|
+
readonly supportsPromptCache: false;
|
|
18477
|
+
readonly inputPrice: 0.56;
|
|
18478
|
+
readonly outputPrice: 1.68;
|
|
18479
|
+
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.";
|
|
18480
|
+
};
|
|
18208
18481
|
readonly "accounts/fireworks/models/glm-4p5": {
|
|
18209
18482
|
readonly maxTokens: 16384;
|
|
18210
18483
|
readonly contextWindow: 128000;
|
|
@@ -18605,9 +18878,10 @@ declare const groqModels: {
|
|
|
18605
18878
|
readonly maxTokens: 16384;
|
|
18606
18879
|
readonly contextWindow: 131072;
|
|
18607
18880
|
readonly supportsImages: false;
|
|
18608
|
-
readonly supportsPromptCache:
|
|
18881
|
+
readonly supportsPromptCache: true;
|
|
18609
18882
|
readonly inputPrice: 1;
|
|
18610
18883
|
readonly outputPrice: 3;
|
|
18884
|
+
readonly cacheReadsPrice: 0.5;
|
|
18611
18885
|
readonly description: "Moonshot AI Kimi K2 Instruct 1T model, 128K context.";
|
|
18612
18886
|
};
|
|
18613
18887
|
readonly "openai/gpt-oss-120b": {
|
|
@@ -19027,20 +19301,47 @@ declare const OPEN_ROUTER_COMPUTER_USE_MODELS: Set<string>;
|
|
|
19027
19301
|
declare const OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS: Set<string>;
|
|
19028
19302
|
declare const OPEN_ROUTER_REASONING_BUDGET_MODELS: Set<string>;
|
|
19029
19303
|
|
|
19304
|
+
type QwenCodeModelId = "qwen3-coder-plus" | "qwen3-coder-flash";
|
|
19305
|
+
declare const qwenCodeDefaultModelId: QwenCodeModelId;
|
|
19306
|
+
declare const qwenCodeModels: {
|
|
19307
|
+
readonly "qwen3-coder-plus": {
|
|
19308
|
+
readonly maxTokens: 65536;
|
|
19309
|
+
readonly contextWindow: 1000000;
|
|
19310
|
+
readonly supportsImages: false;
|
|
19311
|
+
readonly supportsPromptCache: false;
|
|
19312
|
+
readonly inputPrice: 0;
|
|
19313
|
+
readonly outputPrice: 0;
|
|
19314
|
+
readonly cacheWritesPrice: 0;
|
|
19315
|
+
readonly cacheReadsPrice: 0;
|
|
19316
|
+
readonly description: "Qwen3 Coder Plus - High-performance coding model with 1M context window for large codebases";
|
|
19317
|
+
};
|
|
19318
|
+
readonly "qwen3-coder-flash": {
|
|
19319
|
+
readonly maxTokens: 65536;
|
|
19320
|
+
readonly contextWindow: 1000000;
|
|
19321
|
+
readonly supportsImages: false;
|
|
19322
|
+
readonly supportsPromptCache: false;
|
|
19323
|
+
readonly inputPrice: 0;
|
|
19324
|
+
readonly outputPrice: 0;
|
|
19325
|
+
readonly cacheWritesPrice: 0;
|
|
19326
|
+
readonly cacheReadsPrice: 0;
|
|
19327
|
+
readonly description: "Qwen3 Coder Flash - Fast coding model with 1M context window optimized for speed";
|
|
19328
|
+
};
|
|
19329
|
+
};
|
|
19330
|
+
|
|
19030
19331
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
19031
19332
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
19032
19333
|
|
|
19033
|
-
type RooModelId = "
|
|
19334
|
+
type RooModelId = "xai/grok-code-fast-1";
|
|
19034
19335
|
declare const rooDefaultModelId: RooModelId;
|
|
19035
19336
|
declare const rooModels: {
|
|
19036
|
-
readonly "
|
|
19337
|
+
readonly "xai/grok-code-fast-1": {
|
|
19037
19338
|
readonly maxTokens: 16384;
|
|
19038
19339
|
readonly contextWindow: 262144;
|
|
19039
19340
|
readonly supportsImages: false;
|
|
19040
19341
|
readonly supportsPromptCache: true;
|
|
19041
19342
|
readonly inputPrice: 0;
|
|
19042
19343
|
readonly outputPrice: 0;
|
|
19043
|
-
readonly description: "A
|
|
19344
|
+
readonly description: "A reasoning model that is blazing fast and excels at agentic coding, accessible for free through Roo Code Cloud for a limited time. (Note: the free prompts and completions are logged by xAI and used to improve the model.)";
|
|
19044
19345
|
};
|
|
19045
19346
|
};
|
|
19046
19347
|
|
|
@@ -19607,6 +19908,17 @@ declare const vscodeLlmModels: {
|
|
|
19607
19908
|
type XAIModelId = keyof typeof xaiModels;
|
|
19608
19909
|
declare const xaiDefaultModelId: XAIModelId;
|
|
19609
19910
|
declare const xaiModels: {
|
|
19911
|
+
readonly "grok-code-fast-1": {
|
|
19912
|
+
readonly maxTokens: 16384;
|
|
19913
|
+
readonly contextWindow: 262144;
|
|
19914
|
+
readonly supportsImages: false;
|
|
19915
|
+
readonly supportsPromptCache: true;
|
|
19916
|
+
readonly inputPrice: 0.2;
|
|
19917
|
+
readonly outputPrice: 1.5;
|
|
19918
|
+
readonly cacheWritesPrice: 0.02;
|
|
19919
|
+
readonly cacheReadsPrice: 0.02;
|
|
19920
|
+
readonly description: "xAI's Grok Code Fast model with 256K context window";
|
|
19921
|
+
};
|
|
19610
19922
|
readonly "grok-4": {
|
|
19611
19923
|
readonly maxTokens: 8192;
|
|
19612
19924
|
readonly contextWindow: 256000;
|
|
@@ -19684,6 +19996,13 @@ declare const xaiModels: {
|
|
|
19684
19996
|
};
|
|
19685
19997
|
};
|
|
19686
19998
|
|
|
19999
|
+
declare const vercelAiGatewayDefaultModelId = "anthropic/claude-sonnet-4";
|
|
20000
|
+
declare const VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS: Set<string>;
|
|
20001
|
+
declare const VERCEL_AI_GATEWAY_VISION_ONLY_MODELS: Set<string>;
|
|
20002
|
+
declare const VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS: Set<string>;
|
|
20003
|
+
declare const vercelAiGatewayDefaultModelInfo: ModelInfo;
|
|
20004
|
+
declare const VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE = 0.7;
|
|
20005
|
+
|
|
19687
20006
|
type InternationalZAiModelId = keyof typeof internationalZAiModels;
|
|
19688
20007
|
declare const internationalZAiDefaultModelId: InternationalZAiModelId;
|
|
19689
20008
|
declare const internationalZAiModels: {
|
|
@@ -19770,4 +20089,4 @@ declare const mainlandZAiModels: {
|
|
|
19770
20089
|
};
|
|
19771
20090
|
declare const ZAI_DEFAULT_TEMPERATURE = 0;
|
|
19772
20091
|
|
|
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,
|
|
20092
|
+
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, 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, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, 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, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|