@roo-code/types 1.60.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 +139 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +256 -89
- package/dist/index.d.ts +256 -89
- package/dist/index.js +133 -21
- 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", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"];
|
|
1072
|
-
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>;
|
|
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", "qwen-code", "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" | "qwen-code" | "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" | "qwen-code" | "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
|
/**
|
|
@@ -3133,6 +3133,56 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3133
3133
|
modelMaxThinkingTokens?: number | undefined;
|
|
3134
3134
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
3135
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;
|
|
3136
3186
|
}>, z.ZodObject<{
|
|
3137
3187
|
apiProvider: z.ZodUndefined;
|
|
3138
3188
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3160,6 +3210,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3160
3210
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3161
3211
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3162
3212
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3213
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
3214
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
3163
3215
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3164
3216
|
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
3165
3217
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -3363,7 +3415,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3363
3415
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3364
3416
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3365
3417
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
3366
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
3367
3419
|
}, "strip", z.ZodTypeAny, {
|
|
3368
3420
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3369
3421
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3373,7 +3425,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3373
3425
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3374
3426
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3375
3427
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3376
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
3377
3429
|
includeMaxTokens?: boolean | undefined;
|
|
3378
3430
|
diffEnabled?: boolean | undefined;
|
|
3379
3431
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3510,6 +3562,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3510
3562
|
ioIntelligenceModelId?: string | undefined;
|
|
3511
3563
|
ioIntelligenceApiKey?: string | undefined;
|
|
3512
3564
|
qwenCodeOauthPath?: string | undefined;
|
|
3565
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
3566
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
3513
3567
|
}, {
|
|
3514
3568
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3515
3569
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3519,7 +3573,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3519
3573
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3520
3574
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3521
3575
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3522
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
3523
3577
|
includeMaxTokens?: boolean | undefined;
|
|
3524
3578
|
diffEnabled?: boolean | undefined;
|
|
3525
3579
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3656,6 +3710,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3656
3710
|
ioIntelligenceModelId?: string | undefined;
|
|
3657
3711
|
ioIntelligenceApiKey?: string | undefined;
|
|
3658
3712
|
qwenCodeOauthPath?: string | undefined;
|
|
3713
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
3714
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
3659
3715
|
}>;
|
|
3660
3716
|
type ProviderSettings = z.infer<typeof providerSettingsSchema>;
|
|
3661
3717
|
declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
@@ -3678,6 +3734,8 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3678
3734
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3679
3735
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3680
3736
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3737
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
3738
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
3681
3739
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3682
3740
|
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
3683
3741
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -3881,7 +3939,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3881
3939
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3882
3940
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3883
3941
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
3884
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
3885
3943
|
} & {
|
|
3886
3944
|
id: z.ZodOptional<z.ZodString>;
|
|
3887
3945
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3894,7 +3952,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3894
3952
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3895
3953
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3896
3954
|
id?: string | undefined;
|
|
3897
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
3898
3956
|
includeMaxTokens?: boolean | undefined;
|
|
3899
3957
|
diffEnabled?: boolean | undefined;
|
|
3900
3958
|
todoListEnabled?: boolean | undefined;
|
|
@@ -4031,6 +4089,8 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4031
4089
|
ioIntelligenceModelId?: string | undefined;
|
|
4032
4090
|
ioIntelligenceApiKey?: string | undefined;
|
|
4033
4091
|
qwenCodeOauthPath?: string | undefined;
|
|
4092
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
4093
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
4034
4094
|
}, {
|
|
4035
4095
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
4036
4096
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -4041,7 +4101,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4041
4101
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
4042
4102
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
4043
4103
|
id?: string | undefined;
|
|
4044
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
4045
4105
|
includeMaxTokens?: boolean | undefined;
|
|
4046
4106
|
diffEnabled?: boolean | undefined;
|
|
4047
4107
|
todoListEnabled?: boolean | undefined;
|
|
@@ -4178,6 +4238,8 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4178
4238
|
ioIntelligenceModelId?: string | undefined;
|
|
4179
4239
|
ioIntelligenceApiKey?: string | undefined;
|
|
4180
4240
|
qwenCodeOauthPath?: string | undefined;
|
|
4241
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
4242
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
4181
4243
|
}>;
|
|
4182
4244
|
declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.ZodDiscriminatedUnion<"apiProvider", [z.ZodObject<{
|
|
4183
4245
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6217,6 +6279,56 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6217
6279
|
modelMaxThinkingTokens?: number | undefined;
|
|
6218
6280
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
6219
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;
|
|
6220
6332
|
}>, z.ZodObject<{
|
|
6221
6333
|
apiProvider: z.ZodUndefined;
|
|
6222
6334
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6231,7 +6343,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6231
6343
|
id?: string | undefined;
|
|
6232
6344
|
}>>;
|
|
6233
6345
|
type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
|
|
6234
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "unboundApiKey", "unboundModelId", "requestyBaseUrl", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId", "litellmUsePromptCache", "cerebrasApiKey", "sambaNovaApiKey", "zaiApiKey", "zaiApiLine", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceModelId", "ioIntelligenceApiKey", "qwenCodeOauthPath"];
|
|
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"];
|
|
6235
6347
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
6236
6348
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6237
6349
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
@@ -6241,7 +6353,7 @@ declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "huma
|
|
|
6241
6353
|
label: string;
|
|
6242
6354
|
models: string[];
|
|
6243
6355
|
}>;
|
|
6244
|
-
declare const dynamicProviders: readonly ["glama", "huggingface", "litellm", "openrouter", "requesty", "unbound"];
|
|
6356
|
+
declare const dynamicProviders: readonly ["glama", "huggingface", "litellm", "openrouter", "requesty", "unbound", "vercel-ai-gateway"];
|
|
6245
6357
|
type DynamicProvider = (typeof dynamicProviders)[number];
|
|
6246
6358
|
declare const isDynamicProvider: (key: string) => key is DynamicProvider;
|
|
6247
6359
|
|
|
@@ -6265,15 +6377,15 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6265
6377
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6266
6378
|
id: z.ZodString;
|
|
6267
6379
|
name: z.ZodString;
|
|
6268
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
6269
6381
|
}, "strip", z.ZodTypeAny, {
|
|
6270
6382
|
name: string;
|
|
6271
6383
|
id: string;
|
|
6272
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
6273
6385
|
}, {
|
|
6274
6386
|
name: string;
|
|
6275
6387
|
id: string;
|
|
6276
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
6277
6389
|
}>, "many">>;
|
|
6278
6390
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6279
6391
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6609,7 +6721,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6609
6721
|
listApiConfigMeta?: {
|
|
6610
6722
|
name: string;
|
|
6611
6723
|
id: string;
|
|
6612
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
6613
6725
|
}[] | undefined;
|
|
6614
6726
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6615
6727
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6764,7 +6876,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6764
6876
|
listApiConfigMeta?: {
|
|
6765
6877
|
name: string;
|
|
6766
6878
|
id: string;
|
|
6767
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
6768
6880
|
}[] | undefined;
|
|
6769
6881
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6770
6882
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6918,6 +7030,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
6918
7030
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
6919
7031
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
6920
7032
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
7033
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
7034
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
6921
7035
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6922
7036
|
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
6923
7037
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -7121,21 +7235,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7121
7235
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7122
7236
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
7123
7237
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
7124
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
7125
7239
|
} & {
|
|
7126
7240
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
7127
7241
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7128
7242
|
id: z.ZodString;
|
|
7129
7243
|
name: z.ZodString;
|
|
7130
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
7131
7245
|
}, "strip", z.ZodTypeAny, {
|
|
7132
7246
|
name: string;
|
|
7133
7247
|
id: string;
|
|
7134
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
7135
7249
|
}, {
|
|
7136
7250
|
name: string;
|
|
7137
7251
|
id: string;
|
|
7138
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
7139
7253
|
}>, "many">>;
|
|
7140
7254
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
7141
7255
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -7448,7 +7562,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7448
7562
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7449
7563
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7450
7564
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7451
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
7452
7566
|
includeMaxTokens?: boolean | undefined;
|
|
7453
7567
|
diffEnabled?: boolean | undefined;
|
|
7454
7568
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7585,6 +7699,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7585
7699
|
ioIntelligenceModelId?: string | undefined;
|
|
7586
7700
|
ioIntelligenceApiKey?: string | undefined;
|
|
7587
7701
|
qwenCodeOauthPath?: string | undefined;
|
|
7702
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
7703
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
7588
7704
|
mode?: string | undefined;
|
|
7589
7705
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
7590
7706
|
customInstructions?: string | undefined;
|
|
@@ -7605,7 +7721,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7605
7721
|
listApiConfigMeta?: {
|
|
7606
7722
|
name: string;
|
|
7607
7723
|
id: string;
|
|
7608
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
7609
7725
|
}[] | undefined;
|
|
7610
7726
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7611
7727
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7745,7 +7861,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7745
7861
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7746
7862
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7747
7863
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7748
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
7749
7865
|
includeMaxTokens?: boolean | undefined;
|
|
7750
7866
|
diffEnabled?: boolean | undefined;
|
|
7751
7867
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7882,6 +7998,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7882
7998
|
ioIntelligenceModelId?: string | undefined;
|
|
7883
7999
|
ioIntelligenceApiKey?: string | undefined;
|
|
7884
8000
|
qwenCodeOauthPath?: string | undefined;
|
|
8001
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
8002
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
7885
8003
|
mode?: string | undefined;
|
|
7886
8004
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
7887
8005
|
customInstructions?: string | undefined;
|
|
@@ -7902,7 +8020,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7902
8020
|
listApiConfigMeta?: {
|
|
7903
8021
|
name: string;
|
|
7904
8022
|
id: string;
|
|
7905
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
7906
8024
|
}[] | undefined;
|
|
7907
8025
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7908
8026
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8038,7 +8156,7 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
8038
8156
|
/**
|
|
8039
8157
|
* SecretState
|
|
8040
8158
|
*/
|
|
8041
|
-
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"];
|
|
8042
8160
|
type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
|
|
8043
8161
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
8044
8162
|
/**
|
|
@@ -8119,6 +8237,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8119
8237
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
8120
8238
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
8121
8239
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
8240
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
8241
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
8122
8242
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
8123
8243
|
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
8124
8244
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -8322,21 +8442,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8322
8442
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8323
8443
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
8324
8444
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
8325
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
8326
8446
|
} & {
|
|
8327
8447
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
8328
8448
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8329
8449
|
id: z.ZodString;
|
|
8330
8450
|
name: z.ZodString;
|
|
8331
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
8332
8452
|
}, "strip", z.ZodTypeAny, {
|
|
8333
8453
|
name: string;
|
|
8334
8454
|
id: string;
|
|
8335
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
8336
8456
|
}, {
|
|
8337
8457
|
name: string;
|
|
8338
8458
|
id: string;
|
|
8339
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
8340
8460
|
}>, "many">>;
|
|
8341
8461
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8342
8462
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8649,7 +8769,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8649
8769
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8650
8770
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8651
8771
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
8652
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
8653
8773
|
includeMaxTokens?: boolean | undefined;
|
|
8654
8774
|
diffEnabled?: boolean | undefined;
|
|
8655
8775
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8786,6 +8906,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8786
8906
|
ioIntelligenceModelId?: string | undefined;
|
|
8787
8907
|
ioIntelligenceApiKey?: string | undefined;
|
|
8788
8908
|
qwenCodeOauthPath?: string | undefined;
|
|
8909
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
8910
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
8789
8911
|
mode?: string | undefined;
|
|
8790
8912
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
8791
8913
|
customInstructions?: string | undefined;
|
|
@@ -8806,7 +8928,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8806
8928
|
listApiConfigMeta?: {
|
|
8807
8929
|
name: string;
|
|
8808
8930
|
id: string;
|
|
8809
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
8810
8932
|
}[] | undefined;
|
|
8811
8933
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8812
8934
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8946,7 +9068,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8946
9068
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8947
9069
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8948
9070
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
8949
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
8950
9072
|
includeMaxTokens?: boolean | undefined;
|
|
8951
9073
|
diffEnabled?: boolean | undefined;
|
|
8952
9074
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9083,6 +9205,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9083
9205
|
ioIntelligenceModelId?: string | undefined;
|
|
9084
9206
|
ioIntelligenceApiKey?: string | undefined;
|
|
9085
9207
|
qwenCodeOauthPath?: string | undefined;
|
|
9208
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
9209
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
9086
9210
|
mode?: string | undefined;
|
|
9087
9211
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9088
9212
|
customInstructions?: string | undefined;
|
|
@@ -9103,7 +9227,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9103
9227
|
listApiConfigMeta?: {
|
|
9104
9228
|
name: string;
|
|
9105
9229
|
id: string;
|
|
9106
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
9107
9231
|
}[] | undefined;
|
|
9108
9232
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9109
9233
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9249,7 +9373,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9249
9373
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9250
9374
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9251
9375
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9252
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
9253
9377
|
includeMaxTokens?: boolean | undefined;
|
|
9254
9378
|
diffEnabled?: boolean | undefined;
|
|
9255
9379
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9386,6 +9510,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9386
9510
|
ioIntelligenceModelId?: string | undefined;
|
|
9387
9511
|
ioIntelligenceApiKey?: string | undefined;
|
|
9388
9512
|
qwenCodeOauthPath?: string | undefined;
|
|
9513
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
9514
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
9389
9515
|
mode?: string | undefined;
|
|
9390
9516
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9391
9517
|
customInstructions?: string | undefined;
|
|
@@ -9406,7 +9532,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9406
9532
|
listApiConfigMeta?: {
|
|
9407
9533
|
name: string;
|
|
9408
9534
|
id: string;
|
|
9409
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
9410
9536
|
}[] | undefined;
|
|
9411
9537
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9412
9538
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9551,7 +9677,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9551
9677
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9552
9678
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9553
9679
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9554
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
9555
9681
|
includeMaxTokens?: boolean | undefined;
|
|
9556
9682
|
diffEnabled?: boolean | undefined;
|
|
9557
9683
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9688,6 +9814,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9688
9814
|
ioIntelligenceModelId?: string | undefined;
|
|
9689
9815
|
ioIntelligenceApiKey?: string | undefined;
|
|
9690
9816
|
qwenCodeOauthPath?: string | undefined;
|
|
9817
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
9818
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
9691
9819
|
mode?: string | undefined;
|
|
9692
9820
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9693
9821
|
customInstructions?: string | undefined;
|
|
@@ -9708,7 +9836,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9708
9836
|
listApiConfigMeta?: {
|
|
9709
9837
|
name: string;
|
|
9710
9838
|
id: string;
|
|
9711
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
9712
9840
|
}[] | undefined;
|
|
9713
9841
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9714
9842
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9856,7 +9984,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9856
9984
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9857
9985
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9858
9986
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9859
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
9860
9988
|
includeMaxTokens?: boolean | undefined;
|
|
9861
9989
|
diffEnabled?: boolean | undefined;
|
|
9862
9990
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9993,6 +10121,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9993
10121
|
ioIntelligenceModelId?: string | undefined;
|
|
9994
10122
|
ioIntelligenceApiKey?: string | undefined;
|
|
9995
10123
|
qwenCodeOauthPath?: string | undefined;
|
|
10124
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
10125
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
9996
10126
|
mode?: string | undefined;
|
|
9997
10127
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
9998
10128
|
customInstructions?: string | undefined;
|
|
@@ -10013,7 +10143,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10013
10143
|
listApiConfigMeta?: {
|
|
10014
10144
|
name: string;
|
|
10015
10145
|
id: string;
|
|
10016
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
10017
10147
|
}[] | undefined;
|
|
10018
10148
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10019
10149
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10161,7 +10291,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10161
10291
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10162
10292
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10163
10293
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
10164
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
10165
10295
|
includeMaxTokens?: boolean | undefined;
|
|
10166
10296
|
diffEnabled?: boolean | undefined;
|
|
10167
10297
|
todoListEnabled?: boolean | undefined;
|
|
@@ -10298,6 +10428,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10298
10428
|
ioIntelligenceModelId?: string | undefined;
|
|
10299
10429
|
ioIntelligenceApiKey?: string | undefined;
|
|
10300
10430
|
qwenCodeOauthPath?: string | undefined;
|
|
10431
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
10432
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
10301
10433
|
mode?: string | undefined;
|
|
10302
10434
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
10303
10435
|
customInstructions?: string | undefined;
|
|
@@ -10318,7 +10450,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10318
10450
|
listApiConfigMeta?: {
|
|
10319
10451
|
name: string;
|
|
10320
10452
|
id: string;
|
|
10321
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
10322
10454
|
}[] | undefined;
|
|
10323
10455
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10324
10456
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10541,6 +10673,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10541
10673
|
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
10542
10674
|
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
10543
10675
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
10676
|
+
vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
10677
|
+
vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
|
|
10544
10678
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
10545
10679
|
qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
|
|
10546
10680
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
@@ -10744,21 +10878,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10744
10878
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
10745
10879
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
10746
10880
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
10747
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
10748
10882
|
} & {
|
|
10749
10883
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
10750
10884
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10751
10885
|
id: z.ZodString;
|
|
10752
10886
|
name: z.ZodString;
|
|
10753
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
10754
10888
|
}, "strip", z.ZodTypeAny, {
|
|
10755
10889
|
name: string;
|
|
10756
10890
|
id: string;
|
|
10757
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
10758
10892
|
}, {
|
|
10759
10893
|
name: string;
|
|
10760
10894
|
id: string;
|
|
10761
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
10762
10896
|
}>, "many">>;
|
|
10763
10897
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
10764
10898
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -11071,7 +11205,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11071
11205
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11072
11206
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11073
11207
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11074
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
11075
11209
|
includeMaxTokens?: boolean | undefined;
|
|
11076
11210
|
diffEnabled?: boolean | undefined;
|
|
11077
11211
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11208,6 +11342,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11208
11342
|
ioIntelligenceModelId?: string | undefined;
|
|
11209
11343
|
ioIntelligenceApiKey?: string | undefined;
|
|
11210
11344
|
qwenCodeOauthPath?: string | undefined;
|
|
11345
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
11346
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
11211
11347
|
mode?: string | undefined;
|
|
11212
11348
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11213
11349
|
customInstructions?: string | undefined;
|
|
@@ -11228,7 +11364,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11228
11364
|
listApiConfigMeta?: {
|
|
11229
11365
|
name: string;
|
|
11230
11366
|
id: string;
|
|
11231
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
11232
11368
|
}[] | undefined;
|
|
11233
11369
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11234
11370
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11368,7 +11504,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11368
11504
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11369
11505
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11370
11506
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11371
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
11372
11508
|
includeMaxTokens?: boolean | undefined;
|
|
11373
11509
|
diffEnabled?: boolean | undefined;
|
|
11374
11510
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11505,6 +11641,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11505
11641
|
ioIntelligenceModelId?: string | undefined;
|
|
11506
11642
|
ioIntelligenceApiKey?: string | undefined;
|
|
11507
11643
|
qwenCodeOauthPath?: string | undefined;
|
|
11644
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
11645
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
11508
11646
|
mode?: string | undefined;
|
|
11509
11647
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11510
11648
|
customInstructions?: string | undefined;
|
|
@@ -11525,7 +11663,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11525
11663
|
listApiConfigMeta?: {
|
|
11526
11664
|
name: string;
|
|
11527
11665
|
id: string;
|
|
11528
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
11529
11667
|
}[] | undefined;
|
|
11530
11668
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11531
11669
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11671,7 +11809,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11671
11809
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11672
11810
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11673
11811
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11674
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
11675
11813
|
includeMaxTokens?: boolean | undefined;
|
|
11676
11814
|
diffEnabled?: boolean | undefined;
|
|
11677
11815
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11808,6 +11946,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11808
11946
|
ioIntelligenceModelId?: string | undefined;
|
|
11809
11947
|
ioIntelligenceApiKey?: string | undefined;
|
|
11810
11948
|
qwenCodeOauthPath?: string | undefined;
|
|
11949
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
11950
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
11811
11951
|
mode?: string | undefined;
|
|
11812
11952
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
11813
11953
|
customInstructions?: string | undefined;
|
|
@@ -11828,7 +11968,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11828
11968
|
listApiConfigMeta?: {
|
|
11829
11969
|
name: string;
|
|
11830
11970
|
id: string;
|
|
11831
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
11832
11972
|
}[] | undefined;
|
|
11833
11973
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11834
11974
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11973,7 +12113,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11973
12113
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11974
12114
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11975
12115
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11976
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
11977
12117
|
includeMaxTokens?: boolean | undefined;
|
|
11978
12118
|
diffEnabled?: boolean | undefined;
|
|
11979
12119
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12110,6 +12250,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12110
12250
|
ioIntelligenceModelId?: string | undefined;
|
|
12111
12251
|
ioIntelligenceApiKey?: string | undefined;
|
|
12112
12252
|
qwenCodeOauthPath?: string | undefined;
|
|
12253
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
12254
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
12113
12255
|
mode?: string | undefined;
|
|
12114
12256
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12115
12257
|
customInstructions?: string | undefined;
|
|
@@ -12130,7 +12272,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12130
12272
|
listApiConfigMeta?: {
|
|
12131
12273
|
name: string;
|
|
12132
12274
|
id: string;
|
|
12133
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
12134
12276
|
}[] | undefined;
|
|
12135
12277
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12136
12278
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12278,7 +12420,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12278
12420
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12279
12421
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12280
12422
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12281
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
12282
12424
|
includeMaxTokens?: boolean | undefined;
|
|
12283
12425
|
diffEnabled?: boolean | undefined;
|
|
12284
12426
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12415,6 +12557,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12415
12557
|
ioIntelligenceModelId?: string | undefined;
|
|
12416
12558
|
ioIntelligenceApiKey?: string | undefined;
|
|
12417
12559
|
qwenCodeOauthPath?: string | undefined;
|
|
12560
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
12561
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
12418
12562
|
mode?: string | undefined;
|
|
12419
12563
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12420
12564
|
customInstructions?: string | undefined;
|
|
@@ -12435,7 +12579,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12435
12579
|
listApiConfigMeta?: {
|
|
12436
12580
|
name: string;
|
|
12437
12581
|
id: string;
|
|
12438
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
12439
12583
|
}[] | undefined;
|
|
12440
12584
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12441
12585
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12583,7 +12727,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12583
12727
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12584
12728
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12585
12729
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12586
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
12587
12731
|
includeMaxTokens?: boolean | undefined;
|
|
12588
12732
|
diffEnabled?: boolean | undefined;
|
|
12589
12733
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12720,6 +12864,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12720
12864
|
ioIntelligenceModelId?: string | undefined;
|
|
12721
12865
|
ioIntelligenceApiKey?: string | undefined;
|
|
12722
12866
|
qwenCodeOauthPath?: string | undefined;
|
|
12867
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
12868
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
12723
12869
|
mode?: string | undefined;
|
|
12724
12870
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
12725
12871
|
customInstructions?: string | undefined;
|
|
@@ -12740,7 +12886,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12740
12886
|
listApiConfigMeta?: {
|
|
12741
12887
|
name: string;
|
|
12742
12888
|
id: string;
|
|
12743
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
12744
12890
|
}[] | undefined;
|
|
12745
12891
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12746
12892
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12919,7 +13065,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12919
13065
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12920
13066
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12921
13067
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12922
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
12923
13069
|
includeMaxTokens?: boolean | undefined;
|
|
12924
13070
|
diffEnabled?: boolean | undefined;
|
|
12925
13071
|
todoListEnabled?: boolean | undefined;
|
|
@@ -13056,6 +13202,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13056
13202
|
ioIntelligenceModelId?: string | undefined;
|
|
13057
13203
|
ioIntelligenceApiKey?: string | undefined;
|
|
13058
13204
|
qwenCodeOauthPath?: string | undefined;
|
|
13205
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
13206
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
13059
13207
|
mode?: string | undefined;
|
|
13060
13208
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
13061
13209
|
customInstructions?: string | undefined;
|
|
@@ -13076,7 +13224,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13076
13224
|
listApiConfigMeta?: {
|
|
13077
13225
|
name: string;
|
|
13078
13226
|
id: string;
|
|
13079
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
13080
13228
|
}[] | undefined;
|
|
13081
13229
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
13082
13230
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -13238,7 +13386,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13238
13386
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
13239
13387
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
13240
13388
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
13241
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
13242
13390
|
includeMaxTokens?: boolean | undefined;
|
|
13243
13391
|
diffEnabled?: boolean | undefined;
|
|
13244
13392
|
todoListEnabled?: boolean | undefined;
|
|
@@ -13375,6 +13523,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13375
13523
|
ioIntelligenceModelId?: string | undefined;
|
|
13376
13524
|
ioIntelligenceApiKey?: string | undefined;
|
|
13377
13525
|
qwenCodeOauthPath?: string | undefined;
|
|
13526
|
+
vercelAiGatewayApiKey?: string | undefined;
|
|
13527
|
+
vercelAiGatewayModelId?: string | undefined;
|
|
13378
13528
|
mode?: string | undefined;
|
|
13379
13529
|
language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
|
|
13380
13530
|
customInstructions?: string | undefined;
|
|
@@ -13395,7 +13545,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13395
13545
|
listApiConfigMeta?: {
|
|
13396
13546
|
name: string;
|
|
13397
13547
|
id: string;
|
|
13398
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
13399
13549
|
}[] | undefined;
|
|
13400
13550
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
13401
13551
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -15979,7 +16129,6 @@ type ModelInfo = z.infer<typeof modelInfoSchema>;
|
|
|
15979
16129
|
* These models will use the simpler <read_file><path>...</path></read_file> format
|
|
15980
16130
|
* instead of the more complex multi-file args format
|
|
15981
16131
|
*/
|
|
15982
|
-
declare const SINGLE_FILE_READ_MODELS: Set<string>;
|
|
15983
16132
|
/**
|
|
15984
16133
|
* Check if a model should use single file read format
|
|
15985
16134
|
* @param modelId The model ID to check
|
|
@@ -16136,7 +16285,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
16136
16285
|
type AppProperties = z.infer<typeof appPropertiesSchema>;
|
|
16137
16286
|
declare const taskPropertiesSchema: z.ZodObject<{
|
|
16138
16287
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16139
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
16140
16289
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16141
16290
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16142
16291
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16159,7 +16308,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16159
16308
|
}, "strip", z.ZodTypeAny, {
|
|
16160
16309
|
isSubtask?: boolean | undefined;
|
|
16161
16310
|
taskId?: string | undefined;
|
|
16162
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16163
16312
|
modelId?: string | undefined;
|
|
16164
16313
|
diffStrategy?: string | undefined;
|
|
16165
16314
|
todos?: {
|
|
@@ -16171,7 +16320,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16171
16320
|
}, {
|
|
16172
16321
|
isSubtask?: boolean | undefined;
|
|
16173
16322
|
taskId?: string | undefined;
|
|
16174
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16175
16324
|
modelId?: string | undefined;
|
|
16176
16325
|
diffStrategy?: string | undefined;
|
|
16177
16326
|
todos?: {
|
|
@@ -16201,7 +16350,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16201
16350
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16202
16351
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16203
16352
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16204
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
16205
16354
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16206
16355
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16207
16356
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16239,7 +16388,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16239
16388
|
language: string;
|
|
16240
16389
|
isSubtask?: boolean | undefined;
|
|
16241
16390
|
taskId?: string | undefined;
|
|
16242
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16243
16392
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16244
16393
|
modelId?: string | undefined;
|
|
16245
16394
|
diffStrategy?: string | undefined;
|
|
@@ -16262,7 +16411,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16262
16411
|
language: string;
|
|
16263
16412
|
isSubtask?: boolean | undefined;
|
|
16264
16413
|
taskId?: string | undefined;
|
|
16265
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16266
16415
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16267
16416
|
modelId?: string | undefined;
|
|
16268
16417
|
diffStrategy?: string | undefined;
|
|
@@ -16294,7 +16443,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16294
16443
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16295
16444
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16296
16445
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16297
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
16298
16447
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16299
16448
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16300
16449
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16332,7 +16481,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16332
16481
|
language: string;
|
|
16333
16482
|
isSubtask?: boolean | undefined;
|
|
16334
16483
|
taskId?: string | undefined;
|
|
16335
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16336
16485
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16337
16486
|
modelId?: string | undefined;
|
|
16338
16487
|
diffStrategy?: string | undefined;
|
|
@@ -16355,7 +16504,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16355
16504
|
language: string;
|
|
16356
16505
|
isSubtask?: boolean | undefined;
|
|
16357
16506
|
taskId?: string | undefined;
|
|
16358
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16359
16508
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16360
16509
|
modelId?: string | undefined;
|
|
16361
16510
|
diffStrategy?: string | undefined;
|
|
@@ -16381,7 +16530,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16381
16530
|
language: string;
|
|
16382
16531
|
isSubtask?: boolean | undefined;
|
|
16383
16532
|
taskId?: string | undefined;
|
|
16384
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16385
16534
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16386
16535
|
modelId?: string | undefined;
|
|
16387
16536
|
diffStrategy?: string | undefined;
|
|
@@ -16407,7 +16556,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16407
16556
|
language: string;
|
|
16408
16557
|
isSubtask?: boolean | undefined;
|
|
16409
16558
|
taskId?: string | undefined;
|
|
16410
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16411
16560
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16412
16561
|
modelId?: string | undefined;
|
|
16413
16562
|
diffStrategy?: string | undefined;
|
|
@@ -16555,7 +16704,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16555
16704
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16556
16705
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16557
16706
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16558
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
16559
16708
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16560
16709
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16561
16710
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16624,7 +16773,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16624
16773
|
editorName: string;
|
|
16625
16774
|
language: string;
|
|
16626
16775
|
isSubtask?: boolean | undefined;
|
|
16627
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16628
16777
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16629
16778
|
modelId?: string | undefined;
|
|
16630
16779
|
diffStrategy?: string | undefined;
|
|
@@ -16678,7 +16827,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16678
16827
|
editorName: string;
|
|
16679
16828
|
language: string;
|
|
16680
16829
|
isSubtask?: boolean | undefined;
|
|
16681
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16682
16831
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16683
16832
|
modelId?: string | undefined;
|
|
16684
16833
|
diffStrategy?: string | undefined;
|
|
@@ -16735,7 +16884,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16735
16884
|
editorName: string;
|
|
16736
16885
|
language: string;
|
|
16737
16886
|
isSubtask?: boolean | undefined;
|
|
16738
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16739
16888
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16740
16889
|
modelId?: string | undefined;
|
|
16741
16890
|
diffStrategy?: string | undefined;
|
|
@@ -16792,7 +16941,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16792
16941
|
editorName: string;
|
|
16793
16942
|
language: string;
|
|
16794
16943
|
isSubtask?: boolean | undefined;
|
|
16795
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16796
16945
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16797
16946
|
modelId?: string | undefined;
|
|
16798
16947
|
diffStrategy?: string | undefined;
|
|
@@ -16818,7 +16967,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16818
16967
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16819
16968
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16820
16969
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16821
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "qwen-code", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
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"]>>;
|
|
16822
16971
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16823
16972
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16824
16973
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16859,7 +17008,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16859
17008
|
cost?: number | undefined;
|
|
16860
17009
|
isSubtask?: boolean | undefined;
|
|
16861
17010
|
taskId?: string | undefined;
|
|
16862
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16863
17012
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16864
17013
|
modelId?: string | undefined;
|
|
16865
17014
|
diffStrategy?: string | undefined;
|
|
@@ -16887,7 +17036,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16887
17036
|
cost?: number | undefined;
|
|
16888
17037
|
isSubtask?: boolean | undefined;
|
|
16889
17038
|
taskId?: string | undefined;
|
|
16890
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16891
17040
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16892
17041
|
modelId?: string | undefined;
|
|
16893
17042
|
diffStrategy?: string | undefined;
|
|
@@ -16918,7 +17067,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16918
17067
|
cost?: number | undefined;
|
|
16919
17068
|
isSubtask?: boolean | undefined;
|
|
16920
17069
|
taskId?: string | undefined;
|
|
16921
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16922
17071
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16923
17072
|
modelId?: string | undefined;
|
|
16924
17073
|
diffStrategy?: string | undefined;
|
|
@@ -16949,7 +17098,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16949
17098
|
cost?: number | undefined;
|
|
16950
17099
|
isSubtask?: boolean | undefined;
|
|
16951
17100
|
taskId?: string | undefined;
|
|
16952
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "qwen-code" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
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;
|
|
16953
17102
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16954
17103
|
modelId?: string | undefined;
|
|
16955
17104
|
diffStrategy?: string | undefined;
|
|
@@ -19182,17 +19331,17 @@ declare const qwenCodeModels: {
|
|
|
19182
19331
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
19183
19332
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
19184
19333
|
|
|
19185
|
-
type RooModelId = "
|
|
19334
|
+
type RooModelId = "xai/grok-code-fast-1";
|
|
19186
19335
|
declare const rooDefaultModelId: RooModelId;
|
|
19187
19336
|
declare const rooModels: {
|
|
19188
|
-
readonly "
|
|
19337
|
+
readonly "xai/grok-code-fast-1": {
|
|
19189
19338
|
readonly maxTokens: 16384;
|
|
19190
19339
|
readonly contextWindow: 262144;
|
|
19191
19340
|
readonly supportsImages: false;
|
|
19192
19341
|
readonly supportsPromptCache: true;
|
|
19193
19342
|
readonly inputPrice: 0;
|
|
19194
19343
|
readonly outputPrice: 0;
|
|
19195
|
-
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.)";
|
|
19196
19345
|
};
|
|
19197
19346
|
};
|
|
19198
19347
|
|
|
@@ -19759,6 +19908,17 @@ declare const vscodeLlmModels: {
|
|
|
19759
19908
|
type XAIModelId = keyof typeof xaiModels;
|
|
19760
19909
|
declare const xaiDefaultModelId: XAIModelId;
|
|
19761
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
|
+
};
|
|
19762
19922
|
readonly "grok-4": {
|
|
19763
19923
|
readonly maxTokens: 8192;
|
|
19764
19924
|
readonly contextWindow: 256000;
|
|
@@ -19836,6 +19996,13 @@ declare const xaiModels: {
|
|
|
19836
19996
|
};
|
|
19837
19997
|
};
|
|
19838
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
|
+
|
|
19839
20006
|
type InternationalZAiModelId = keyof typeof internationalZAiModels;
|
|
19840
20007
|
declare const internationalZAiDefaultModelId: InternationalZAiModelId;
|
|
19841
20008
|
declare const internationalZAiModels: {
|
|
@@ -19922,4 +20089,4 @@ declare const mainlandZAiModels: {
|
|
|
19922
20089
|
};
|
|
19923
20090
|
declare const ZAI_DEFAULT_TEMPERATURE = 0;
|
|
19924
20091
|
|
|
19925
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FeatherlessModelId, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, type OpenAiNativeModelId, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS,
|
|
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 };
|