@roo-code/types 1.61.0 → 1.62.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 +11 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +294 -113
- package/dist/index.d.ts +294 -113
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1078,14 +1078,17 @@ declare const providerSettingsEntrySchema: z.ZodObject<{
|
|
|
1078
1078
|
id: z.ZodString;
|
|
1079
1079
|
name: z.ZodString;
|
|
1080
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
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
1081
1082
|
}, "strip", z.ZodTypeAny, {
|
|
1082
1083
|
name: string;
|
|
1083
1084
|
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" |
|
|
1085
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
1086
|
+
modelId?: string | undefined;
|
|
1085
1087
|
}, {
|
|
1086
1088
|
name: string;
|
|
1087
1089
|
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" |
|
|
1090
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
1091
|
+
modelId?: string | undefined;
|
|
1089
1092
|
}>;
|
|
1090
1093
|
type ProviderSettingsEntry = z.infer<typeof providerSettingsEntrySchema>;
|
|
1091
1094
|
/**
|
|
@@ -3198,6 +3201,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3198
3201
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3199
3202
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
3200
3203
|
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
3204
|
+
codebaseIndexVercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
3201
3205
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3202
3206
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3203
3207
|
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3425,7 +3429,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3425
3429
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3426
3430
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3427
3431
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3428
|
-
|
|
3432
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
3433
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
3429
3434
|
includeMaxTokens?: boolean | undefined;
|
|
3430
3435
|
diffEnabled?: boolean | undefined;
|
|
3431
3436
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3573,7 +3578,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3573
3578
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3574
3579
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3575
3580
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3576
|
-
|
|
3581
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
3582
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
3577
3583
|
includeMaxTokens?: boolean | undefined;
|
|
3578
3584
|
diffEnabled?: boolean | undefined;
|
|
3579
3585
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3722,6 +3728,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3722
3728
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3723
3729
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
3724
3730
|
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
3731
|
+
codebaseIndexVercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
3725
3732
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3726
3733
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3727
3734
|
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3951,8 +3958,9 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3951
3958
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3952
3959
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3953
3960
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3961
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
3954
3962
|
id?: string | 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" |
|
|
3963
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
3956
3964
|
includeMaxTokens?: boolean | undefined;
|
|
3957
3965
|
diffEnabled?: boolean | undefined;
|
|
3958
3966
|
todoListEnabled?: boolean | undefined;
|
|
@@ -4100,8 +4108,9 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4100
4108
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4101
4109
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
4102
4110
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
4111
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
4103
4112
|
id?: string | 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" |
|
|
4113
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
4105
4114
|
includeMaxTokens?: boolean | undefined;
|
|
4106
4115
|
diffEnabled?: boolean | undefined;
|
|
4107
4116
|
todoListEnabled?: boolean | undefined;
|
|
@@ -6343,7 +6352,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6343
6352
|
id?: string | undefined;
|
|
6344
6353
|
}>>;
|
|
6345
6354
|
type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
|
|
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"];
|
|
6355
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "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"];
|
|
6347
6356
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
6348
6357
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6349
6358
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
@@ -6378,14 +6387,17 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6378
6387
|
id: z.ZodString;
|
|
6379
6388
|
name: z.ZodString;
|
|
6380
6389
|
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"]>>;
|
|
6390
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
6381
6391
|
}, "strip", z.ZodTypeAny, {
|
|
6382
6392
|
name: string;
|
|
6383
6393
|
id: string;
|
|
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" |
|
|
6394
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
6395
|
+
modelId?: string | undefined;
|
|
6385
6396
|
}, {
|
|
6386
6397
|
name: string;
|
|
6387
6398
|
id: string;
|
|
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" |
|
|
6399
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
6400
|
+
modelId?: string | undefined;
|
|
6389
6401
|
}>, "many">>;
|
|
6390
6402
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6391
6403
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6550,6 +6562,13 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6550
6562
|
}, {
|
|
6551
6563
|
dimension: number;
|
|
6552
6564
|
}>>>;
|
|
6565
|
+
"vercel-ai-gateway": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6566
|
+
dimension: z.ZodNumber;
|
|
6567
|
+
}, "strip", z.ZodTypeAny, {
|
|
6568
|
+
dimension: number;
|
|
6569
|
+
}, {
|
|
6570
|
+
dimension: number;
|
|
6571
|
+
}>>>;
|
|
6553
6572
|
}, "strip", z.ZodTypeAny, {
|
|
6554
6573
|
openai?: Record<string, {
|
|
6555
6574
|
dimension: number;
|
|
@@ -6566,6 +6585,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6566
6585
|
mistral?: Record<string, {
|
|
6567
6586
|
dimension: number;
|
|
6568
6587
|
}> | undefined;
|
|
6588
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
6589
|
+
dimension: number;
|
|
6590
|
+
}> | undefined;
|
|
6569
6591
|
}, {
|
|
6570
6592
|
openai?: Record<string, {
|
|
6571
6593
|
dimension: number;
|
|
@@ -6582,11 +6604,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6582
6604
|
mistral?: Record<string, {
|
|
6583
6605
|
dimension: number;
|
|
6584
6606
|
}> | undefined;
|
|
6607
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
6608
|
+
dimension: number;
|
|
6609
|
+
}> | undefined;
|
|
6585
6610
|
}>>;
|
|
6586
6611
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
6587
6612
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6588
6613
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
6589
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
6614
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral", "vercel-ai-gateway"]>>;
|
|
6590
6615
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6591
6616
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
6592
6617
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6597,7 +6622,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6597
6622
|
}, "strip", z.ZodTypeAny, {
|
|
6598
6623
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6599
6624
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6600
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6625
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
6601
6626
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6602
6627
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6603
6628
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6608,7 +6633,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6608
6633
|
}, {
|
|
6609
6634
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6610
6635
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6611
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6636
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
6612
6637
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6613
6638
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6614
6639
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6721,7 +6746,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6721
6746
|
listApiConfigMeta?: {
|
|
6722
6747
|
name: string;
|
|
6723
6748
|
id: string;
|
|
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" |
|
|
6749
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
6750
|
+
modelId?: string | undefined;
|
|
6725
6751
|
}[] | undefined;
|
|
6726
6752
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6727
6753
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6820,11 +6846,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6820
6846
|
mistral?: Record<string, {
|
|
6821
6847
|
dimension: number;
|
|
6822
6848
|
}> | undefined;
|
|
6849
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
6850
|
+
dimension: number;
|
|
6851
|
+
}> | undefined;
|
|
6823
6852
|
} | undefined;
|
|
6824
6853
|
codebaseIndexConfig?: {
|
|
6825
6854
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6826
6855
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6827
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6856
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
6828
6857
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6829
6858
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6830
6859
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6876,7 +6905,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6876
6905
|
listApiConfigMeta?: {
|
|
6877
6906
|
name: string;
|
|
6878
6907
|
id: string;
|
|
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" |
|
|
6908
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
6909
|
+
modelId?: string | undefined;
|
|
6880
6910
|
}[] | undefined;
|
|
6881
6911
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6882
6912
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6975,11 +7005,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6975
7005
|
mistral?: Record<string, {
|
|
6976
7006
|
dimension: number;
|
|
6977
7007
|
}> | undefined;
|
|
7008
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
7009
|
+
dimension: number;
|
|
7010
|
+
}> | undefined;
|
|
6978
7011
|
} | undefined;
|
|
6979
7012
|
codebaseIndexConfig?: {
|
|
6980
7013
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6981
7014
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6982
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7015
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
6983
7016
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6984
7017
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6985
7018
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7021,6 +7054,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7021
7054
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
7022
7055
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
7023
7056
|
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
7057
|
+
codebaseIndexVercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
7024
7058
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
7025
7059
|
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7026
7060
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -7242,14 +7276,17 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7242
7276
|
id: z.ZodString;
|
|
7243
7277
|
name: z.ZodString;
|
|
7244
7278
|
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"]>>;
|
|
7279
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
7245
7280
|
}, "strip", z.ZodTypeAny, {
|
|
7246
7281
|
name: string;
|
|
7247
7282
|
id: string;
|
|
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" |
|
|
7283
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
7284
|
+
modelId?: string | undefined;
|
|
7249
7285
|
}, {
|
|
7250
7286
|
name: string;
|
|
7251
7287
|
id: string;
|
|
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" |
|
|
7288
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
7289
|
+
modelId?: string | undefined;
|
|
7253
7290
|
}>, "many">>;
|
|
7254
7291
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
7255
7292
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -7406,6 +7443,13 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7406
7443
|
}, {
|
|
7407
7444
|
dimension: number;
|
|
7408
7445
|
}>>>;
|
|
7446
|
+
"vercel-ai-gateway": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7447
|
+
dimension: z.ZodNumber;
|
|
7448
|
+
}, "strip", z.ZodTypeAny, {
|
|
7449
|
+
dimension: number;
|
|
7450
|
+
}, {
|
|
7451
|
+
dimension: number;
|
|
7452
|
+
}>>>;
|
|
7409
7453
|
}, "strip", z.ZodTypeAny, {
|
|
7410
7454
|
openai?: Record<string, {
|
|
7411
7455
|
dimension: number;
|
|
@@ -7422,6 +7466,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7422
7466
|
mistral?: Record<string, {
|
|
7423
7467
|
dimension: number;
|
|
7424
7468
|
}> | undefined;
|
|
7469
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
7470
|
+
dimension: number;
|
|
7471
|
+
}> | undefined;
|
|
7425
7472
|
}, {
|
|
7426
7473
|
openai?: Record<string, {
|
|
7427
7474
|
dimension: number;
|
|
@@ -7438,11 +7485,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7438
7485
|
mistral?: Record<string, {
|
|
7439
7486
|
dimension: number;
|
|
7440
7487
|
}> | undefined;
|
|
7488
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
7489
|
+
dimension: number;
|
|
7490
|
+
}> | undefined;
|
|
7441
7491
|
}>>;
|
|
7442
7492
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
7443
7493
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7444
7494
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
7445
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
7495
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral", "vercel-ai-gateway"]>>;
|
|
7446
7496
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7447
7497
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
7448
7498
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7453,7 +7503,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7453
7503
|
}, "strip", z.ZodTypeAny, {
|
|
7454
7504
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7455
7505
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7456
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7506
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
7457
7507
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7458
7508
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7459
7509
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7464,7 +7514,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7464
7514
|
}, {
|
|
7465
7515
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7466
7516
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7467
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7517
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
7468
7518
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7469
7519
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7470
7520
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7562,7 +7612,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7562
7612
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7563
7613
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7564
7614
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7565
|
-
|
|
7615
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
7616
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
7566
7617
|
includeMaxTokens?: boolean | undefined;
|
|
7567
7618
|
diffEnabled?: boolean | undefined;
|
|
7568
7619
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7721,7 +7772,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7721
7772
|
listApiConfigMeta?: {
|
|
7722
7773
|
name: string;
|
|
7723
7774
|
id: string;
|
|
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" |
|
|
7775
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
7776
|
+
modelId?: string | undefined;
|
|
7725
7777
|
}[] | undefined;
|
|
7726
7778
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7727
7779
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7820,11 +7872,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7820
7872
|
mistral?: Record<string, {
|
|
7821
7873
|
dimension: number;
|
|
7822
7874
|
}> | undefined;
|
|
7875
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
7876
|
+
dimension: number;
|
|
7877
|
+
}> | undefined;
|
|
7823
7878
|
} | undefined;
|
|
7824
7879
|
codebaseIndexConfig?: {
|
|
7825
7880
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7826
7881
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7827
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7882
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
7828
7883
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7829
7884
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7830
7885
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7861,7 +7916,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7861
7916
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7862
7917
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7863
7918
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7864
|
-
|
|
7919
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
7920
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
7865
7921
|
includeMaxTokens?: boolean | undefined;
|
|
7866
7922
|
diffEnabled?: boolean | undefined;
|
|
7867
7923
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8020,7 +8076,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8020
8076
|
listApiConfigMeta?: {
|
|
8021
8077
|
name: string;
|
|
8022
8078
|
id: string;
|
|
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" |
|
|
8079
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
8080
|
+
modelId?: string | undefined;
|
|
8024
8081
|
}[] | undefined;
|
|
8025
8082
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8026
8083
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8119,11 +8176,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
8119
8176
|
mistral?: Record<string, {
|
|
8120
8177
|
dimension: number;
|
|
8121
8178
|
}> | undefined;
|
|
8179
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
8180
|
+
dimension: number;
|
|
8181
|
+
}> | undefined;
|
|
8122
8182
|
} | undefined;
|
|
8123
8183
|
codebaseIndexConfig?: {
|
|
8124
8184
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8125
8185
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8126
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
8186
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
8127
8187
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8128
8188
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8129
8189
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -8156,7 +8216,7 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
8156
8216
|
/**
|
|
8157
8217
|
* SecretState
|
|
8158
8218
|
*/
|
|
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"];
|
|
8219
|
+
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", "codebaseIndexVercelAiGatewayApiKey", "huggingFaceApiKey", "sambaNovaApiKey", "zaiApiKey", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceApiKey", "vercelAiGatewayApiKey"];
|
|
8160
8220
|
type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
|
|
8161
8221
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
8162
8222
|
/**
|
|
@@ -8228,6 +8288,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8228
8288
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
8229
8289
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
8230
8290
|
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
8291
|
+
codebaseIndexVercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
8231
8292
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
8232
8293
|
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8233
8294
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -8449,14 +8510,17 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8449
8510
|
id: z.ZodString;
|
|
8450
8511
|
name: z.ZodString;
|
|
8451
8512
|
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"]>>;
|
|
8513
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
8452
8514
|
}, "strip", z.ZodTypeAny, {
|
|
8453
8515
|
name: string;
|
|
8454
8516
|
id: string;
|
|
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" |
|
|
8517
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
8518
|
+
modelId?: string | undefined;
|
|
8456
8519
|
}, {
|
|
8457
8520
|
name: string;
|
|
8458
8521
|
id: string;
|
|
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" |
|
|
8522
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
8523
|
+
modelId?: string | undefined;
|
|
8460
8524
|
}>, "many">>;
|
|
8461
8525
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8462
8526
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8613,6 +8677,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8613
8677
|
}, {
|
|
8614
8678
|
dimension: number;
|
|
8615
8679
|
}>>>;
|
|
8680
|
+
"vercel-ai-gateway": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8681
|
+
dimension: z.ZodNumber;
|
|
8682
|
+
}, "strip", z.ZodTypeAny, {
|
|
8683
|
+
dimension: number;
|
|
8684
|
+
}, {
|
|
8685
|
+
dimension: number;
|
|
8686
|
+
}>>>;
|
|
8616
8687
|
}, "strip", z.ZodTypeAny, {
|
|
8617
8688
|
openai?: Record<string, {
|
|
8618
8689
|
dimension: number;
|
|
@@ -8629,6 +8700,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8629
8700
|
mistral?: Record<string, {
|
|
8630
8701
|
dimension: number;
|
|
8631
8702
|
}> | undefined;
|
|
8703
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
8704
|
+
dimension: number;
|
|
8705
|
+
}> | undefined;
|
|
8632
8706
|
}, {
|
|
8633
8707
|
openai?: Record<string, {
|
|
8634
8708
|
dimension: number;
|
|
@@ -8645,11 +8719,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8645
8719
|
mistral?: Record<string, {
|
|
8646
8720
|
dimension: number;
|
|
8647
8721
|
}> | undefined;
|
|
8722
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
8723
|
+
dimension: number;
|
|
8724
|
+
}> | undefined;
|
|
8648
8725
|
}>>;
|
|
8649
8726
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
8650
8727
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8651
8728
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
8652
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
8729
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral", "vercel-ai-gateway"]>>;
|
|
8653
8730
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8654
8731
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
8655
8732
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8660,7 +8737,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8660
8737
|
}, "strip", z.ZodTypeAny, {
|
|
8661
8738
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8662
8739
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8663
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
8740
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
8664
8741
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8665
8742
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8666
8743
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -8671,7 +8748,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8671
8748
|
}, {
|
|
8672
8749
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8673
8750
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8674
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
8751
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
8675
8752
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8676
8753
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8677
8754
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -8769,7 +8846,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8769
8846
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8770
8847
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8771
8848
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
8772
|
-
|
|
8849
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
8850
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
8773
8851
|
includeMaxTokens?: boolean | undefined;
|
|
8774
8852
|
diffEnabled?: boolean | undefined;
|
|
8775
8853
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8928,7 +9006,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8928
9006
|
listApiConfigMeta?: {
|
|
8929
9007
|
name: string;
|
|
8930
9008
|
id: string;
|
|
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" |
|
|
9009
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9010
|
+
modelId?: string | undefined;
|
|
8932
9011
|
}[] | undefined;
|
|
8933
9012
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8934
9013
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9027,11 +9106,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9027
9106
|
mistral?: Record<string, {
|
|
9028
9107
|
dimension: number;
|
|
9029
9108
|
}> | undefined;
|
|
9109
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
9110
|
+
dimension: number;
|
|
9111
|
+
}> | undefined;
|
|
9030
9112
|
} | undefined;
|
|
9031
9113
|
codebaseIndexConfig?: {
|
|
9032
9114
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9033
9115
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9034
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9116
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
9035
9117
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9036
9118
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9037
9119
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9068,7 +9150,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9068
9150
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9069
9151
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9070
9152
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9071
|
-
|
|
9153
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
9154
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9072
9155
|
includeMaxTokens?: boolean | undefined;
|
|
9073
9156
|
diffEnabled?: boolean | undefined;
|
|
9074
9157
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9227,7 +9310,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9227
9310
|
listApiConfigMeta?: {
|
|
9228
9311
|
name: string;
|
|
9229
9312
|
id: string;
|
|
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" |
|
|
9313
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9314
|
+
modelId?: string | undefined;
|
|
9231
9315
|
}[] | undefined;
|
|
9232
9316
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9233
9317
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9326,11 +9410,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9326
9410
|
mistral?: Record<string, {
|
|
9327
9411
|
dimension: number;
|
|
9328
9412
|
}> | undefined;
|
|
9413
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
9414
|
+
dimension: number;
|
|
9415
|
+
}> | undefined;
|
|
9329
9416
|
} | undefined;
|
|
9330
9417
|
codebaseIndexConfig?: {
|
|
9331
9418
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9332
9419
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9333
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9420
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
9334
9421
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9335
9422
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9336
9423
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9373,7 +9460,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9373
9460
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9374
9461
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9375
9462
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9376
|
-
|
|
9463
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
9464
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9377
9465
|
includeMaxTokens?: boolean | undefined;
|
|
9378
9466
|
diffEnabled?: boolean | undefined;
|
|
9379
9467
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9532,7 +9620,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9532
9620
|
listApiConfigMeta?: {
|
|
9533
9621
|
name: string;
|
|
9534
9622
|
id: string;
|
|
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" |
|
|
9623
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9624
|
+
modelId?: string | undefined;
|
|
9536
9625
|
}[] | undefined;
|
|
9537
9626
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9538
9627
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9631,11 +9720,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9631
9720
|
mistral?: Record<string, {
|
|
9632
9721
|
dimension: number;
|
|
9633
9722
|
}> | undefined;
|
|
9723
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
9724
|
+
dimension: number;
|
|
9725
|
+
}> | undefined;
|
|
9634
9726
|
} | undefined;
|
|
9635
9727
|
codebaseIndexConfig?: {
|
|
9636
9728
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9637
9729
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9638
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9730
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
9639
9731
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9640
9732
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9641
9733
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9677,7 +9769,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9677
9769
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9678
9770
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9679
9771
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9680
|
-
|
|
9772
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
9773
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9681
9774
|
includeMaxTokens?: boolean | undefined;
|
|
9682
9775
|
diffEnabled?: boolean | undefined;
|
|
9683
9776
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9836,7 +9929,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9836
9929
|
listApiConfigMeta?: {
|
|
9837
9930
|
name: string;
|
|
9838
9931
|
id: string;
|
|
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" |
|
|
9932
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9933
|
+
modelId?: string | undefined;
|
|
9840
9934
|
}[] | undefined;
|
|
9841
9935
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9842
9936
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9935,11 +10029,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9935
10029
|
mistral?: Record<string, {
|
|
9936
10030
|
dimension: number;
|
|
9937
10031
|
}> | undefined;
|
|
10032
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
10033
|
+
dimension: number;
|
|
10034
|
+
}> | undefined;
|
|
9938
10035
|
} | undefined;
|
|
9939
10036
|
codebaseIndexConfig?: {
|
|
9940
10037
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9941
10038
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9942
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10039
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
9943
10040
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9944
10041
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9945
10042
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9984,7 +10081,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9984
10081
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9985
10082
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9986
10083
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9987
|
-
|
|
10084
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
10085
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
9988
10086
|
includeMaxTokens?: boolean | undefined;
|
|
9989
10087
|
diffEnabled?: boolean | undefined;
|
|
9990
10088
|
todoListEnabled?: boolean | undefined;
|
|
@@ -10143,7 +10241,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10143
10241
|
listApiConfigMeta?: {
|
|
10144
10242
|
name: string;
|
|
10145
10243
|
id: string;
|
|
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" |
|
|
10244
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
10245
|
+
modelId?: string | undefined;
|
|
10147
10246
|
}[] | undefined;
|
|
10148
10247
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10149
10248
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10242,11 +10341,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10242
10341
|
mistral?: Record<string, {
|
|
10243
10342
|
dimension: number;
|
|
10244
10343
|
}> | undefined;
|
|
10344
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
10345
|
+
dimension: number;
|
|
10346
|
+
}> | undefined;
|
|
10245
10347
|
} | undefined;
|
|
10246
10348
|
codebaseIndexConfig?: {
|
|
10247
10349
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10248
10350
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10249
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10351
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
10250
10352
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10251
10353
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10252
10354
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10291,7 +10393,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10291
10393
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10292
10394
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10293
10395
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
10294
|
-
|
|
10396
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
10397
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
10295
10398
|
includeMaxTokens?: boolean | undefined;
|
|
10296
10399
|
diffEnabled?: boolean | undefined;
|
|
10297
10400
|
todoListEnabled?: boolean | undefined;
|
|
@@ -10450,7 +10553,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10450
10553
|
listApiConfigMeta?: {
|
|
10451
10554
|
name: string;
|
|
10452
10555
|
id: string;
|
|
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" |
|
|
10556
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
10557
|
+
modelId?: string | undefined;
|
|
10454
10558
|
}[] | undefined;
|
|
10455
10559
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10456
10560
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10549,11 +10653,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10549
10653
|
mistral?: Record<string, {
|
|
10550
10654
|
dimension: number;
|
|
10551
10655
|
}> | undefined;
|
|
10656
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
10657
|
+
dimension: number;
|
|
10658
|
+
}> | undefined;
|
|
10552
10659
|
} | undefined;
|
|
10553
10660
|
codebaseIndexConfig?: {
|
|
10554
10661
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10555
10662
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10556
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10663
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
10557
10664
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10558
10665
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10559
10666
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10664,6 +10771,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10664
10771
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
10665
10772
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
10666
10773
|
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
10774
|
+
codebaseIndexVercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
10667
10775
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
10668
10776
|
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10669
10777
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -10885,14 +10993,17 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10885
10993
|
id: z.ZodString;
|
|
10886
10994
|
name: z.ZodString;
|
|
10887
10995
|
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"]>>;
|
|
10996
|
+
modelId: z.ZodOptional<z.ZodString>;
|
|
10888
10997
|
}, "strip", z.ZodTypeAny, {
|
|
10889
10998
|
name: string;
|
|
10890
10999
|
id: string;
|
|
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" |
|
|
11000
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
11001
|
+
modelId?: string | undefined;
|
|
10892
11002
|
}, {
|
|
10893
11003
|
name: string;
|
|
10894
11004
|
id: string;
|
|
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" |
|
|
11005
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
11006
|
+
modelId?: string | undefined;
|
|
10896
11007
|
}>, "many">>;
|
|
10897
11008
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
10898
11009
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -11049,6 +11160,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11049
11160
|
}, {
|
|
11050
11161
|
dimension: number;
|
|
11051
11162
|
}>>>;
|
|
11163
|
+
"vercel-ai-gateway": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11164
|
+
dimension: z.ZodNumber;
|
|
11165
|
+
}, "strip", z.ZodTypeAny, {
|
|
11166
|
+
dimension: number;
|
|
11167
|
+
}, {
|
|
11168
|
+
dimension: number;
|
|
11169
|
+
}>>>;
|
|
11052
11170
|
}, "strip", z.ZodTypeAny, {
|
|
11053
11171
|
openai?: Record<string, {
|
|
11054
11172
|
dimension: number;
|
|
@@ -11065,6 +11183,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11065
11183
|
mistral?: Record<string, {
|
|
11066
11184
|
dimension: number;
|
|
11067
11185
|
}> | undefined;
|
|
11186
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
11187
|
+
dimension: number;
|
|
11188
|
+
}> | undefined;
|
|
11068
11189
|
}, {
|
|
11069
11190
|
openai?: Record<string, {
|
|
11070
11191
|
dimension: number;
|
|
@@ -11081,11 +11202,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11081
11202
|
mistral?: Record<string, {
|
|
11082
11203
|
dimension: number;
|
|
11083
11204
|
}> | undefined;
|
|
11205
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
11206
|
+
dimension: number;
|
|
11207
|
+
}> | undefined;
|
|
11084
11208
|
}>>;
|
|
11085
11209
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
11086
11210
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
11087
11211
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
11088
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
11212
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral", "vercel-ai-gateway"]>>;
|
|
11089
11213
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11090
11214
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
11091
11215
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -11096,7 +11220,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11096
11220
|
}, "strip", z.ZodTypeAny, {
|
|
11097
11221
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11098
11222
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11099
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
11223
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
11100
11224
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11101
11225
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11102
11226
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -11107,7 +11231,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11107
11231
|
}, {
|
|
11108
11232
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11109
11233
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11110
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
11234
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
11111
11235
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11112
11236
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11113
11237
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -11205,7 +11329,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11205
11329
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11206
11330
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11207
11331
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11208
|
-
|
|
11332
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
11333
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
11209
11334
|
includeMaxTokens?: boolean | undefined;
|
|
11210
11335
|
diffEnabled?: boolean | undefined;
|
|
11211
11336
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11364,7 +11489,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11364
11489
|
listApiConfigMeta?: {
|
|
11365
11490
|
name: string;
|
|
11366
11491
|
id: string;
|
|
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" |
|
|
11492
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
11493
|
+
modelId?: string | undefined;
|
|
11368
11494
|
}[] | undefined;
|
|
11369
11495
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11370
11496
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11463,11 +11589,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11463
11589
|
mistral?: Record<string, {
|
|
11464
11590
|
dimension: number;
|
|
11465
11591
|
}> | undefined;
|
|
11592
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
11593
|
+
dimension: number;
|
|
11594
|
+
}> | undefined;
|
|
11466
11595
|
} | undefined;
|
|
11467
11596
|
codebaseIndexConfig?: {
|
|
11468
11597
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11469
11598
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11470
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
11599
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
11471
11600
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11472
11601
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11473
11602
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -11504,7 +11633,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11504
11633
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11505
11634
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11506
11635
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11507
|
-
|
|
11636
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
11637
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
11508
11638
|
includeMaxTokens?: boolean | undefined;
|
|
11509
11639
|
diffEnabled?: boolean | undefined;
|
|
11510
11640
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11663,7 +11793,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11663
11793
|
listApiConfigMeta?: {
|
|
11664
11794
|
name: string;
|
|
11665
11795
|
id: string;
|
|
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" |
|
|
11796
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
11797
|
+
modelId?: string | undefined;
|
|
11667
11798
|
}[] | undefined;
|
|
11668
11799
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11669
11800
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11762,11 +11893,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11762
11893
|
mistral?: Record<string, {
|
|
11763
11894
|
dimension: number;
|
|
11764
11895
|
}> | undefined;
|
|
11896
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
11897
|
+
dimension: number;
|
|
11898
|
+
}> | undefined;
|
|
11765
11899
|
} | undefined;
|
|
11766
11900
|
codebaseIndexConfig?: {
|
|
11767
11901
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11768
11902
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11769
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
11903
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
11770
11904
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11771
11905
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11772
11906
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -11809,7 +11943,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11809
11943
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11810
11944
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11811
11945
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11812
|
-
|
|
11946
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
11947
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
11813
11948
|
includeMaxTokens?: boolean | undefined;
|
|
11814
11949
|
diffEnabled?: boolean | undefined;
|
|
11815
11950
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11968,7 +12103,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11968
12103
|
listApiConfigMeta?: {
|
|
11969
12104
|
name: string;
|
|
11970
12105
|
id: string;
|
|
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" |
|
|
12106
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
12107
|
+
modelId?: string | undefined;
|
|
11972
12108
|
}[] | undefined;
|
|
11973
12109
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11974
12110
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12067,11 +12203,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12067
12203
|
mistral?: Record<string, {
|
|
12068
12204
|
dimension: number;
|
|
12069
12205
|
}> | undefined;
|
|
12206
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
12207
|
+
dimension: number;
|
|
12208
|
+
}> | undefined;
|
|
12070
12209
|
} | undefined;
|
|
12071
12210
|
codebaseIndexConfig?: {
|
|
12072
12211
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12073
12212
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12074
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
12213
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
12075
12214
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12076
12215
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12077
12216
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12113,7 +12252,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12113
12252
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12114
12253
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12115
12254
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12116
|
-
|
|
12255
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
12256
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
12117
12257
|
includeMaxTokens?: boolean | undefined;
|
|
12118
12258
|
diffEnabled?: boolean | undefined;
|
|
12119
12259
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12272,7 +12412,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12272
12412
|
listApiConfigMeta?: {
|
|
12273
12413
|
name: string;
|
|
12274
12414
|
id: string;
|
|
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" |
|
|
12415
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
12416
|
+
modelId?: string | undefined;
|
|
12276
12417
|
}[] | undefined;
|
|
12277
12418
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12278
12419
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12371,11 +12512,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12371
12512
|
mistral?: Record<string, {
|
|
12372
12513
|
dimension: number;
|
|
12373
12514
|
}> | undefined;
|
|
12515
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
12516
|
+
dimension: number;
|
|
12517
|
+
}> | undefined;
|
|
12374
12518
|
} | undefined;
|
|
12375
12519
|
codebaseIndexConfig?: {
|
|
12376
12520
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12377
12521
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12378
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
12522
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
12379
12523
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12380
12524
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12381
12525
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12420,7 +12564,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12420
12564
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12421
12565
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12422
12566
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12423
|
-
|
|
12567
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
12568
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
12424
12569
|
includeMaxTokens?: boolean | undefined;
|
|
12425
12570
|
diffEnabled?: boolean | undefined;
|
|
12426
12571
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12579,7 +12724,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12579
12724
|
listApiConfigMeta?: {
|
|
12580
12725
|
name: string;
|
|
12581
12726
|
id: string;
|
|
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" |
|
|
12727
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
12728
|
+
modelId?: string | undefined;
|
|
12583
12729
|
}[] | undefined;
|
|
12584
12730
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12585
12731
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12678,11 +12824,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12678
12824
|
mistral?: Record<string, {
|
|
12679
12825
|
dimension: number;
|
|
12680
12826
|
}> | undefined;
|
|
12827
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
12828
|
+
dimension: number;
|
|
12829
|
+
}> | undefined;
|
|
12681
12830
|
} | undefined;
|
|
12682
12831
|
codebaseIndexConfig?: {
|
|
12683
12832
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12684
12833
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12685
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
12834
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
12686
12835
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12687
12836
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12688
12837
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12727,7 +12876,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12727
12876
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12728
12877
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12729
12878
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12730
|
-
|
|
12879
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
12880
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
12731
12881
|
includeMaxTokens?: boolean | undefined;
|
|
12732
12882
|
diffEnabled?: boolean | undefined;
|
|
12733
12883
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12886,7 +13036,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12886
13036
|
listApiConfigMeta?: {
|
|
12887
13037
|
name: string;
|
|
12888
13038
|
id: string;
|
|
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" |
|
|
13039
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
13040
|
+
modelId?: string | undefined;
|
|
12890
13041
|
}[] | undefined;
|
|
12891
13042
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12892
13043
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12985,11 +13136,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12985
13136
|
mistral?: Record<string, {
|
|
12986
13137
|
dimension: number;
|
|
12987
13138
|
}> | undefined;
|
|
13139
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
13140
|
+
dimension: number;
|
|
13141
|
+
}> | undefined;
|
|
12988
13142
|
} | undefined;
|
|
12989
13143
|
codebaseIndexConfig?: {
|
|
12990
13144
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12991
13145
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12992
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
13146
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
12993
13147
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12994
13148
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12995
13149
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -13065,7 +13219,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13065
13219
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
13066
13220
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
13067
13221
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
13068
|
-
|
|
13222
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
13223
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
13069
13224
|
includeMaxTokens?: boolean | undefined;
|
|
13070
13225
|
diffEnabled?: boolean | undefined;
|
|
13071
13226
|
todoListEnabled?: boolean | undefined;
|
|
@@ -13224,7 +13379,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13224
13379
|
listApiConfigMeta?: {
|
|
13225
13380
|
name: string;
|
|
13226
13381
|
id: string;
|
|
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" |
|
|
13382
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
13383
|
+
modelId?: string | undefined;
|
|
13228
13384
|
}[] | undefined;
|
|
13229
13385
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
13230
13386
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -13323,11 +13479,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13323
13479
|
mistral?: Record<string, {
|
|
13324
13480
|
dimension: number;
|
|
13325
13481
|
}> | undefined;
|
|
13482
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
13483
|
+
dimension: number;
|
|
13484
|
+
}> | undefined;
|
|
13326
13485
|
} | undefined;
|
|
13327
13486
|
codebaseIndexConfig?: {
|
|
13328
13487
|
codebaseIndexEnabled?: boolean | undefined;
|
|
13329
13488
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
13330
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
13489
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
13331
13490
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
13332
13491
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
13333
13492
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -13386,7 +13545,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13386
13545
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
13387
13546
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
13388
13547
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
13389
|
-
|
|
13548
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
13549
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
13390
13550
|
includeMaxTokens?: boolean | undefined;
|
|
13391
13551
|
diffEnabled?: boolean | undefined;
|
|
13392
13552
|
todoListEnabled?: boolean | undefined;
|
|
@@ -13545,7 +13705,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13545
13705
|
listApiConfigMeta?: {
|
|
13546
13706
|
name: string;
|
|
13547
13707
|
id: string;
|
|
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" |
|
|
13708
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
13709
|
+
modelId?: string | undefined;
|
|
13549
13710
|
}[] | undefined;
|
|
13550
13711
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
13551
13712
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -13644,11 +13805,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13644
13805
|
mistral?: Record<string, {
|
|
13645
13806
|
dimension: number;
|
|
13646
13807
|
}> | undefined;
|
|
13808
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
13809
|
+
dimension: number;
|
|
13810
|
+
}> | undefined;
|
|
13647
13811
|
} | undefined;
|
|
13648
13812
|
codebaseIndexConfig?: {
|
|
13649
13813
|
codebaseIndexEnabled?: boolean | undefined;
|
|
13650
13814
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
13651
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
13815
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
13652
13816
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
13653
13817
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
13654
13818
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -14744,7 +14908,7 @@ declare const CODEBASE_INDEX_DEFAULTS: {
|
|
|
14744
14908
|
declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
14745
14909
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
14746
14910
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
14747
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
14911
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral", "vercel-ai-gateway"]>>;
|
|
14748
14912
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
14749
14913
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
14750
14914
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -14755,7 +14919,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
|
14755
14919
|
}, "strip", z.ZodTypeAny, {
|
|
14756
14920
|
codebaseIndexEnabled?: boolean | undefined;
|
|
14757
14921
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
14758
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
14922
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
14759
14923
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
14760
14924
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
14761
14925
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -14766,7 +14930,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
|
14766
14930
|
}, {
|
|
14767
14931
|
codebaseIndexEnabled?: boolean | undefined;
|
|
14768
14932
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
14769
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
14933
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | undefined;
|
|
14770
14934
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
14771
14935
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
14772
14936
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -14815,6 +14979,13 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
14815
14979
|
}, {
|
|
14816
14980
|
dimension: number;
|
|
14817
14981
|
}>>>;
|
|
14982
|
+
"vercel-ai-gateway": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14983
|
+
dimension: z.ZodNumber;
|
|
14984
|
+
}, "strip", z.ZodTypeAny, {
|
|
14985
|
+
dimension: number;
|
|
14986
|
+
}, {
|
|
14987
|
+
dimension: number;
|
|
14988
|
+
}>>>;
|
|
14818
14989
|
}, "strip", z.ZodTypeAny, {
|
|
14819
14990
|
openai?: Record<string, {
|
|
14820
14991
|
dimension: number;
|
|
@@ -14831,6 +15002,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
14831
15002
|
mistral?: Record<string, {
|
|
14832
15003
|
dimension: number;
|
|
14833
15004
|
}> | undefined;
|
|
15005
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
15006
|
+
dimension: number;
|
|
15007
|
+
}> | undefined;
|
|
14834
15008
|
}, {
|
|
14835
15009
|
openai?: Record<string, {
|
|
14836
15010
|
dimension: number;
|
|
@@ -14847,6 +15021,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
14847
15021
|
mistral?: Record<string, {
|
|
14848
15022
|
dimension: number;
|
|
14849
15023
|
}> | undefined;
|
|
15024
|
+
"vercel-ai-gateway"?: Record<string, {
|
|
15025
|
+
dimension: number;
|
|
15026
|
+
}> | undefined;
|
|
14850
15027
|
}>;
|
|
14851
15028
|
type CodebaseIndexModels = z.infer<typeof codebaseIndexModelsSchema>;
|
|
14852
15029
|
/**
|
|
@@ -14860,6 +15037,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
14860
15037
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
14861
15038
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
14862
15039
|
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
15040
|
+
codebaseIndexVercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
|
|
14863
15041
|
}, "strip", z.ZodTypeAny, {
|
|
14864
15042
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
14865
15043
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
@@ -14868,6 +15046,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
14868
15046
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
14869
15047
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
14870
15048
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
15049
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
14871
15050
|
}, {
|
|
14872
15051
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
14873
15052
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
@@ -14876,6 +15055,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
14876
15055
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
14877
15056
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
14878
15057
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
15058
|
+
codebaseIndexVercelAiGatewayApiKey?: string | undefined;
|
|
14879
15059
|
}>;
|
|
14880
15060
|
type CodebaseIndexProvider = z.infer<typeof codebaseIndexProviderSchema>;
|
|
14881
15061
|
|
|
@@ -16308,7 +16488,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16308
16488
|
}, "strip", z.ZodTypeAny, {
|
|
16309
16489
|
isSubtask?: boolean | undefined;
|
|
16310
16490
|
taskId?: string | 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" |
|
|
16491
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16312
16492
|
modelId?: string | undefined;
|
|
16313
16493
|
diffStrategy?: string | undefined;
|
|
16314
16494
|
todos?: {
|
|
@@ -16320,7 +16500,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
16320
16500
|
}, {
|
|
16321
16501
|
isSubtask?: boolean | undefined;
|
|
16322
16502
|
taskId?: string | 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" |
|
|
16503
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16324
16504
|
modelId?: string | undefined;
|
|
16325
16505
|
diffStrategy?: string | undefined;
|
|
16326
16506
|
todos?: {
|
|
@@ -16388,9 +16568,9 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16388
16568
|
language: string;
|
|
16389
16569
|
isSubtask?: boolean | undefined;
|
|
16390
16570
|
taskId?: string | 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" |
|
|
16392
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
16571
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16393
16572
|
modelId?: string | undefined;
|
|
16573
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16394
16574
|
diffStrategy?: string | undefined;
|
|
16395
16575
|
todos?: {
|
|
16396
16576
|
total: number;
|
|
@@ -16411,9 +16591,9 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16411
16591
|
language: string;
|
|
16412
16592
|
isSubtask?: boolean | undefined;
|
|
16413
16593
|
taskId?: string | 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" |
|
|
16415
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
16594
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16416
16595
|
modelId?: string | undefined;
|
|
16596
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16417
16597
|
diffStrategy?: string | undefined;
|
|
16418
16598
|
todos?: {
|
|
16419
16599
|
total: number;
|
|
@@ -16481,9 +16661,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16481
16661
|
language: string;
|
|
16482
16662
|
isSubtask?: boolean | undefined;
|
|
16483
16663
|
taskId?: string | 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" |
|
|
16485
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
16664
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16486
16665
|
modelId?: string | undefined;
|
|
16666
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16487
16667
|
diffStrategy?: string | undefined;
|
|
16488
16668
|
todos?: {
|
|
16489
16669
|
total: number;
|
|
@@ -16504,9 +16684,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16504
16684
|
language: string;
|
|
16505
16685
|
isSubtask?: boolean | undefined;
|
|
16506
16686
|
taskId?: string | 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" |
|
|
16508
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
16687
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16509
16688
|
modelId?: string | undefined;
|
|
16689
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16510
16690
|
diffStrategy?: string | undefined;
|
|
16511
16691
|
todos?: {
|
|
16512
16692
|
total: number;
|
|
@@ -16530,9 +16710,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16530
16710
|
language: string;
|
|
16531
16711
|
isSubtask?: boolean | undefined;
|
|
16532
16712
|
taskId?: string | 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" |
|
|
16534
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
16713
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16535
16714
|
modelId?: string | undefined;
|
|
16715
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16536
16716
|
diffStrategy?: string | undefined;
|
|
16537
16717
|
todos?: {
|
|
16538
16718
|
total: number;
|
|
@@ -16556,9 +16736,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16556
16736
|
language: string;
|
|
16557
16737
|
isSubtask?: boolean | undefined;
|
|
16558
16738
|
taskId?: string | 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" |
|
|
16560
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
16739
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16561
16740
|
modelId?: string | undefined;
|
|
16741
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16562
16742
|
diffStrategy?: string | undefined;
|
|
16563
16743
|
todos?: {
|
|
16564
16744
|
total: number;
|
|
@@ -16773,9 +16953,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16773
16953
|
editorName: string;
|
|
16774
16954
|
language: string;
|
|
16775
16955
|
isSubtask?: boolean | 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" |
|
|
16777
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
16956
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16778
16957
|
modelId?: string | undefined;
|
|
16958
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16779
16959
|
diffStrategy?: string | undefined;
|
|
16780
16960
|
todos?: {
|
|
16781
16961
|
total: number;
|
|
@@ -16827,9 +17007,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16827
17007
|
editorName: string;
|
|
16828
17008
|
language: string;
|
|
16829
17009
|
isSubtask?: boolean | 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" |
|
|
16831
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
17010
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16832
17011
|
modelId?: string | undefined;
|
|
17012
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16833
17013
|
diffStrategy?: string | undefined;
|
|
16834
17014
|
todos?: {
|
|
16835
17015
|
total: number;
|
|
@@ -16884,9 +17064,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16884
17064
|
editorName: string;
|
|
16885
17065
|
language: string;
|
|
16886
17066
|
isSubtask?: boolean | 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" |
|
|
16888
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
17067
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16889
17068
|
modelId?: string | undefined;
|
|
17069
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16890
17070
|
diffStrategy?: string | undefined;
|
|
16891
17071
|
todos?: {
|
|
16892
17072
|
total: number;
|
|
@@ -16941,9 +17121,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16941
17121
|
editorName: string;
|
|
16942
17122
|
language: string;
|
|
16943
17123
|
isSubtask?: boolean | 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" |
|
|
16945
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
17124
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
16946
17125
|
modelId?: string | undefined;
|
|
17126
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
16947
17127
|
diffStrategy?: string | undefined;
|
|
16948
17128
|
todos?: {
|
|
16949
17129
|
total: number;
|
|
@@ -17008,9 +17188,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
17008
17188
|
cost?: number | undefined;
|
|
17009
17189
|
isSubtask?: boolean | undefined;
|
|
17010
17190
|
taskId?: string | 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" |
|
|
17012
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
17191
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
17013
17192
|
modelId?: string | undefined;
|
|
17193
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
17014
17194
|
diffStrategy?: string | undefined;
|
|
17015
17195
|
todos?: {
|
|
17016
17196
|
total: number;
|
|
@@ -17036,9 +17216,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
17036
17216
|
cost?: number | undefined;
|
|
17037
17217
|
isSubtask?: boolean | undefined;
|
|
17038
17218
|
taskId?: string | 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" |
|
|
17040
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
17219
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
17041
17220
|
modelId?: string | undefined;
|
|
17221
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
17042
17222
|
diffStrategy?: string | undefined;
|
|
17043
17223
|
todos?: {
|
|
17044
17224
|
total: number;
|
|
@@ -17067,9 +17247,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
17067
17247
|
cost?: number | undefined;
|
|
17068
17248
|
isSubtask?: boolean | undefined;
|
|
17069
17249
|
taskId?: string | 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" |
|
|
17071
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
17250
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
17072
17251
|
modelId?: string | undefined;
|
|
17252
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
17073
17253
|
diffStrategy?: string | undefined;
|
|
17074
17254
|
todos?: {
|
|
17075
17255
|
total: number;
|
|
@@ -17098,9 +17278,9 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
17098
17278
|
cost?: number | undefined;
|
|
17099
17279
|
isSubtask?: boolean | undefined;
|
|
17100
17280
|
taskId?: string | 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" |
|
|
17102
|
-
cloudIsAuthenticated?: boolean | undefined;
|
|
17281
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "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;
|
|
17103
17282
|
modelId?: string | undefined;
|
|
17283
|
+
cloudIsAuthenticated?: boolean | undefined;
|
|
17104
17284
|
diffStrategy?: string | undefined;
|
|
17105
17285
|
todos?: {
|
|
17106
17286
|
total: number;
|
|
@@ -17179,6 +17359,7 @@ type TaskProviderEvents = {
|
|
|
17179
17359
|
[RooCodeEventName.TaskInteractive]: [taskId: string];
|
|
17180
17360
|
[RooCodeEventName.TaskResumable]: [taskId: string];
|
|
17181
17361
|
[RooCodeEventName.TaskIdle]: [taskId: string];
|
|
17362
|
+
[RooCodeEventName.TaskSpawned]: [taskId: string];
|
|
17182
17363
|
};
|
|
17183
17364
|
/**
|
|
17184
17365
|
* TaskLike
|