@roo-code/types 1.99.0 → 1.102.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.d.ts CHANGED
@@ -1234,12 +1234,12 @@ declare const providerSettingsEntrySchema: z.ZodObject<{
1234
1234
  }, "strip", z.ZodTypeAny, {
1235
1235
  id: string;
1236
1236
  name: string;
1237
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
1237
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
1238
1238
  modelId?: string | undefined;
1239
1239
  }, {
1240
1240
  id: string;
1241
1241
  name: string;
1242
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
1242
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
1243
1243
  modelId?: string | undefined;
1244
1244
  }>;
1245
1245
  type ProviderSettingsEntry = z.infer<typeof providerSettingsEntrySchema>;
@@ -1608,7 +1608,6 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1608
1608
  } & {
1609
1609
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
1610
1610
  openAiApiKey: z.ZodOptional<z.ZodString>;
1611
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
1612
1611
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
1613
1612
  openAiModelId: z.ZodOptional<z.ZodString>;
1614
1613
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -1773,7 +1772,6 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1773
1772
  toolProtocol?: "xml" | "native" | undefined;
1774
1773
  openAiBaseUrl?: string | undefined;
1775
1774
  openAiApiKey?: string | undefined;
1776
- openAiLegacyFormat?: boolean | undefined;
1777
1775
  openAiR1FormatEnabled?: boolean | undefined;
1778
1776
  openAiModelId?: string | undefined;
1779
1777
  openAiCustomModelInfo?: {
@@ -1840,7 +1838,6 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
1840
1838
  toolProtocol?: "xml" | "native" | undefined;
1841
1839
  openAiBaseUrl?: string | undefined;
1842
1840
  openAiApiKey?: string | undefined;
1843
- openAiLegacyFormat?: boolean | undefined;
1844
1841
  openAiR1FormatEnabled?: boolean | undefined;
1845
1842
  openAiModelId?: string | undefined;
1846
1843
  openAiCustomModelInfo?: {
@@ -3498,6 +3495,8 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
3498
3495
  toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
3499
3496
  } & {
3500
3497
  apiModelId: z.ZodOptional<z.ZodString>;
3498
+ } & {
3499
+ rooApiKey: z.ZodOptional<z.ZodString>;
3501
3500
  } & {
3502
3501
  apiProvider: z.ZodLiteral<"roo">;
3503
3502
  }, "strip", z.ZodTypeAny, {
@@ -3516,6 +3515,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
3516
3515
  verbosity?: "low" | "medium" | "high" | undefined;
3517
3516
  toolProtocol?: "xml" | "native" | undefined;
3518
3517
  apiModelId?: string | undefined;
3518
+ rooApiKey?: string | undefined;
3519
3519
  }, {
3520
3520
  apiProvider: "roo";
3521
3521
  reasoningEffort?: "low" | "medium" | "high" | "minimal" | "none" | "xhigh" | "disable" | undefined;
@@ -3532,6 +3532,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
3532
3532
  verbosity?: "low" | "medium" | "high" | undefined;
3533
3533
  toolProtocol?: "xml" | "native" | undefined;
3534
3534
  apiModelId?: string | undefined;
3535
+ rooApiKey?: string | undefined;
3535
3536
  }>, z.ZodObject<{
3536
3537
  includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
3537
3538
  diffEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -3618,6 +3619,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3618
3619
  vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
3619
3620
  vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
3620
3621
  apiModelId: z.ZodOptional<z.ZodString>;
3622
+ rooApiKey: z.ZodOptional<z.ZodString>;
3621
3623
  qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
3622
3624
  ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
3623
3625
  ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
@@ -3692,7 +3694,6 @@ declare const providerSettingsSchema: z.ZodObject<{
3692
3694
  ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
3693
3695
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
3694
3696
  openAiApiKey: z.ZodOptional<z.ZodString>;
3695
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
3696
3697
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
3697
3698
  openAiModelId: z.ZodOptional<z.ZodString>;
3698
3699
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -3880,7 +3881,7 @@ declare const providerSettingsSchema: z.ZodObject<{
3880
3881
  codebaseIndexMistralApiKey?: string | undefined;
3881
3882
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
3882
3883
  codebaseIndexOpenRouterApiKey?: string | undefined;
3883
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
3884
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
3884
3885
  includeMaxTokens?: boolean | undefined;
3885
3886
  diffEnabled?: boolean | undefined;
3886
3887
  todoListEnabled?: boolean | undefined;
@@ -3928,7 +3929,6 @@ declare const providerSettingsSchema: z.ZodObject<{
3928
3929
  vertex1MContext?: boolean | undefined;
3929
3930
  openAiBaseUrl?: string | undefined;
3930
3931
  openAiApiKey?: string | undefined;
3931
- openAiLegacyFormat?: boolean | undefined;
3932
3932
  openAiR1FormatEnabled?: boolean | undefined;
3933
3933
  openAiModelId?: string | undefined;
3934
3934
  openAiCustomModelInfo?: {
@@ -4037,6 +4037,7 @@ declare const providerSettingsSchema: z.ZodObject<{
4037
4037
  ioIntelligenceModelId?: string | undefined;
4038
4038
  ioIntelligenceApiKey?: string | undefined;
4039
4039
  qwenCodeOauthPath?: string | undefined;
4040
+ rooApiKey?: string | undefined;
4040
4041
  vercelAiGatewayApiKey?: string | undefined;
4041
4042
  vercelAiGatewayModelId?: string | undefined;
4042
4043
  basetenApiKey?: string | undefined;
@@ -4051,7 +4052,7 @@ declare const providerSettingsSchema: z.ZodObject<{
4051
4052
  codebaseIndexMistralApiKey?: string | undefined;
4052
4053
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
4053
4054
  codebaseIndexOpenRouterApiKey?: string | undefined;
4054
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
4055
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
4055
4056
  includeMaxTokens?: boolean | undefined;
4056
4057
  diffEnabled?: boolean | undefined;
4057
4058
  todoListEnabled?: boolean | undefined;
@@ -4099,7 +4100,6 @@ declare const providerSettingsSchema: z.ZodObject<{
4099
4100
  vertex1MContext?: boolean | undefined;
4100
4101
  openAiBaseUrl?: string | undefined;
4101
4102
  openAiApiKey?: string | undefined;
4102
- openAiLegacyFormat?: boolean | undefined;
4103
4103
  openAiR1FormatEnabled?: boolean | undefined;
4104
4104
  openAiModelId?: string | undefined;
4105
4105
  openAiCustomModelInfo?: {
@@ -4208,6 +4208,7 @@ declare const providerSettingsSchema: z.ZodObject<{
4208
4208
  ioIntelligenceModelId?: string | undefined;
4209
4209
  ioIntelligenceApiKey?: string | undefined;
4210
4210
  qwenCodeOauthPath?: string | undefined;
4211
+ rooApiKey?: string | undefined;
4211
4212
  vercelAiGatewayApiKey?: string | undefined;
4212
4213
  vercelAiGatewayModelId?: string | undefined;
4213
4214
  basetenApiKey?: string | undefined;
@@ -4239,6 +4240,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4239
4240
  vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
4240
4241
  vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
4241
4242
  apiModelId: z.ZodOptional<z.ZodString>;
4243
+ rooApiKey: z.ZodOptional<z.ZodString>;
4242
4244
  qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
4243
4245
  ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
4244
4246
  ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
@@ -4313,7 +4315,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4313
4315
  ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
4314
4316
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
4315
4317
  openAiApiKey: z.ZodOptional<z.ZodString>;
4316
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
4317
4318
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
4318
4319
  openAiModelId: z.ZodOptional<z.ZodString>;
4319
4320
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4504,7 +4505,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4504
4505
  codebaseIndexMistralApiKey?: string | undefined;
4505
4506
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
4506
4507
  codebaseIndexOpenRouterApiKey?: string | undefined;
4507
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
4508
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
4508
4509
  includeMaxTokens?: boolean | undefined;
4509
4510
  diffEnabled?: boolean | undefined;
4510
4511
  todoListEnabled?: boolean | undefined;
@@ -4552,7 +4553,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4552
4553
  vertex1MContext?: boolean | undefined;
4553
4554
  openAiBaseUrl?: string | undefined;
4554
4555
  openAiApiKey?: string | undefined;
4555
- openAiLegacyFormat?: boolean | undefined;
4556
4556
  openAiR1FormatEnabled?: boolean | undefined;
4557
4557
  openAiModelId?: string | undefined;
4558
4558
  openAiCustomModelInfo?: {
@@ -4661,6 +4661,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4661
4661
  ioIntelligenceModelId?: string | undefined;
4662
4662
  ioIntelligenceApiKey?: string | undefined;
4663
4663
  qwenCodeOauthPath?: string | undefined;
4664
+ rooApiKey?: string | undefined;
4664
4665
  vercelAiGatewayApiKey?: string | undefined;
4665
4666
  vercelAiGatewayModelId?: string | undefined;
4666
4667
  basetenApiKey?: string | undefined;
@@ -4676,7 +4677,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4676
4677
  codebaseIndexMistralApiKey?: string | undefined;
4677
4678
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
4678
4679
  codebaseIndexOpenRouterApiKey?: string | undefined;
4679
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
4680
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
4680
4681
  includeMaxTokens?: boolean | undefined;
4681
4682
  diffEnabled?: boolean | undefined;
4682
4683
  todoListEnabled?: boolean | undefined;
@@ -4724,7 +4725,6 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4724
4725
  vertex1MContext?: boolean | undefined;
4725
4726
  openAiBaseUrl?: string | undefined;
4726
4727
  openAiApiKey?: string | undefined;
4727
- openAiLegacyFormat?: boolean | undefined;
4728
4728
  openAiR1FormatEnabled?: boolean | undefined;
4729
4729
  openAiModelId?: string | undefined;
4730
4730
  openAiCustomModelInfo?: {
@@ -4833,6 +4833,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
4833
4833
  ioIntelligenceModelId?: string | undefined;
4834
4834
  ioIntelligenceApiKey?: string | undefined;
4835
4835
  qwenCodeOauthPath?: string | undefined;
4836
+ rooApiKey?: string | undefined;
4836
4837
  vercelAiGatewayApiKey?: string | undefined;
4837
4838
  vercelAiGatewayModelId?: string | undefined;
4838
4839
  basetenApiKey?: string | undefined;
@@ -5200,7 +5201,6 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
5200
5201
  } & {
5201
5202
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
5202
5203
  openAiApiKey: z.ZodOptional<z.ZodString>;
5203
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
5204
5204
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
5205
5205
  openAiModelId: z.ZodOptional<z.ZodString>;
5206
5206
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -5365,7 +5365,6 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
5365
5365
  toolProtocol?: "xml" | "native" | undefined;
5366
5366
  openAiBaseUrl?: string | undefined;
5367
5367
  openAiApiKey?: string | undefined;
5368
- openAiLegacyFormat?: boolean | undefined;
5369
5368
  openAiR1FormatEnabled?: boolean | undefined;
5370
5369
  openAiModelId?: string | undefined;
5371
5370
  openAiCustomModelInfo?: {
@@ -5432,7 +5431,6 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
5432
5431
  toolProtocol?: "xml" | "native" | undefined;
5433
5432
  openAiBaseUrl?: string | undefined;
5434
5433
  openAiApiKey?: string | undefined;
5435
- openAiLegacyFormat?: boolean | undefined;
5436
5434
  openAiR1FormatEnabled?: boolean | undefined;
5437
5435
  openAiModelId?: string | undefined;
5438
5436
  openAiCustomModelInfo?: {
@@ -7090,6 +7088,8 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
7090
7088
  toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
7091
7089
  } & {
7092
7090
  apiModelId: z.ZodOptional<z.ZodString>;
7091
+ } & {
7092
+ rooApiKey: z.ZodOptional<z.ZodString>;
7093
7093
  } & {
7094
7094
  apiProvider: z.ZodLiteral<"roo">;
7095
7095
  }, "strip", z.ZodTypeAny, {
@@ -7108,6 +7108,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
7108
7108
  verbosity?: "low" | "medium" | "high" | undefined;
7109
7109
  toolProtocol?: "xml" | "native" | undefined;
7110
7110
  apiModelId?: string | undefined;
7111
+ rooApiKey?: string | undefined;
7111
7112
  }, {
7112
7113
  apiProvider: "roo";
7113
7114
  reasoningEffort?: "low" | "medium" | "high" | "minimal" | "none" | "xhigh" | "disable" | undefined;
@@ -7124,6 +7125,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
7124
7125
  verbosity?: "low" | "medium" | "high" | undefined;
7125
7126
  toolProtocol?: "xml" | "native" | undefined;
7126
7127
  apiModelId?: string | undefined;
7128
+ rooApiKey?: string | undefined;
7127
7129
  }>, z.ZodObject<{
7128
7130
  includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
7129
7131
  diffEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -7191,7 +7193,7 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
7191
7193
  id?: string | undefined;
7192
7194
  }>>;
7193
7195
  type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
7194
- declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "codebaseIndexOpenRouterApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "toolProtocol", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUseGlobalInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "awsBedrockServiceTier", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "vertex1MContext", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "ollamaApiKey", "ollamaNumCtx", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "openAiNativeServiceTier", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "deepInfraBaseUrl", "deepInfraApiKey", "deepInfraModelId", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "minimaxBaseUrl", "minimaxApiKey", "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", "basetenApiKey"];
7196
+ declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "codebaseIndexVercelAiGatewayApiKey", "codebaseIndexOpenRouterApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "toolProtocol", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUseGlobalInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "awsBedrockServiceTier", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "enableUrlContext", "enableGrounding", "vertex1MContext", "openAiBaseUrl", "openAiApiKey", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "ollamaApiKey", "ollamaNumCtx", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "openAiNativeServiceTier", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "deepInfraBaseUrl", "deepInfraApiKey", "deepInfraModelId", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "minimaxBaseUrl", "minimaxApiKey", "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", "rooApiKey", "vercelAiGatewayApiKey", "vercelAiGatewayModelId", "basetenApiKey"];
7195
7197
  /**
7196
7198
  * ModelIdKey
7197
7199
  */
@@ -7255,12 +7257,12 @@ declare const globalSettingsSchema: z.ZodObject<{
7255
7257
  }, "strip", z.ZodTypeAny, {
7256
7258
  id: string;
7257
7259
  name: string;
7258
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7260
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7259
7261
  modelId?: string | undefined;
7260
7262
  }, {
7261
7263
  id: string;
7262
7264
  name: string;
7263
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7265
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7264
7266
  modelId?: string | undefined;
7265
7267
  }>, "many">>;
7266
7268
  pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -7282,6 +7284,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7282
7284
  workspace: z.ZodOptional<z.ZodString>;
7283
7285
  mode: z.ZodOptional<z.ZodString>;
7284
7286
  toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
7287
+ apiConfigName: z.ZodOptional<z.ZodString>;
7285
7288
  status: z.ZodOptional<z.ZodEnum<["active", "completed", "delegated"]>>;
7286
7289
  delegatedToId: z.ZodOptional<z.ZodString>;
7287
7290
  childIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -7305,6 +7308,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7305
7308
  size?: number | undefined;
7306
7309
  workspace?: string | undefined;
7307
7310
  mode?: string | undefined;
7311
+ apiConfigName?: string | undefined;
7308
7312
  delegatedToId?: string | undefined;
7309
7313
  childIds?: string[] | undefined;
7310
7314
  awaitingChildId?: string | undefined;
@@ -7327,6 +7331,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7327
7331
  size?: number | undefined;
7328
7332
  workspace?: string | undefined;
7329
7333
  mode?: string | undefined;
7334
+ apiConfigName?: string | undefined;
7330
7335
  delegatedToId?: string | undefined;
7331
7336
  childIds?: string[] | undefined;
7332
7337
  awaitingChildId?: string | undefined;
@@ -7510,6 +7515,12 @@ declare const globalSettingsSchema: z.ZodObject<{
7510
7515
  openai?: Record<string, {
7511
7516
  dimension: number;
7512
7517
  }> | undefined;
7518
+ openrouter?: Record<string, {
7519
+ dimension: number;
7520
+ }> | undefined;
7521
+ "vercel-ai-gateway"?: Record<string, {
7522
+ dimension: number;
7523
+ }> | undefined;
7513
7524
  ollama?: Record<string, {
7514
7525
  dimension: number;
7515
7526
  }> | undefined;
@@ -7522,17 +7533,17 @@ declare const globalSettingsSchema: z.ZodObject<{
7522
7533
  mistral?: Record<string, {
7523
7534
  dimension: number;
7524
7535
  }> | undefined;
7525
- "vercel-ai-gateway"?: Record<string, {
7536
+ bedrock?: Record<string, {
7526
7537
  dimension: number;
7527
7538
  }> | undefined;
7528
- bedrock?: Record<string, {
7539
+ }, {
7540
+ openai?: Record<string, {
7529
7541
  dimension: number;
7530
7542
  }> | undefined;
7531
7543
  openrouter?: Record<string, {
7532
7544
  dimension: number;
7533
7545
  }> | undefined;
7534
- }, {
7535
- openai?: Record<string, {
7546
+ "vercel-ai-gateway"?: Record<string, {
7536
7547
  dimension: number;
7537
7548
  }> | undefined;
7538
7549
  ollama?: Record<string, {
@@ -7547,15 +7558,9 @@ declare const globalSettingsSchema: z.ZodObject<{
7547
7558
  mistral?: Record<string, {
7548
7559
  dimension: number;
7549
7560
  }> | undefined;
7550
- "vercel-ai-gateway"?: Record<string, {
7551
- dimension: number;
7552
- }> | undefined;
7553
7561
  bedrock?: Record<string, {
7554
7562
  dimension: number;
7555
7563
  }> | undefined;
7556
- openrouter?: Record<string, {
7557
- dimension: number;
7558
- }> | undefined;
7559
7564
  }>>;
7560
7565
  codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
7561
7566
  codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -7574,7 +7579,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7574
7579
  }, "strip", z.ZodTypeAny, {
7575
7580
  codebaseIndexEnabled?: boolean | undefined;
7576
7581
  codebaseIndexQdrantUrl?: string | undefined;
7577
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
7582
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
7578
7583
  codebaseIndexEmbedderBaseUrl?: string | undefined;
7579
7584
  codebaseIndexEmbedderModelId?: string | undefined;
7580
7585
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -7588,7 +7593,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7588
7593
  }, {
7589
7594
  codebaseIndexEnabled?: boolean | undefined;
7590
7595
  codebaseIndexQdrantUrl?: string | undefined;
7591
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
7596
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
7592
7597
  codebaseIndexEmbedderBaseUrl?: string | undefined;
7593
7598
  codebaseIndexEmbedderModelId?: string | undefined;
7594
7599
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -7711,7 +7716,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7711
7716
  listApiConfigMeta?: {
7712
7717
  id: string;
7713
7718
  name: string;
7714
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7719
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7715
7720
  modelId?: string | undefined;
7716
7721
  }[] | undefined;
7717
7722
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -7733,6 +7738,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7733
7738
  size?: number | undefined;
7734
7739
  workspace?: string | undefined;
7735
7740
  mode?: string | undefined;
7741
+ apiConfigName?: string | undefined;
7736
7742
  delegatedToId?: string | undefined;
7737
7743
  childIds?: string[] | undefined;
7738
7744
  awaitingChildId?: string | undefined;
@@ -7819,6 +7825,12 @@ declare const globalSettingsSchema: z.ZodObject<{
7819
7825
  openai?: Record<string, {
7820
7826
  dimension: number;
7821
7827
  }> | undefined;
7828
+ openrouter?: Record<string, {
7829
+ dimension: number;
7830
+ }> | undefined;
7831
+ "vercel-ai-gateway"?: Record<string, {
7832
+ dimension: number;
7833
+ }> | undefined;
7822
7834
  ollama?: Record<string, {
7823
7835
  dimension: number;
7824
7836
  }> | undefined;
@@ -7831,20 +7843,14 @@ declare const globalSettingsSchema: z.ZodObject<{
7831
7843
  mistral?: Record<string, {
7832
7844
  dimension: number;
7833
7845
  }> | undefined;
7834
- "vercel-ai-gateway"?: Record<string, {
7835
- dimension: number;
7836
- }> | undefined;
7837
7846
  bedrock?: Record<string, {
7838
7847
  dimension: number;
7839
7848
  }> | undefined;
7840
- openrouter?: Record<string, {
7841
- dimension: number;
7842
- }> | undefined;
7843
7849
  } | undefined;
7844
7850
  codebaseIndexConfig?: {
7845
7851
  codebaseIndexEnabled?: boolean | undefined;
7846
7852
  codebaseIndexQdrantUrl?: string | undefined;
7847
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
7853
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
7848
7854
  codebaseIndexEmbedderBaseUrl?: string | undefined;
7849
7855
  codebaseIndexEmbedderModelId?: string | undefined;
7850
7856
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -7900,7 +7906,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7900
7906
  listApiConfigMeta?: {
7901
7907
  id: string;
7902
7908
  name: string;
7903
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7909
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
7904
7910
  modelId?: string | undefined;
7905
7911
  }[] | undefined;
7906
7912
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -7922,6 +7928,7 @@ declare const globalSettingsSchema: z.ZodObject<{
7922
7928
  size?: number | undefined;
7923
7929
  workspace?: string | undefined;
7924
7930
  mode?: string | undefined;
7931
+ apiConfigName?: string | undefined;
7925
7932
  delegatedToId?: string | undefined;
7926
7933
  childIds?: string[] | undefined;
7927
7934
  awaitingChildId?: string | undefined;
@@ -8008,6 +8015,12 @@ declare const globalSettingsSchema: z.ZodObject<{
8008
8015
  openai?: Record<string, {
8009
8016
  dimension: number;
8010
8017
  }> | undefined;
8018
+ openrouter?: Record<string, {
8019
+ dimension: number;
8020
+ }> | undefined;
8021
+ "vercel-ai-gateway"?: Record<string, {
8022
+ dimension: number;
8023
+ }> | undefined;
8011
8024
  ollama?: Record<string, {
8012
8025
  dimension: number;
8013
8026
  }> | undefined;
@@ -8020,20 +8033,14 @@ declare const globalSettingsSchema: z.ZodObject<{
8020
8033
  mistral?: Record<string, {
8021
8034
  dimension: number;
8022
8035
  }> | undefined;
8023
- "vercel-ai-gateway"?: Record<string, {
8024
- dimension: number;
8025
- }> | undefined;
8026
8036
  bedrock?: Record<string, {
8027
8037
  dimension: number;
8028
8038
  }> | undefined;
8029
- openrouter?: Record<string, {
8030
- dimension: number;
8031
- }> | undefined;
8032
8039
  } | undefined;
8033
8040
  codebaseIndexConfig?: {
8034
8041
  codebaseIndexEnabled?: boolean | undefined;
8035
8042
  codebaseIndexQdrantUrl?: string | undefined;
8036
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
8043
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
8037
8044
  codebaseIndexEmbedderBaseUrl?: string | undefined;
8038
8045
  codebaseIndexEmbedderModelId?: string | undefined;
8039
8046
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -8094,6 +8101,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8094
8101
  vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
8095
8102
  vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
8096
8103
  apiModelId: z.ZodOptional<z.ZodString>;
8104
+ rooApiKey: z.ZodOptional<z.ZodString>;
8097
8105
  qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
8098
8106
  ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
8099
8107
  ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
@@ -8168,7 +8176,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8168
8176
  ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
8169
8177
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
8170
8178
  openAiApiKey: z.ZodOptional<z.ZodString>;
8171
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
8172
8179
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
8173
8180
  openAiModelId: z.ZodOptional<z.ZodString>;
8174
8181
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8355,12 +8362,12 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8355
8362
  }, "strip", z.ZodTypeAny, {
8356
8363
  id: string;
8357
8364
  name: string;
8358
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8365
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8359
8366
  modelId?: string | undefined;
8360
8367
  }, {
8361
8368
  id: string;
8362
8369
  name: string;
8363
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8370
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8364
8371
  modelId?: string | undefined;
8365
8372
  }>, "many">>;
8366
8373
  pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -8382,6 +8389,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8382
8389
  workspace: z.ZodOptional<z.ZodString>;
8383
8390
  mode: z.ZodOptional<z.ZodString>;
8384
8391
  toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
8392
+ apiConfigName: z.ZodOptional<z.ZodString>;
8385
8393
  status: z.ZodOptional<z.ZodEnum<["active", "completed", "delegated"]>>;
8386
8394
  delegatedToId: z.ZodOptional<z.ZodString>;
8387
8395
  childIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -8405,6 +8413,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8405
8413
  size?: number | undefined;
8406
8414
  workspace?: string | undefined;
8407
8415
  mode?: string | undefined;
8416
+ apiConfigName?: string | undefined;
8408
8417
  delegatedToId?: string | undefined;
8409
8418
  childIds?: string[] | undefined;
8410
8419
  awaitingChildId?: string | undefined;
@@ -8427,6 +8436,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8427
8436
  size?: number | undefined;
8428
8437
  workspace?: string | undefined;
8429
8438
  mode?: string | undefined;
8439
+ apiConfigName?: string | undefined;
8430
8440
  delegatedToId?: string | undefined;
8431
8441
  childIds?: string[] | undefined;
8432
8442
  awaitingChildId?: string | undefined;
@@ -8589,6 +8599,12 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8589
8599
  openai?: Record<string, {
8590
8600
  dimension: number;
8591
8601
  }> | undefined;
8602
+ openrouter?: Record<string, {
8603
+ dimension: number;
8604
+ }> | undefined;
8605
+ "vercel-ai-gateway"?: Record<string, {
8606
+ dimension: number;
8607
+ }> | undefined;
8592
8608
  ollama?: Record<string, {
8593
8609
  dimension: number;
8594
8610
  }> | undefined;
@@ -8601,17 +8617,17 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8601
8617
  mistral?: Record<string, {
8602
8618
  dimension: number;
8603
8619
  }> | undefined;
8604
- "vercel-ai-gateway"?: Record<string, {
8620
+ bedrock?: Record<string, {
8605
8621
  dimension: number;
8606
8622
  }> | undefined;
8607
- bedrock?: Record<string, {
8623
+ }, {
8624
+ openai?: Record<string, {
8608
8625
  dimension: number;
8609
8626
  }> | undefined;
8610
8627
  openrouter?: Record<string, {
8611
8628
  dimension: number;
8612
8629
  }> | undefined;
8613
- }, {
8614
- openai?: Record<string, {
8630
+ "vercel-ai-gateway"?: Record<string, {
8615
8631
  dimension: number;
8616
8632
  }> | undefined;
8617
8633
  ollama?: Record<string, {
@@ -8626,15 +8642,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8626
8642
  mistral?: Record<string, {
8627
8643
  dimension: number;
8628
8644
  }> | undefined;
8629
- "vercel-ai-gateway"?: Record<string, {
8630
- dimension: number;
8631
- }> | undefined;
8632
8645
  bedrock?: Record<string, {
8633
8646
  dimension: number;
8634
8647
  }> | undefined;
8635
- openrouter?: Record<string, {
8636
- dimension: number;
8637
- }> | undefined;
8638
8648
  }>>;
8639
8649
  codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
8640
8650
  codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -8653,7 +8663,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8653
8663
  }, "strip", z.ZodTypeAny, {
8654
8664
  codebaseIndexEnabled?: boolean | undefined;
8655
8665
  codebaseIndexQdrantUrl?: string | undefined;
8656
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
8666
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
8657
8667
  codebaseIndexEmbedderBaseUrl?: string | undefined;
8658
8668
  codebaseIndexEmbedderModelId?: string | undefined;
8659
8669
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -8667,7 +8677,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8667
8677
  }, {
8668
8678
  codebaseIndexEnabled?: boolean | undefined;
8669
8679
  codebaseIndexQdrantUrl?: string | undefined;
8670
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
8680
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
8671
8681
  codebaseIndexEmbedderBaseUrl?: string | undefined;
8672
8682
  codebaseIndexEmbedderModelId?: string | undefined;
8673
8683
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -8772,7 +8782,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8772
8782
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
8773
8783
  codebaseIndexOpenRouterApiKey?: string | undefined;
8774
8784
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
8775
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8785
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8776
8786
  includeMaxTokens?: boolean | undefined;
8777
8787
  diffEnabled?: boolean | undefined;
8778
8788
  todoListEnabled?: boolean | undefined;
@@ -8820,7 +8830,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8820
8830
  vertex1MContext?: boolean | undefined;
8821
8831
  openAiBaseUrl?: string | undefined;
8822
8832
  openAiApiKey?: string | undefined;
8823
- openAiLegacyFormat?: boolean | undefined;
8824
8833
  openAiR1FormatEnabled?: boolean | undefined;
8825
8834
  openAiModelId?: string | undefined;
8826
8835
  openAiCustomModelInfo?: {
@@ -8929,6 +8938,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8929
8938
  ioIntelligenceModelId?: string | undefined;
8930
8939
  ioIntelligenceApiKey?: string | undefined;
8931
8940
  qwenCodeOauthPath?: string | undefined;
8941
+ rooApiKey?: string | undefined;
8932
8942
  vercelAiGatewayApiKey?: string | undefined;
8933
8943
  vercelAiGatewayModelId?: string | undefined;
8934
8944
  basetenApiKey?: string | undefined;
@@ -8951,7 +8961,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8951
8961
  listApiConfigMeta?: {
8952
8962
  id: string;
8953
8963
  name: string;
8954
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8964
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
8955
8965
  modelId?: string | undefined;
8956
8966
  }[] | undefined;
8957
8967
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -8973,6 +8983,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
8973
8983
  size?: number | undefined;
8974
8984
  workspace?: string | undefined;
8975
8985
  mode?: string | undefined;
8986
+ apiConfigName?: string | undefined;
8976
8987
  delegatedToId?: string | undefined;
8977
8988
  childIds?: string[] | undefined;
8978
8989
  awaitingChildId?: string | undefined;
@@ -9059,6 +9070,12 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9059
9070
  openai?: Record<string, {
9060
9071
  dimension: number;
9061
9072
  }> | undefined;
9073
+ openrouter?: Record<string, {
9074
+ dimension: number;
9075
+ }> | undefined;
9076
+ "vercel-ai-gateway"?: Record<string, {
9077
+ dimension: number;
9078
+ }> | undefined;
9062
9079
  ollama?: Record<string, {
9063
9080
  dimension: number;
9064
9081
  }> | undefined;
@@ -9071,20 +9088,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9071
9088
  mistral?: Record<string, {
9072
9089
  dimension: number;
9073
9090
  }> | undefined;
9074
- "vercel-ai-gateway"?: Record<string, {
9075
- dimension: number;
9076
- }> | undefined;
9077
9091
  bedrock?: Record<string, {
9078
9092
  dimension: number;
9079
9093
  }> | undefined;
9080
- openrouter?: Record<string, {
9081
- dimension: number;
9082
- }> | undefined;
9083
9094
  } | undefined;
9084
9095
  codebaseIndexConfig?: {
9085
9096
  codebaseIndexEnabled?: boolean | undefined;
9086
9097
  codebaseIndexQdrantUrl?: string | undefined;
9087
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
9098
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
9088
9099
  codebaseIndexEmbedderBaseUrl?: string | undefined;
9089
9100
  codebaseIndexEmbedderModelId?: string | undefined;
9090
9101
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -9128,7 +9139,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9128
9139
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
9129
9140
  codebaseIndexOpenRouterApiKey?: string | undefined;
9130
9141
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
9131
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9142
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9132
9143
  includeMaxTokens?: boolean | undefined;
9133
9144
  diffEnabled?: boolean | undefined;
9134
9145
  todoListEnabled?: boolean | undefined;
@@ -9176,7 +9187,6 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9176
9187
  vertex1MContext?: boolean | undefined;
9177
9188
  openAiBaseUrl?: string | undefined;
9178
9189
  openAiApiKey?: string | undefined;
9179
- openAiLegacyFormat?: boolean | undefined;
9180
9190
  openAiR1FormatEnabled?: boolean | undefined;
9181
9191
  openAiModelId?: string | undefined;
9182
9192
  openAiCustomModelInfo?: {
@@ -9285,6 +9295,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9285
9295
  ioIntelligenceModelId?: string | undefined;
9286
9296
  ioIntelligenceApiKey?: string | undefined;
9287
9297
  qwenCodeOauthPath?: string | undefined;
9298
+ rooApiKey?: string | undefined;
9288
9299
  vercelAiGatewayApiKey?: string | undefined;
9289
9300
  vercelAiGatewayModelId?: string | undefined;
9290
9301
  basetenApiKey?: string | undefined;
@@ -9307,7 +9318,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9307
9318
  listApiConfigMeta?: {
9308
9319
  id: string;
9309
9320
  name: string;
9310
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9321
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9311
9322
  modelId?: string | undefined;
9312
9323
  }[] | undefined;
9313
9324
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -9329,6 +9340,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9329
9340
  size?: number | undefined;
9330
9341
  workspace?: string | undefined;
9331
9342
  mode?: string | undefined;
9343
+ apiConfigName?: string | undefined;
9332
9344
  delegatedToId?: string | undefined;
9333
9345
  childIds?: string[] | undefined;
9334
9346
  awaitingChildId?: string | undefined;
@@ -9415,6 +9427,12 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9415
9427
  openai?: Record<string, {
9416
9428
  dimension: number;
9417
9429
  }> | undefined;
9430
+ openrouter?: Record<string, {
9431
+ dimension: number;
9432
+ }> | undefined;
9433
+ "vercel-ai-gateway"?: Record<string, {
9434
+ dimension: number;
9435
+ }> | undefined;
9418
9436
  ollama?: Record<string, {
9419
9437
  dimension: number;
9420
9438
  }> | undefined;
@@ -9427,20 +9445,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
9427
9445
  mistral?: Record<string, {
9428
9446
  dimension: number;
9429
9447
  }> | undefined;
9430
- "vercel-ai-gateway"?: Record<string, {
9431
- dimension: number;
9432
- }> | undefined;
9433
9448
  bedrock?: Record<string, {
9434
9449
  dimension: number;
9435
9450
  }> | undefined;
9436
- openrouter?: Record<string, {
9437
- dimension: number;
9438
- }> | undefined;
9439
9451
  } | undefined;
9440
9452
  codebaseIndexConfig?: {
9441
9453
  codebaseIndexEnabled?: boolean | undefined;
9442
9454
  codebaseIndexQdrantUrl?: string | undefined;
9443
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
9455
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
9444
9456
  codebaseIndexEmbedderBaseUrl?: string | undefined;
9445
9457
  codebaseIndexEmbedderModelId?: string | undefined;
9446
9458
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -9570,6 +9582,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9570
9582
  vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
9571
9583
  vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
9572
9584
  apiModelId: z.ZodOptional<z.ZodString>;
9585
+ rooApiKey: z.ZodOptional<z.ZodString>;
9573
9586
  qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
9574
9587
  ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
9575
9588
  ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
@@ -9644,7 +9657,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9644
9657
  ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
9645
9658
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
9646
9659
  openAiApiKey: z.ZodOptional<z.ZodString>;
9647
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
9648
9660
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
9649
9661
  openAiModelId: z.ZodOptional<z.ZodString>;
9650
9662
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -9831,12 +9843,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9831
9843
  }, "strip", z.ZodTypeAny, {
9832
9844
  id: string;
9833
9845
  name: string;
9834
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9846
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9835
9847
  modelId?: string | undefined;
9836
9848
  }, {
9837
9849
  id: string;
9838
9850
  name: string;
9839
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9851
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
9840
9852
  modelId?: string | undefined;
9841
9853
  }>, "many">>;
9842
9854
  pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -9858,6 +9870,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9858
9870
  workspace: z.ZodOptional<z.ZodString>;
9859
9871
  mode: z.ZodOptional<z.ZodString>;
9860
9872
  toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
9873
+ apiConfigName: z.ZodOptional<z.ZodString>;
9861
9874
  status: z.ZodOptional<z.ZodEnum<["active", "completed", "delegated"]>>;
9862
9875
  delegatedToId: z.ZodOptional<z.ZodString>;
9863
9876
  childIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -9881,6 +9894,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9881
9894
  size?: number | undefined;
9882
9895
  workspace?: string | undefined;
9883
9896
  mode?: string | undefined;
9897
+ apiConfigName?: string | undefined;
9884
9898
  delegatedToId?: string | undefined;
9885
9899
  childIds?: string[] | undefined;
9886
9900
  awaitingChildId?: string | undefined;
@@ -9903,6 +9917,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
9903
9917
  size?: number | undefined;
9904
9918
  workspace?: string | undefined;
9905
9919
  mode?: string | undefined;
9920
+ apiConfigName?: string | undefined;
9906
9921
  delegatedToId?: string | undefined;
9907
9922
  childIds?: string[] | undefined;
9908
9923
  awaitingChildId?: string | undefined;
@@ -10065,6 +10080,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10065
10080
  openai?: Record<string, {
10066
10081
  dimension: number;
10067
10082
  }> | undefined;
10083
+ openrouter?: Record<string, {
10084
+ dimension: number;
10085
+ }> | undefined;
10086
+ "vercel-ai-gateway"?: Record<string, {
10087
+ dimension: number;
10088
+ }> | undefined;
10068
10089
  ollama?: Record<string, {
10069
10090
  dimension: number;
10070
10091
  }> | undefined;
@@ -10077,17 +10098,17 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10077
10098
  mistral?: Record<string, {
10078
10099
  dimension: number;
10079
10100
  }> | undefined;
10080
- "vercel-ai-gateway"?: Record<string, {
10101
+ bedrock?: Record<string, {
10081
10102
  dimension: number;
10082
10103
  }> | undefined;
10083
- bedrock?: Record<string, {
10104
+ }, {
10105
+ openai?: Record<string, {
10084
10106
  dimension: number;
10085
10107
  }> | undefined;
10086
10108
  openrouter?: Record<string, {
10087
10109
  dimension: number;
10088
10110
  }> | undefined;
10089
- }, {
10090
- openai?: Record<string, {
10111
+ "vercel-ai-gateway"?: Record<string, {
10091
10112
  dimension: number;
10092
10113
  }> | undefined;
10093
10114
  ollama?: Record<string, {
@@ -10102,15 +10123,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10102
10123
  mistral?: Record<string, {
10103
10124
  dimension: number;
10104
10125
  }> | undefined;
10105
- "vercel-ai-gateway"?: Record<string, {
10106
- dimension: number;
10107
- }> | undefined;
10108
10126
  bedrock?: Record<string, {
10109
10127
  dimension: number;
10110
10128
  }> | undefined;
10111
- openrouter?: Record<string, {
10112
- dimension: number;
10113
- }> | undefined;
10114
10129
  }>>;
10115
10130
  codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
10116
10131
  codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -10129,7 +10144,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10129
10144
  }, "strip", z.ZodTypeAny, {
10130
10145
  codebaseIndexEnabled?: boolean | undefined;
10131
10146
  codebaseIndexQdrantUrl?: string | undefined;
10132
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
10147
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
10133
10148
  codebaseIndexEmbedderBaseUrl?: string | undefined;
10134
10149
  codebaseIndexEmbedderModelId?: string | undefined;
10135
10150
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -10143,7 +10158,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10143
10158
  }, {
10144
10159
  codebaseIndexEnabled?: boolean | undefined;
10145
10160
  codebaseIndexQdrantUrl?: string | undefined;
10146
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
10161
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
10147
10162
  codebaseIndexEmbedderBaseUrl?: string | undefined;
10148
10163
  codebaseIndexEmbedderModelId?: string | undefined;
10149
10164
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -10248,7 +10263,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10248
10263
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
10249
10264
  codebaseIndexOpenRouterApiKey?: string | undefined;
10250
10265
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
10251
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10266
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10252
10267
  includeMaxTokens?: boolean | undefined;
10253
10268
  diffEnabled?: boolean | undefined;
10254
10269
  todoListEnabled?: boolean | undefined;
@@ -10296,7 +10311,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10296
10311
  vertex1MContext?: boolean | undefined;
10297
10312
  openAiBaseUrl?: string | undefined;
10298
10313
  openAiApiKey?: string | undefined;
10299
- openAiLegacyFormat?: boolean | undefined;
10300
10314
  openAiR1FormatEnabled?: boolean | undefined;
10301
10315
  openAiModelId?: string | undefined;
10302
10316
  openAiCustomModelInfo?: {
@@ -10405,6 +10419,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10405
10419
  ioIntelligenceModelId?: string | undefined;
10406
10420
  ioIntelligenceApiKey?: string | undefined;
10407
10421
  qwenCodeOauthPath?: string | undefined;
10422
+ rooApiKey?: string | undefined;
10408
10423
  vercelAiGatewayApiKey?: string | undefined;
10409
10424
  vercelAiGatewayModelId?: string | undefined;
10410
10425
  basetenApiKey?: string | undefined;
@@ -10427,7 +10442,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10427
10442
  listApiConfigMeta?: {
10428
10443
  id: string;
10429
10444
  name: string;
10430
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10445
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10431
10446
  modelId?: string | undefined;
10432
10447
  }[] | undefined;
10433
10448
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -10449,6 +10464,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10449
10464
  size?: number | undefined;
10450
10465
  workspace?: string | undefined;
10451
10466
  mode?: string | undefined;
10467
+ apiConfigName?: string | undefined;
10452
10468
  delegatedToId?: string | undefined;
10453
10469
  childIds?: string[] | undefined;
10454
10470
  awaitingChildId?: string | undefined;
@@ -10535,6 +10551,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10535
10551
  openai?: Record<string, {
10536
10552
  dimension: number;
10537
10553
  }> | undefined;
10554
+ openrouter?: Record<string, {
10555
+ dimension: number;
10556
+ }> | undefined;
10557
+ "vercel-ai-gateway"?: Record<string, {
10558
+ dimension: number;
10559
+ }> | undefined;
10538
10560
  ollama?: Record<string, {
10539
10561
  dimension: number;
10540
10562
  }> | undefined;
@@ -10547,20 +10569,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10547
10569
  mistral?: Record<string, {
10548
10570
  dimension: number;
10549
10571
  }> | undefined;
10550
- "vercel-ai-gateway"?: Record<string, {
10551
- dimension: number;
10552
- }> | undefined;
10553
10572
  bedrock?: Record<string, {
10554
10573
  dimension: number;
10555
10574
  }> | undefined;
10556
- openrouter?: Record<string, {
10557
- dimension: number;
10558
- }> | undefined;
10559
10575
  } | undefined;
10560
10576
  codebaseIndexConfig?: {
10561
10577
  codebaseIndexEnabled?: boolean | undefined;
10562
10578
  codebaseIndexQdrantUrl?: string | undefined;
10563
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
10579
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
10564
10580
  codebaseIndexEmbedderBaseUrl?: string | undefined;
10565
10581
  codebaseIndexEmbedderModelId?: string | undefined;
10566
10582
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -10604,7 +10620,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10604
10620
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
10605
10621
  codebaseIndexOpenRouterApiKey?: string | undefined;
10606
10622
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
10607
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10623
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10608
10624
  includeMaxTokens?: boolean | undefined;
10609
10625
  diffEnabled?: boolean | undefined;
10610
10626
  todoListEnabled?: boolean | undefined;
@@ -10652,7 +10668,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10652
10668
  vertex1MContext?: boolean | undefined;
10653
10669
  openAiBaseUrl?: string | undefined;
10654
10670
  openAiApiKey?: string | undefined;
10655
- openAiLegacyFormat?: boolean | undefined;
10656
10671
  openAiR1FormatEnabled?: boolean | undefined;
10657
10672
  openAiModelId?: string | undefined;
10658
10673
  openAiCustomModelInfo?: {
@@ -10761,6 +10776,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10761
10776
  ioIntelligenceModelId?: string | undefined;
10762
10777
  ioIntelligenceApiKey?: string | undefined;
10763
10778
  qwenCodeOauthPath?: string | undefined;
10779
+ rooApiKey?: string | undefined;
10764
10780
  vercelAiGatewayApiKey?: string | undefined;
10765
10781
  vercelAiGatewayModelId?: string | undefined;
10766
10782
  basetenApiKey?: string | undefined;
@@ -10783,7 +10799,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10783
10799
  listApiConfigMeta?: {
10784
10800
  id: string;
10785
10801
  name: string;
10786
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10802
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10787
10803
  modelId?: string | undefined;
10788
10804
  }[] | undefined;
10789
10805
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -10805,6 +10821,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10805
10821
  size?: number | undefined;
10806
10822
  workspace?: string | undefined;
10807
10823
  mode?: string | undefined;
10824
+ apiConfigName?: string | undefined;
10808
10825
  delegatedToId?: string | undefined;
10809
10826
  childIds?: string[] | undefined;
10810
10827
  awaitingChildId?: string | undefined;
@@ -10891,6 +10908,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10891
10908
  openai?: Record<string, {
10892
10909
  dimension: number;
10893
10910
  }> | undefined;
10911
+ openrouter?: Record<string, {
10912
+ dimension: number;
10913
+ }> | undefined;
10914
+ "vercel-ai-gateway"?: Record<string, {
10915
+ dimension: number;
10916
+ }> | undefined;
10894
10917
  ollama?: Record<string, {
10895
10918
  dimension: number;
10896
10919
  }> | undefined;
@@ -10903,20 +10926,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10903
10926
  mistral?: Record<string, {
10904
10927
  dimension: number;
10905
10928
  }> | undefined;
10906
- "vercel-ai-gateway"?: Record<string, {
10907
- dimension: number;
10908
- }> | undefined;
10909
10929
  bedrock?: Record<string, {
10910
10930
  dimension: number;
10911
10931
  }> | undefined;
10912
- openrouter?: Record<string, {
10913
- dimension: number;
10914
- }> | undefined;
10915
10932
  } | undefined;
10916
10933
  codebaseIndexConfig?: {
10917
10934
  codebaseIndexEnabled?: boolean | undefined;
10918
10935
  codebaseIndexQdrantUrl?: string | undefined;
10919
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
10936
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
10920
10937
  codebaseIndexEmbedderBaseUrl?: string | undefined;
10921
10938
  codebaseIndexEmbedderModelId?: string | undefined;
10922
10939
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -10966,7 +10983,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
10966
10983
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
10967
10984
  codebaseIndexOpenRouterApiKey?: string | undefined;
10968
10985
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
10969
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10986
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
10970
10987
  includeMaxTokens?: boolean | undefined;
10971
10988
  diffEnabled?: boolean | undefined;
10972
10989
  todoListEnabled?: boolean | undefined;
@@ -11014,7 +11031,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11014
11031
  vertex1MContext?: boolean | undefined;
11015
11032
  openAiBaseUrl?: string | undefined;
11016
11033
  openAiApiKey?: string | undefined;
11017
- openAiLegacyFormat?: boolean | undefined;
11018
11034
  openAiR1FormatEnabled?: boolean | undefined;
11019
11035
  openAiModelId?: string | undefined;
11020
11036
  openAiCustomModelInfo?: {
@@ -11123,6 +11139,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11123
11139
  ioIntelligenceModelId?: string | undefined;
11124
11140
  ioIntelligenceApiKey?: string | undefined;
11125
11141
  qwenCodeOauthPath?: string | undefined;
11142
+ rooApiKey?: string | undefined;
11126
11143
  vercelAiGatewayApiKey?: string | undefined;
11127
11144
  vercelAiGatewayModelId?: string | undefined;
11128
11145
  basetenApiKey?: string | undefined;
@@ -11145,7 +11162,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11145
11162
  listApiConfigMeta?: {
11146
11163
  id: string;
11147
11164
  name: string;
11148
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11165
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11149
11166
  modelId?: string | undefined;
11150
11167
  }[] | undefined;
11151
11168
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -11167,6 +11184,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11167
11184
  size?: number | undefined;
11168
11185
  workspace?: string | undefined;
11169
11186
  mode?: string | undefined;
11187
+ apiConfigName?: string | undefined;
11170
11188
  delegatedToId?: string | undefined;
11171
11189
  childIds?: string[] | undefined;
11172
11190
  awaitingChildId?: string | undefined;
@@ -11253,6 +11271,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11253
11271
  openai?: Record<string, {
11254
11272
  dimension: number;
11255
11273
  }> | undefined;
11274
+ openrouter?: Record<string, {
11275
+ dimension: number;
11276
+ }> | undefined;
11277
+ "vercel-ai-gateway"?: Record<string, {
11278
+ dimension: number;
11279
+ }> | undefined;
11256
11280
  ollama?: Record<string, {
11257
11281
  dimension: number;
11258
11282
  }> | undefined;
@@ -11265,20 +11289,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11265
11289
  mistral?: Record<string, {
11266
11290
  dimension: number;
11267
11291
  }> | undefined;
11268
- "vercel-ai-gateway"?: Record<string, {
11269
- dimension: number;
11270
- }> | undefined;
11271
11292
  bedrock?: Record<string, {
11272
11293
  dimension: number;
11273
11294
  }> | undefined;
11274
- openrouter?: Record<string, {
11275
- dimension: number;
11276
- }> | undefined;
11277
11295
  } | undefined;
11278
11296
  codebaseIndexConfig?: {
11279
11297
  codebaseIndexEnabled?: boolean | undefined;
11280
11298
  codebaseIndexQdrantUrl?: string | undefined;
11281
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
11299
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
11282
11300
  codebaseIndexEmbedderBaseUrl?: string | undefined;
11283
11301
  codebaseIndexEmbedderModelId?: string | undefined;
11284
11302
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -11327,7 +11345,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11327
11345
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
11328
11346
  codebaseIndexOpenRouterApiKey?: string | undefined;
11329
11347
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
11330
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11348
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11331
11349
  includeMaxTokens?: boolean | undefined;
11332
11350
  diffEnabled?: boolean | undefined;
11333
11351
  todoListEnabled?: boolean | undefined;
@@ -11375,7 +11393,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11375
11393
  vertex1MContext?: boolean | undefined;
11376
11394
  openAiBaseUrl?: string | undefined;
11377
11395
  openAiApiKey?: string | undefined;
11378
- openAiLegacyFormat?: boolean | undefined;
11379
11396
  openAiR1FormatEnabled?: boolean | undefined;
11380
11397
  openAiModelId?: string | undefined;
11381
11398
  openAiCustomModelInfo?: {
@@ -11484,6 +11501,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11484
11501
  ioIntelligenceModelId?: string | undefined;
11485
11502
  ioIntelligenceApiKey?: string | undefined;
11486
11503
  qwenCodeOauthPath?: string | undefined;
11504
+ rooApiKey?: string | undefined;
11487
11505
  vercelAiGatewayApiKey?: string | undefined;
11488
11506
  vercelAiGatewayModelId?: string | undefined;
11489
11507
  basetenApiKey?: string | undefined;
@@ -11506,7 +11524,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11506
11524
  listApiConfigMeta?: {
11507
11525
  id: string;
11508
11526
  name: string;
11509
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11527
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11510
11528
  modelId?: string | undefined;
11511
11529
  }[] | undefined;
11512
11530
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -11528,6 +11546,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11528
11546
  size?: number | undefined;
11529
11547
  workspace?: string | undefined;
11530
11548
  mode?: string | undefined;
11549
+ apiConfigName?: string | undefined;
11531
11550
  delegatedToId?: string | undefined;
11532
11551
  childIds?: string[] | undefined;
11533
11552
  awaitingChildId?: string | undefined;
@@ -11614,6 +11633,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11614
11633
  openai?: Record<string, {
11615
11634
  dimension: number;
11616
11635
  }> | undefined;
11636
+ openrouter?: Record<string, {
11637
+ dimension: number;
11638
+ }> | undefined;
11639
+ "vercel-ai-gateway"?: Record<string, {
11640
+ dimension: number;
11641
+ }> | undefined;
11617
11642
  ollama?: Record<string, {
11618
11643
  dimension: number;
11619
11644
  }> | undefined;
@@ -11626,20 +11651,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11626
11651
  mistral?: Record<string, {
11627
11652
  dimension: number;
11628
11653
  }> | undefined;
11629
- "vercel-ai-gateway"?: Record<string, {
11630
- dimension: number;
11631
- }> | undefined;
11632
11654
  bedrock?: Record<string, {
11633
11655
  dimension: number;
11634
11656
  }> | undefined;
11635
- openrouter?: Record<string, {
11636
- dimension: number;
11637
- }> | undefined;
11638
11657
  } | undefined;
11639
11658
  codebaseIndexConfig?: {
11640
11659
  codebaseIndexEnabled?: boolean | undefined;
11641
11660
  codebaseIndexQdrantUrl?: string | undefined;
11642
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
11661
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
11643
11662
  codebaseIndexEmbedderBaseUrl?: string | undefined;
11644
11663
  codebaseIndexEmbedderModelId?: string | undefined;
11645
11664
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -11690,7 +11709,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11690
11709
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
11691
11710
  codebaseIndexOpenRouterApiKey?: string | undefined;
11692
11711
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
11693
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11712
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11694
11713
  includeMaxTokens?: boolean | undefined;
11695
11714
  diffEnabled?: boolean | undefined;
11696
11715
  todoListEnabled?: boolean | undefined;
@@ -11738,7 +11757,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11738
11757
  vertex1MContext?: boolean | undefined;
11739
11758
  openAiBaseUrl?: string | undefined;
11740
11759
  openAiApiKey?: string | undefined;
11741
- openAiLegacyFormat?: boolean | undefined;
11742
11760
  openAiR1FormatEnabled?: boolean | undefined;
11743
11761
  openAiModelId?: string | undefined;
11744
11762
  openAiCustomModelInfo?: {
@@ -11847,6 +11865,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11847
11865
  ioIntelligenceModelId?: string | undefined;
11848
11866
  ioIntelligenceApiKey?: string | undefined;
11849
11867
  qwenCodeOauthPath?: string | undefined;
11868
+ rooApiKey?: string | undefined;
11850
11869
  vercelAiGatewayApiKey?: string | undefined;
11851
11870
  vercelAiGatewayModelId?: string | undefined;
11852
11871
  basetenApiKey?: string | undefined;
@@ -11869,7 +11888,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11869
11888
  listApiConfigMeta?: {
11870
11889
  id: string;
11871
11890
  name: string;
11872
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11891
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
11873
11892
  modelId?: string | undefined;
11874
11893
  }[] | undefined;
11875
11894
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -11891,6 +11910,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11891
11910
  size?: number | undefined;
11892
11911
  workspace?: string | undefined;
11893
11912
  mode?: string | undefined;
11913
+ apiConfigName?: string | undefined;
11894
11914
  delegatedToId?: string | undefined;
11895
11915
  childIds?: string[] | undefined;
11896
11916
  awaitingChildId?: string | undefined;
@@ -11977,6 +11997,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11977
11997
  openai?: Record<string, {
11978
11998
  dimension: number;
11979
11999
  }> | undefined;
12000
+ openrouter?: Record<string, {
12001
+ dimension: number;
12002
+ }> | undefined;
12003
+ "vercel-ai-gateway"?: Record<string, {
12004
+ dimension: number;
12005
+ }> | undefined;
11980
12006
  ollama?: Record<string, {
11981
12007
  dimension: number;
11982
12008
  }> | undefined;
@@ -11989,20 +12015,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
11989
12015
  mistral?: Record<string, {
11990
12016
  dimension: number;
11991
12017
  }> | undefined;
11992
- "vercel-ai-gateway"?: Record<string, {
11993
- dimension: number;
11994
- }> | undefined;
11995
12018
  bedrock?: Record<string, {
11996
12019
  dimension: number;
11997
12020
  }> | undefined;
11998
- openrouter?: Record<string, {
11999
- dimension: number;
12000
- }> | undefined;
12001
12021
  } | undefined;
12002
12022
  codebaseIndexConfig?: {
12003
12023
  codebaseIndexEnabled?: boolean | undefined;
12004
12024
  codebaseIndexQdrantUrl?: string | undefined;
12005
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
12025
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
12006
12026
  codebaseIndexEmbedderBaseUrl?: string | undefined;
12007
12027
  codebaseIndexEmbedderModelId?: string | undefined;
12008
12028
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -12054,7 +12074,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
12054
12074
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
12055
12075
  codebaseIndexOpenRouterApiKey?: string | undefined;
12056
12076
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
12057
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12077
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12058
12078
  includeMaxTokens?: boolean | undefined;
12059
12079
  diffEnabled?: boolean | undefined;
12060
12080
  todoListEnabled?: boolean | undefined;
@@ -12102,7 +12122,6 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
12102
12122
  vertex1MContext?: boolean | undefined;
12103
12123
  openAiBaseUrl?: string | undefined;
12104
12124
  openAiApiKey?: string | undefined;
12105
- openAiLegacyFormat?: boolean | undefined;
12106
12125
  openAiR1FormatEnabled?: boolean | undefined;
12107
12126
  openAiModelId?: string | undefined;
12108
12127
  openAiCustomModelInfo?: {
@@ -12211,6 +12230,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
12211
12230
  ioIntelligenceModelId?: string | undefined;
12212
12231
  ioIntelligenceApiKey?: string | undefined;
12213
12232
  qwenCodeOauthPath?: string | undefined;
12233
+ rooApiKey?: string | undefined;
12214
12234
  vercelAiGatewayApiKey?: string | undefined;
12215
12235
  vercelAiGatewayModelId?: string | undefined;
12216
12236
  basetenApiKey?: string | undefined;
@@ -12233,7 +12253,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
12233
12253
  listApiConfigMeta?: {
12234
12254
  id: string;
12235
12255
  name: string;
12236
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12256
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12237
12257
  modelId?: string | undefined;
12238
12258
  }[] | undefined;
12239
12259
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -12255,6 +12275,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
12255
12275
  size?: number | undefined;
12256
12276
  workspace?: string | undefined;
12257
12277
  mode?: string | undefined;
12278
+ apiConfigName?: string | undefined;
12258
12279
  delegatedToId?: string | undefined;
12259
12280
  childIds?: string[] | undefined;
12260
12281
  awaitingChildId?: string | undefined;
@@ -12341,6 +12362,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
12341
12362
  openai?: Record<string, {
12342
12363
  dimension: number;
12343
12364
  }> | undefined;
12365
+ openrouter?: Record<string, {
12366
+ dimension: number;
12367
+ }> | undefined;
12368
+ "vercel-ai-gateway"?: Record<string, {
12369
+ dimension: number;
12370
+ }> | undefined;
12344
12371
  ollama?: Record<string, {
12345
12372
  dimension: number;
12346
12373
  }> | undefined;
@@ -12353,20 +12380,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
12353
12380
  mistral?: Record<string, {
12354
12381
  dimension: number;
12355
12382
  }> | undefined;
12356
- "vercel-ai-gateway"?: Record<string, {
12357
- dimension: number;
12358
- }> | undefined;
12359
12383
  bedrock?: Record<string, {
12360
12384
  dimension: number;
12361
12385
  }> | undefined;
12362
- openrouter?: Record<string, {
12363
- dimension: number;
12364
- }> | undefined;
12365
12386
  } | undefined;
12366
12387
  codebaseIndexConfig?: {
12367
12388
  codebaseIndexEnabled?: boolean | undefined;
12368
12389
  codebaseIndexQdrantUrl?: string | undefined;
12369
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
12390
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
12370
12391
  codebaseIndexEmbedderBaseUrl?: string | undefined;
12371
12392
  codebaseIndexEmbedderModelId?: string | undefined;
12372
12393
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -12521,6 +12542,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12521
12542
  vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
12522
12543
  vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
12523
12544
  apiModelId: z.ZodOptional<z.ZodString>;
12545
+ rooApiKey: z.ZodOptional<z.ZodString>;
12524
12546
  qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
12525
12547
  ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
12526
12548
  ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
@@ -12595,7 +12617,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12595
12617
  ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
12596
12618
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
12597
12619
  openAiApiKey: z.ZodOptional<z.ZodString>;
12598
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
12599
12620
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
12600
12621
  openAiModelId: z.ZodOptional<z.ZodString>;
12601
12622
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -12782,12 +12803,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12782
12803
  }, "strip", z.ZodTypeAny, {
12783
12804
  id: string;
12784
12805
  name: string;
12785
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12806
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12786
12807
  modelId?: string | undefined;
12787
12808
  }, {
12788
12809
  id: string;
12789
12810
  name: string;
12790
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12811
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
12791
12812
  modelId?: string | undefined;
12792
12813
  }>, "many">>;
12793
12814
  pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
@@ -12809,6 +12830,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12809
12830
  workspace: z.ZodOptional<z.ZodString>;
12810
12831
  mode: z.ZodOptional<z.ZodString>;
12811
12832
  toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
12833
+ apiConfigName: z.ZodOptional<z.ZodString>;
12812
12834
  status: z.ZodOptional<z.ZodEnum<["active", "completed", "delegated"]>>;
12813
12835
  delegatedToId: z.ZodOptional<z.ZodString>;
12814
12836
  childIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -12832,6 +12854,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12832
12854
  size?: number | undefined;
12833
12855
  workspace?: string | undefined;
12834
12856
  mode?: string | undefined;
12857
+ apiConfigName?: string | undefined;
12835
12858
  delegatedToId?: string | undefined;
12836
12859
  childIds?: string[] | undefined;
12837
12860
  awaitingChildId?: string | undefined;
@@ -12854,6 +12877,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
12854
12877
  size?: number | undefined;
12855
12878
  workspace?: string | undefined;
12856
12879
  mode?: string | undefined;
12880
+ apiConfigName?: string | undefined;
12857
12881
  delegatedToId?: string | undefined;
12858
12882
  childIds?: string[] | undefined;
12859
12883
  awaitingChildId?: string | undefined;
@@ -13016,6 +13040,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13016
13040
  openai?: Record<string, {
13017
13041
  dimension: number;
13018
13042
  }> | undefined;
13043
+ openrouter?: Record<string, {
13044
+ dimension: number;
13045
+ }> | undefined;
13046
+ "vercel-ai-gateway"?: Record<string, {
13047
+ dimension: number;
13048
+ }> | undefined;
13019
13049
  ollama?: Record<string, {
13020
13050
  dimension: number;
13021
13051
  }> | undefined;
@@ -13028,17 +13058,17 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13028
13058
  mistral?: Record<string, {
13029
13059
  dimension: number;
13030
13060
  }> | undefined;
13031
- "vercel-ai-gateway"?: Record<string, {
13061
+ bedrock?: Record<string, {
13032
13062
  dimension: number;
13033
13063
  }> | undefined;
13034
- bedrock?: Record<string, {
13064
+ }, {
13065
+ openai?: Record<string, {
13035
13066
  dimension: number;
13036
13067
  }> | undefined;
13037
13068
  openrouter?: Record<string, {
13038
13069
  dimension: number;
13039
13070
  }> | undefined;
13040
- }, {
13041
- openai?: Record<string, {
13071
+ "vercel-ai-gateway"?: Record<string, {
13042
13072
  dimension: number;
13043
13073
  }> | undefined;
13044
13074
  ollama?: Record<string, {
@@ -13053,15 +13083,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13053
13083
  mistral?: Record<string, {
13054
13084
  dimension: number;
13055
13085
  }> | undefined;
13056
- "vercel-ai-gateway"?: Record<string, {
13057
- dimension: number;
13058
- }> | undefined;
13059
13086
  bedrock?: Record<string, {
13060
13087
  dimension: number;
13061
13088
  }> | undefined;
13062
- openrouter?: Record<string, {
13063
- dimension: number;
13064
- }> | undefined;
13065
13089
  }>>;
13066
13090
  codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
13067
13091
  codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
@@ -13080,7 +13104,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13080
13104
  }, "strip", z.ZodTypeAny, {
13081
13105
  codebaseIndexEnabled?: boolean | undefined;
13082
13106
  codebaseIndexQdrantUrl?: string | undefined;
13083
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
13107
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
13084
13108
  codebaseIndexEmbedderBaseUrl?: string | undefined;
13085
13109
  codebaseIndexEmbedderModelId?: string | undefined;
13086
13110
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -13094,7 +13118,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13094
13118
  }, {
13095
13119
  codebaseIndexEnabled?: boolean | undefined;
13096
13120
  codebaseIndexQdrantUrl?: string | undefined;
13097
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
13121
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
13098
13122
  codebaseIndexEmbedderBaseUrl?: string | undefined;
13099
13123
  codebaseIndexEmbedderModelId?: string | undefined;
13100
13124
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -13199,7 +13223,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13199
13223
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
13200
13224
  codebaseIndexOpenRouterApiKey?: string | undefined;
13201
13225
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
13202
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13226
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13203
13227
  includeMaxTokens?: boolean | undefined;
13204
13228
  diffEnabled?: boolean | undefined;
13205
13229
  todoListEnabled?: boolean | undefined;
@@ -13247,7 +13271,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13247
13271
  vertex1MContext?: boolean | undefined;
13248
13272
  openAiBaseUrl?: string | undefined;
13249
13273
  openAiApiKey?: string | undefined;
13250
- openAiLegacyFormat?: boolean | undefined;
13251
13274
  openAiR1FormatEnabled?: boolean | undefined;
13252
13275
  openAiModelId?: string | undefined;
13253
13276
  openAiCustomModelInfo?: {
@@ -13356,6 +13379,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13356
13379
  ioIntelligenceModelId?: string | undefined;
13357
13380
  ioIntelligenceApiKey?: string | undefined;
13358
13381
  qwenCodeOauthPath?: string | undefined;
13382
+ rooApiKey?: string | undefined;
13359
13383
  vercelAiGatewayApiKey?: string | undefined;
13360
13384
  vercelAiGatewayModelId?: string | undefined;
13361
13385
  basetenApiKey?: string | undefined;
@@ -13378,7 +13402,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13378
13402
  listApiConfigMeta?: {
13379
13403
  id: string;
13380
13404
  name: string;
13381
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13405
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13382
13406
  modelId?: string | undefined;
13383
13407
  }[] | undefined;
13384
13408
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -13400,6 +13424,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13400
13424
  size?: number | undefined;
13401
13425
  workspace?: string | undefined;
13402
13426
  mode?: string | undefined;
13427
+ apiConfigName?: string | undefined;
13403
13428
  delegatedToId?: string | undefined;
13404
13429
  childIds?: string[] | undefined;
13405
13430
  awaitingChildId?: string | undefined;
@@ -13486,6 +13511,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13486
13511
  openai?: Record<string, {
13487
13512
  dimension: number;
13488
13513
  }> | undefined;
13514
+ openrouter?: Record<string, {
13515
+ dimension: number;
13516
+ }> | undefined;
13517
+ "vercel-ai-gateway"?: Record<string, {
13518
+ dimension: number;
13519
+ }> | undefined;
13489
13520
  ollama?: Record<string, {
13490
13521
  dimension: number;
13491
13522
  }> | undefined;
@@ -13498,20 +13529,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13498
13529
  mistral?: Record<string, {
13499
13530
  dimension: number;
13500
13531
  }> | undefined;
13501
- "vercel-ai-gateway"?: Record<string, {
13502
- dimension: number;
13503
- }> | undefined;
13504
13532
  bedrock?: Record<string, {
13505
13533
  dimension: number;
13506
13534
  }> | undefined;
13507
- openrouter?: Record<string, {
13508
- dimension: number;
13509
- }> | undefined;
13510
13535
  } | undefined;
13511
13536
  codebaseIndexConfig?: {
13512
13537
  codebaseIndexEnabled?: boolean | undefined;
13513
13538
  codebaseIndexQdrantUrl?: string | undefined;
13514
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
13539
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
13515
13540
  codebaseIndexEmbedderBaseUrl?: string | undefined;
13516
13541
  codebaseIndexEmbedderModelId?: string | undefined;
13517
13542
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -13555,7 +13580,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13555
13580
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
13556
13581
  codebaseIndexOpenRouterApiKey?: string | undefined;
13557
13582
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
13558
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13583
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13559
13584
  includeMaxTokens?: boolean | undefined;
13560
13585
  diffEnabled?: boolean | undefined;
13561
13586
  todoListEnabled?: boolean | undefined;
@@ -13603,7 +13628,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13603
13628
  vertex1MContext?: boolean | undefined;
13604
13629
  openAiBaseUrl?: string | undefined;
13605
13630
  openAiApiKey?: string | undefined;
13606
- openAiLegacyFormat?: boolean | undefined;
13607
13631
  openAiR1FormatEnabled?: boolean | undefined;
13608
13632
  openAiModelId?: string | undefined;
13609
13633
  openAiCustomModelInfo?: {
@@ -13712,6 +13736,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13712
13736
  ioIntelligenceModelId?: string | undefined;
13713
13737
  ioIntelligenceApiKey?: string | undefined;
13714
13738
  qwenCodeOauthPath?: string | undefined;
13739
+ rooApiKey?: string | undefined;
13715
13740
  vercelAiGatewayApiKey?: string | undefined;
13716
13741
  vercelAiGatewayModelId?: string | undefined;
13717
13742
  basetenApiKey?: string | undefined;
@@ -13734,7 +13759,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13734
13759
  listApiConfigMeta?: {
13735
13760
  id: string;
13736
13761
  name: string;
13737
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13762
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13738
13763
  modelId?: string | undefined;
13739
13764
  }[] | undefined;
13740
13765
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -13756,6 +13781,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13756
13781
  size?: number | undefined;
13757
13782
  workspace?: string | undefined;
13758
13783
  mode?: string | undefined;
13784
+ apiConfigName?: string | undefined;
13759
13785
  delegatedToId?: string | undefined;
13760
13786
  childIds?: string[] | undefined;
13761
13787
  awaitingChildId?: string | undefined;
@@ -13842,6 +13868,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13842
13868
  openai?: Record<string, {
13843
13869
  dimension: number;
13844
13870
  }> | undefined;
13871
+ openrouter?: Record<string, {
13872
+ dimension: number;
13873
+ }> | undefined;
13874
+ "vercel-ai-gateway"?: Record<string, {
13875
+ dimension: number;
13876
+ }> | undefined;
13845
13877
  ollama?: Record<string, {
13846
13878
  dimension: number;
13847
13879
  }> | undefined;
@@ -13854,20 +13886,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13854
13886
  mistral?: Record<string, {
13855
13887
  dimension: number;
13856
13888
  }> | undefined;
13857
- "vercel-ai-gateway"?: Record<string, {
13858
- dimension: number;
13859
- }> | undefined;
13860
13889
  bedrock?: Record<string, {
13861
13890
  dimension: number;
13862
13891
  }> | undefined;
13863
- openrouter?: Record<string, {
13864
- dimension: number;
13865
- }> | undefined;
13866
13892
  } | undefined;
13867
13893
  codebaseIndexConfig?: {
13868
13894
  codebaseIndexEnabled?: boolean | undefined;
13869
13895
  codebaseIndexQdrantUrl?: string | undefined;
13870
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
13896
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
13871
13897
  codebaseIndexEmbedderBaseUrl?: string | undefined;
13872
13898
  codebaseIndexEmbedderModelId?: string | undefined;
13873
13899
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -13917,7 +13943,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13917
13943
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
13918
13944
  codebaseIndexOpenRouterApiKey?: string | undefined;
13919
13945
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
13920
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13946
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
13921
13947
  includeMaxTokens?: boolean | undefined;
13922
13948
  diffEnabled?: boolean | undefined;
13923
13949
  todoListEnabled?: boolean | undefined;
@@ -13965,7 +13991,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13965
13991
  vertex1MContext?: boolean | undefined;
13966
13992
  openAiBaseUrl?: string | undefined;
13967
13993
  openAiApiKey?: string | undefined;
13968
- openAiLegacyFormat?: boolean | undefined;
13969
13994
  openAiR1FormatEnabled?: boolean | undefined;
13970
13995
  openAiModelId?: string | undefined;
13971
13996
  openAiCustomModelInfo?: {
@@ -14074,6 +14099,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14074
14099
  ioIntelligenceModelId?: string | undefined;
14075
14100
  ioIntelligenceApiKey?: string | undefined;
14076
14101
  qwenCodeOauthPath?: string | undefined;
14102
+ rooApiKey?: string | undefined;
14077
14103
  vercelAiGatewayApiKey?: string | undefined;
14078
14104
  vercelAiGatewayModelId?: string | undefined;
14079
14105
  basetenApiKey?: string | undefined;
@@ -14096,7 +14122,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14096
14122
  listApiConfigMeta?: {
14097
14123
  id: string;
14098
14124
  name: string;
14099
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14125
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14100
14126
  modelId?: string | undefined;
14101
14127
  }[] | undefined;
14102
14128
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -14118,6 +14144,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14118
14144
  size?: number | undefined;
14119
14145
  workspace?: string | undefined;
14120
14146
  mode?: string | undefined;
14147
+ apiConfigName?: string | undefined;
14121
14148
  delegatedToId?: string | undefined;
14122
14149
  childIds?: string[] | undefined;
14123
14150
  awaitingChildId?: string | undefined;
@@ -14204,6 +14231,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14204
14231
  openai?: Record<string, {
14205
14232
  dimension: number;
14206
14233
  }> | undefined;
14234
+ openrouter?: Record<string, {
14235
+ dimension: number;
14236
+ }> | undefined;
14237
+ "vercel-ai-gateway"?: Record<string, {
14238
+ dimension: number;
14239
+ }> | undefined;
14207
14240
  ollama?: Record<string, {
14208
14241
  dimension: number;
14209
14242
  }> | undefined;
@@ -14216,20 +14249,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14216
14249
  mistral?: Record<string, {
14217
14250
  dimension: number;
14218
14251
  }> | undefined;
14219
- "vercel-ai-gateway"?: Record<string, {
14220
- dimension: number;
14221
- }> | undefined;
14222
14252
  bedrock?: Record<string, {
14223
14253
  dimension: number;
14224
14254
  }> | undefined;
14225
- openrouter?: Record<string, {
14226
- dimension: number;
14227
- }> | undefined;
14228
14255
  } | undefined;
14229
14256
  codebaseIndexConfig?: {
14230
14257
  codebaseIndexEnabled?: boolean | undefined;
14231
14258
  codebaseIndexQdrantUrl?: string | undefined;
14232
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
14259
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
14233
14260
  codebaseIndexEmbedderBaseUrl?: string | undefined;
14234
14261
  codebaseIndexEmbedderModelId?: string | undefined;
14235
14262
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -14278,7 +14305,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14278
14305
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
14279
14306
  codebaseIndexOpenRouterApiKey?: string | undefined;
14280
14307
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
14281
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14308
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14282
14309
  includeMaxTokens?: boolean | undefined;
14283
14310
  diffEnabled?: boolean | undefined;
14284
14311
  todoListEnabled?: boolean | undefined;
@@ -14326,7 +14353,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14326
14353
  vertex1MContext?: boolean | undefined;
14327
14354
  openAiBaseUrl?: string | undefined;
14328
14355
  openAiApiKey?: string | undefined;
14329
- openAiLegacyFormat?: boolean | undefined;
14330
14356
  openAiR1FormatEnabled?: boolean | undefined;
14331
14357
  openAiModelId?: string | undefined;
14332
14358
  openAiCustomModelInfo?: {
@@ -14435,6 +14461,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14435
14461
  ioIntelligenceModelId?: string | undefined;
14436
14462
  ioIntelligenceApiKey?: string | undefined;
14437
14463
  qwenCodeOauthPath?: string | undefined;
14464
+ rooApiKey?: string | undefined;
14438
14465
  vercelAiGatewayApiKey?: string | undefined;
14439
14466
  vercelAiGatewayModelId?: string | undefined;
14440
14467
  basetenApiKey?: string | undefined;
@@ -14457,7 +14484,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14457
14484
  listApiConfigMeta?: {
14458
14485
  id: string;
14459
14486
  name: string;
14460
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14487
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14461
14488
  modelId?: string | undefined;
14462
14489
  }[] | undefined;
14463
14490
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -14479,6 +14506,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14479
14506
  size?: number | undefined;
14480
14507
  workspace?: string | undefined;
14481
14508
  mode?: string | undefined;
14509
+ apiConfigName?: string | undefined;
14482
14510
  delegatedToId?: string | undefined;
14483
14511
  childIds?: string[] | undefined;
14484
14512
  awaitingChildId?: string | undefined;
@@ -14565,6 +14593,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14565
14593
  openai?: Record<string, {
14566
14594
  dimension: number;
14567
14595
  }> | undefined;
14596
+ openrouter?: Record<string, {
14597
+ dimension: number;
14598
+ }> | undefined;
14599
+ "vercel-ai-gateway"?: Record<string, {
14600
+ dimension: number;
14601
+ }> | undefined;
14568
14602
  ollama?: Record<string, {
14569
14603
  dimension: number;
14570
14604
  }> | undefined;
@@ -14577,20 +14611,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14577
14611
  mistral?: Record<string, {
14578
14612
  dimension: number;
14579
14613
  }> | undefined;
14580
- "vercel-ai-gateway"?: Record<string, {
14581
- dimension: number;
14582
- }> | undefined;
14583
14614
  bedrock?: Record<string, {
14584
14615
  dimension: number;
14585
14616
  }> | undefined;
14586
- openrouter?: Record<string, {
14587
- dimension: number;
14588
- }> | undefined;
14589
14617
  } | undefined;
14590
14618
  codebaseIndexConfig?: {
14591
14619
  codebaseIndexEnabled?: boolean | undefined;
14592
14620
  codebaseIndexQdrantUrl?: string | undefined;
14593
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
14621
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
14594
14622
  codebaseIndexEmbedderBaseUrl?: string | undefined;
14595
14623
  codebaseIndexEmbedderModelId?: string | undefined;
14596
14624
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -14641,7 +14669,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14641
14669
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
14642
14670
  codebaseIndexOpenRouterApiKey?: string | undefined;
14643
14671
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
14644
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14672
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14645
14673
  includeMaxTokens?: boolean | undefined;
14646
14674
  diffEnabled?: boolean | undefined;
14647
14675
  todoListEnabled?: boolean | undefined;
@@ -14689,7 +14717,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14689
14717
  vertex1MContext?: boolean | undefined;
14690
14718
  openAiBaseUrl?: string | undefined;
14691
14719
  openAiApiKey?: string | undefined;
14692
- openAiLegacyFormat?: boolean | undefined;
14693
14720
  openAiR1FormatEnabled?: boolean | undefined;
14694
14721
  openAiModelId?: string | undefined;
14695
14722
  openAiCustomModelInfo?: {
@@ -14798,6 +14825,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14798
14825
  ioIntelligenceModelId?: string | undefined;
14799
14826
  ioIntelligenceApiKey?: string | undefined;
14800
14827
  qwenCodeOauthPath?: string | undefined;
14828
+ rooApiKey?: string | undefined;
14801
14829
  vercelAiGatewayApiKey?: string | undefined;
14802
14830
  vercelAiGatewayModelId?: string | undefined;
14803
14831
  basetenApiKey?: string | undefined;
@@ -14820,7 +14848,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14820
14848
  listApiConfigMeta?: {
14821
14849
  id: string;
14822
14850
  name: string;
14823
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14851
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
14824
14852
  modelId?: string | undefined;
14825
14853
  }[] | undefined;
14826
14854
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -14842,6 +14870,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14842
14870
  size?: number | undefined;
14843
14871
  workspace?: string | undefined;
14844
14872
  mode?: string | undefined;
14873
+ apiConfigName?: string | undefined;
14845
14874
  delegatedToId?: string | undefined;
14846
14875
  childIds?: string[] | undefined;
14847
14876
  awaitingChildId?: string | undefined;
@@ -14928,6 +14957,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14928
14957
  openai?: Record<string, {
14929
14958
  dimension: number;
14930
14959
  }> | undefined;
14960
+ openrouter?: Record<string, {
14961
+ dimension: number;
14962
+ }> | undefined;
14963
+ "vercel-ai-gateway"?: Record<string, {
14964
+ dimension: number;
14965
+ }> | undefined;
14931
14966
  ollama?: Record<string, {
14932
14967
  dimension: number;
14933
14968
  }> | undefined;
@@ -14940,20 +14975,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
14940
14975
  mistral?: Record<string, {
14941
14976
  dimension: number;
14942
14977
  }> | undefined;
14943
- "vercel-ai-gateway"?: Record<string, {
14944
- dimension: number;
14945
- }> | undefined;
14946
14978
  bedrock?: Record<string, {
14947
14979
  dimension: number;
14948
14980
  }> | undefined;
14949
- openrouter?: Record<string, {
14950
- dimension: number;
14951
- }> | undefined;
14952
14981
  } | undefined;
14953
14982
  codebaseIndexConfig?: {
14954
14983
  codebaseIndexEnabled?: boolean | undefined;
14955
14984
  codebaseIndexQdrantUrl?: string | undefined;
14956
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
14985
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
14957
14986
  codebaseIndexEmbedderBaseUrl?: string | undefined;
14958
14987
  codebaseIndexEmbedderModelId?: string | undefined;
14959
14988
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -15005,7 +15034,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15005
15034
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
15006
15035
  codebaseIndexOpenRouterApiKey?: string | undefined;
15007
15036
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
15008
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15037
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15009
15038
  includeMaxTokens?: boolean | undefined;
15010
15039
  diffEnabled?: boolean | undefined;
15011
15040
  todoListEnabled?: boolean | undefined;
@@ -15053,7 +15082,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15053
15082
  vertex1MContext?: boolean | undefined;
15054
15083
  openAiBaseUrl?: string | undefined;
15055
15084
  openAiApiKey?: string | undefined;
15056
- openAiLegacyFormat?: boolean | undefined;
15057
15085
  openAiR1FormatEnabled?: boolean | undefined;
15058
15086
  openAiModelId?: string | undefined;
15059
15087
  openAiCustomModelInfo?: {
@@ -15162,6 +15190,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15162
15190
  ioIntelligenceModelId?: string | undefined;
15163
15191
  ioIntelligenceApiKey?: string | undefined;
15164
15192
  qwenCodeOauthPath?: string | undefined;
15193
+ rooApiKey?: string | undefined;
15165
15194
  vercelAiGatewayApiKey?: string | undefined;
15166
15195
  vercelAiGatewayModelId?: string | undefined;
15167
15196
  basetenApiKey?: string | undefined;
@@ -15184,7 +15213,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15184
15213
  listApiConfigMeta?: {
15185
15214
  id: string;
15186
15215
  name: string;
15187
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15216
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15188
15217
  modelId?: string | undefined;
15189
15218
  }[] | undefined;
15190
15219
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -15206,6 +15235,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15206
15235
  size?: number | undefined;
15207
15236
  workspace?: string | undefined;
15208
15237
  mode?: string | undefined;
15238
+ apiConfigName?: string | undefined;
15209
15239
  delegatedToId?: string | undefined;
15210
15240
  childIds?: string[] | undefined;
15211
15241
  awaitingChildId?: string | undefined;
@@ -15292,6 +15322,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15292
15322
  openai?: Record<string, {
15293
15323
  dimension: number;
15294
15324
  }> | undefined;
15325
+ openrouter?: Record<string, {
15326
+ dimension: number;
15327
+ }> | undefined;
15328
+ "vercel-ai-gateway"?: Record<string, {
15329
+ dimension: number;
15330
+ }> | undefined;
15295
15331
  ollama?: Record<string, {
15296
15332
  dimension: number;
15297
15333
  }> | undefined;
@@ -15304,20 +15340,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15304
15340
  mistral?: Record<string, {
15305
15341
  dimension: number;
15306
15342
  }> | undefined;
15307
- "vercel-ai-gateway"?: Record<string, {
15308
- dimension: number;
15309
- }> | undefined;
15310
15343
  bedrock?: Record<string, {
15311
15344
  dimension: number;
15312
15345
  }> | undefined;
15313
- openrouter?: Record<string, {
15314
- dimension: number;
15315
- }> | undefined;
15316
15346
  } | undefined;
15317
15347
  codebaseIndexConfig?: {
15318
15348
  codebaseIndexEnabled?: boolean | undefined;
15319
15349
  codebaseIndexQdrantUrl?: string | undefined;
15320
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
15350
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
15321
15351
  codebaseIndexEmbedderBaseUrl?: string | undefined;
15322
15352
  codebaseIndexEmbedderModelId?: string | undefined;
15323
15353
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -15423,7 +15453,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15423
15453
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
15424
15454
  codebaseIndexOpenRouterApiKey?: string | undefined;
15425
15455
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
15426
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15456
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15427
15457
  includeMaxTokens?: boolean | undefined;
15428
15458
  diffEnabled?: boolean | undefined;
15429
15459
  todoListEnabled?: boolean | undefined;
@@ -15471,7 +15501,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15471
15501
  vertex1MContext?: boolean | undefined;
15472
15502
  openAiBaseUrl?: string | undefined;
15473
15503
  openAiApiKey?: string | undefined;
15474
- openAiLegacyFormat?: boolean | undefined;
15475
15504
  openAiR1FormatEnabled?: boolean | undefined;
15476
15505
  openAiModelId?: string | undefined;
15477
15506
  openAiCustomModelInfo?: {
@@ -15580,6 +15609,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15580
15609
  ioIntelligenceModelId?: string | undefined;
15581
15610
  ioIntelligenceApiKey?: string | undefined;
15582
15611
  qwenCodeOauthPath?: string | undefined;
15612
+ rooApiKey?: string | undefined;
15583
15613
  vercelAiGatewayApiKey?: string | undefined;
15584
15614
  vercelAiGatewayModelId?: string | undefined;
15585
15615
  basetenApiKey?: string | undefined;
@@ -15602,7 +15632,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15602
15632
  listApiConfigMeta?: {
15603
15633
  id: string;
15604
15634
  name: string;
15605
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15635
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15606
15636
  modelId?: string | undefined;
15607
15637
  }[] | undefined;
15608
15638
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -15624,6 +15654,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15624
15654
  size?: number | undefined;
15625
15655
  workspace?: string | undefined;
15626
15656
  mode?: string | undefined;
15657
+ apiConfigName?: string | undefined;
15627
15658
  delegatedToId?: string | undefined;
15628
15659
  childIds?: string[] | undefined;
15629
15660
  awaitingChildId?: string | undefined;
@@ -15710,6 +15741,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15710
15741
  openai?: Record<string, {
15711
15742
  dimension: number;
15712
15743
  }> | undefined;
15744
+ openrouter?: Record<string, {
15745
+ dimension: number;
15746
+ }> | undefined;
15747
+ "vercel-ai-gateway"?: Record<string, {
15748
+ dimension: number;
15749
+ }> | undefined;
15713
15750
  ollama?: Record<string, {
15714
15751
  dimension: number;
15715
15752
  }> | undefined;
@@ -15722,20 +15759,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15722
15759
  mistral?: Record<string, {
15723
15760
  dimension: number;
15724
15761
  }> | undefined;
15725
- "vercel-ai-gateway"?: Record<string, {
15726
- dimension: number;
15727
- }> | undefined;
15728
15762
  bedrock?: Record<string, {
15729
15763
  dimension: number;
15730
15764
  }> | undefined;
15731
- openrouter?: Record<string, {
15732
- dimension: number;
15733
- }> | undefined;
15734
15765
  } | undefined;
15735
15766
  codebaseIndexConfig?: {
15736
15767
  codebaseIndexEnabled?: boolean | undefined;
15737
15768
  codebaseIndexQdrantUrl?: string | undefined;
15738
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
15769
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
15739
15770
  codebaseIndexEmbedderBaseUrl?: string | undefined;
15740
15771
  codebaseIndexEmbedderModelId?: string | undefined;
15741
15772
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -15807,7 +15838,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15807
15838
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
15808
15839
  codebaseIndexOpenRouterApiKey?: string | undefined;
15809
15840
  language?: "id" | "ca" | "de" | "en" | "es" | "fr" | "hi" | "it" | "ja" | "ko" | "nl" | "pl" | "pt-BR" | "ru" | "tr" | "vi" | "zh-CN" | "zh-TW" | undefined;
15810
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15841
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15811
15842
  includeMaxTokens?: boolean | undefined;
15812
15843
  diffEnabled?: boolean | undefined;
15813
15844
  todoListEnabled?: boolean | undefined;
@@ -15855,7 +15886,6 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15855
15886
  vertex1MContext?: boolean | undefined;
15856
15887
  openAiBaseUrl?: string | undefined;
15857
15888
  openAiApiKey?: string | undefined;
15858
- openAiLegacyFormat?: boolean | undefined;
15859
15889
  openAiR1FormatEnabled?: boolean | undefined;
15860
15890
  openAiModelId?: string | undefined;
15861
15891
  openAiCustomModelInfo?: {
@@ -15964,6 +15994,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15964
15994
  ioIntelligenceModelId?: string | undefined;
15965
15995
  ioIntelligenceApiKey?: string | undefined;
15966
15996
  qwenCodeOauthPath?: string | undefined;
15997
+ rooApiKey?: string | undefined;
15967
15998
  vercelAiGatewayApiKey?: string | undefined;
15968
15999
  vercelAiGatewayModelId?: string | undefined;
15969
16000
  basetenApiKey?: string | undefined;
@@ -15986,7 +16017,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15986
16017
  listApiConfigMeta?: {
15987
16018
  id: string;
15988
16019
  name: string;
15989
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
16020
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
15990
16021
  modelId?: string | undefined;
15991
16022
  }[] | undefined;
15992
16023
  pinnedApiConfigs?: Record<string, boolean> | undefined;
@@ -16008,6 +16039,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
16008
16039
  size?: number | undefined;
16009
16040
  workspace?: string | undefined;
16010
16041
  mode?: string | undefined;
16042
+ apiConfigName?: string | undefined;
16011
16043
  delegatedToId?: string | undefined;
16012
16044
  childIds?: string[] | undefined;
16013
16045
  awaitingChildId?: string | undefined;
@@ -16094,6 +16126,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
16094
16126
  openai?: Record<string, {
16095
16127
  dimension: number;
16096
16128
  }> | undefined;
16129
+ openrouter?: Record<string, {
16130
+ dimension: number;
16131
+ }> | undefined;
16132
+ "vercel-ai-gateway"?: Record<string, {
16133
+ dimension: number;
16134
+ }> | undefined;
16097
16135
  ollama?: Record<string, {
16098
16136
  dimension: number;
16099
16137
  }> | undefined;
@@ -16106,20 +16144,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
16106
16144
  mistral?: Record<string, {
16107
16145
  dimension: number;
16108
16146
  }> | undefined;
16109
- "vercel-ai-gateway"?: Record<string, {
16110
- dimension: number;
16111
- }> | undefined;
16112
16147
  bedrock?: Record<string, {
16113
16148
  dimension: number;
16114
16149
  }> | undefined;
16115
- openrouter?: Record<string, {
16116
- dimension: number;
16117
- }> | undefined;
16118
16150
  } | undefined;
16119
16151
  codebaseIndexConfig?: {
16120
16152
  codebaseIndexEnabled?: boolean | undefined;
16121
16153
  codebaseIndexQdrantUrl?: string | undefined;
16122
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
16154
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
16123
16155
  codebaseIndexEmbedderBaseUrl?: string | undefined;
16124
16156
  codebaseIndexEmbedderModelId?: string | undefined;
16125
16157
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -17879,7 +17911,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
17879
17911
  }, "strip", z.ZodTypeAny, {
17880
17912
  isSubtask?: boolean | undefined;
17881
17913
  taskId?: string | undefined;
17882
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17914
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17883
17915
  modelId?: string | undefined;
17884
17916
  parentTaskId?: string | undefined;
17885
17917
  diffStrategy?: string | undefined;
@@ -17892,7 +17924,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
17892
17924
  }, {
17893
17925
  isSubtask?: boolean | undefined;
17894
17926
  taskId?: string | undefined;
17895
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17927
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17896
17928
  modelId?: string | undefined;
17897
17929
  parentTaskId?: string | undefined;
17898
17930
  diffStrategy?: string | undefined;
@@ -17963,7 +17995,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
17963
17995
  editorName: string;
17964
17996
  isSubtask?: boolean | undefined;
17965
17997
  taskId?: string | undefined;
17966
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17998
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17967
17999
  modelId?: string | undefined;
17968
18000
  parentTaskId?: string | undefined;
17969
18001
  hostname?: string | undefined;
@@ -17988,7 +18020,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
17988
18020
  editorName: string;
17989
18021
  isSubtask?: boolean | undefined;
17990
18022
  taskId?: string | undefined;
17991
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18023
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
17992
18024
  modelId?: string | undefined;
17993
18025
  parentTaskId?: string | undefined;
17994
18026
  hostname?: string | undefined;
@@ -18062,7 +18094,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18062
18094
  editorName: string;
18063
18095
  isSubtask?: boolean | undefined;
18064
18096
  taskId?: string | undefined;
18065
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18097
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18066
18098
  modelId?: string | undefined;
18067
18099
  parentTaskId?: string | undefined;
18068
18100
  hostname?: string | undefined;
@@ -18087,7 +18119,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18087
18119
  editorName: string;
18088
18120
  isSubtask?: boolean | undefined;
18089
18121
  taskId?: string | undefined;
18090
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18122
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18091
18123
  modelId?: string | undefined;
18092
18124
  parentTaskId?: string | undefined;
18093
18125
  hostname?: string | undefined;
@@ -18115,7 +18147,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18115
18147
  editorName: string;
18116
18148
  isSubtask?: boolean | undefined;
18117
18149
  taskId?: string | undefined;
18118
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18150
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18119
18151
  modelId?: string | undefined;
18120
18152
  parentTaskId?: string | undefined;
18121
18153
  hostname?: string | undefined;
@@ -18143,7 +18175,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18143
18175
  editorName: string;
18144
18176
  isSubtask?: boolean | undefined;
18145
18177
  taskId?: string | undefined;
18146
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18178
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18147
18179
  modelId?: string | undefined;
18148
18180
  parentTaskId?: string | undefined;
18149
18181
  hostname?: string | undefined;
@@ -18210,7 +18242,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18210
18242
  newSetting: "unset" | "enabled" | "disabled";
18211
18243
  isSubtask?: boolean | undefined;
18212
18244
  taskId?: string | undefined;
18213
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18245
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18214
18246
  modelId?: string | undefined;
18215
18247
  parentTaskId?: string | undefined;
18216
18248
  hostname?: string | undefined;
@@ -18237,7 +18269,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18237
18269
  newSetting: "unset" | "enabled" | "disabled";
18238
18270
  isSubtask?: boolean | undefined;
18239
18271
  taskId?: string | undefined;
18240
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18272
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18241
18273
  modelId?: string | undefined;
18242
18274
  parentTaskId?: string | undefined;
18243
18275
  hostname?: string | undefined;
@@ -18267,7 +18299,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18267
18299
  newSetting: "unset" | "enabled" | "disabled";
18268
18300
  isSubtask?: boolean | undefined;
18269
18301
  taskId?: string | undefined;
18270
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18302
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18271
18303
  modelId?: string | undefined;
18272
18304
  parentTaskId?: string | undefined;
18273
18305
  hostname?: string | undefined;
@@ -18297,7 +18329,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18297
18329
  newSetting: "unset" | "enabled" | "disabled";
18298
18330
  isSubtask?: boolean | undefined;
18299
18331
  taskId?: string | undefined;
18300
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18332
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18301
18333
  modelId?: string | undefined;
18302
18334
  parentTaskId?: string | undefined;
18303
18335
  hostname?: string | undefined;
@@ -18514,7 +18546,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18514
18546
  platform: string;
18515
18547
  editorName: string;
18516
18548
  isSubtask?: boolean | undefined;
18517
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18549
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18518
18550
  modelId?: string | undefined;
18519
18551
  parentTaskId?: string | undefined;
18520
18552
  hostname?: string | undefined;
@@ -18571,7 +18603,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18571
18603
  platform: string;
18572
18604
  editorName: string;
18573
18605
  isSubtask?: boolean | undefined;
18574
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18606
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18575
18607
  modelId?: string | undefined;
18576
18608
  parentTaskId?: string | undefined;
18577
18609
  hostname?: string | undefined;
@@ -18631,7 +18663,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18631
18663
  platform: string;
18632
18664
  editorName: string;
18633
18665
  isSubtask?: boolean | undefined;
18634
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18666
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18635
18667
  modelId?: string | undefined;
18636
18668
  parentTaskId?: string | undefined;
18637
18669
  hostname?: string | undefined;
@@ -18691,7 +18723,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18691
18723
  platform: string;
18692
18724
  editorName: string;
18693
18725
  isSubtask?: boolean | undefined;
18694
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18726
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18695
18727
  modelId?: string | undefined;
18696
18728
  parentTaskId?: string | undefined;
18697
18729
  hostname?: string | undefined;
@@ -18762,7 +18794,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18762
18794
  cost?: number | undefined;
18763
18795
  isSubtask?: boolean | undefined;
18764
18796
  taskId?: string | undefined;
18765
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18797
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18766
18798
  modelId?: string | undefined;
18767
18799
  parentTaskId?: string | undefined;
18768
18800
  hostname?: string | undefined;
@@ -18792,7 +18824,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18792
18824
  cost?: number | undefined;
18793
18825
  isSubtask?: boolean | undefined;
18794
18826
  taskId?: string | undefined;
18795
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18827
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18796
18828
  modelId?: string | undefined;
18797
18829
  parentTaskId?: string | undefined;
18798
18830
  hostname?: string | undefined;
@@ -18825,7 +18857,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18825
18857
  cost?: number | undefined;
18826
18858
  isSubtask?: boolean | undefined;
18827
18859
  taskId?: string | undefined;
18828
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18860
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18829
18861
  modelId?: string | undefined;
18830
18862
  parentTaskId?: string | undefined;
18831
18863
  hostname?: string | undefined;
@@ -18858,7 +18890,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
18858
18890
  cost?: number | undefined;
18859
18891
  isSubtask?: boolean | undefined;
18860
18892
  taskId?: string | undefined;
18861
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18893
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
18862
18894
  modelId?: string | undefined;
18863
18895
  parentTaskId?: string | undefined;
18864
18896
  hostname?: string | undefined;
@@ -19566,6 +19598,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
19566
19598
  vercelAiGatewayApiKey: z.ZodOptional<z.ZodString>;
19567
19599
  vercelAiGatewayModelId: z.ZodOptional<z.ZodString>;
19568
19600
  apiModelId: z.ZodOptional<z.ZodString>;
19601
+ rooApiKey: z.ZodOptional<z.ZodString>;
19569
19602
  qwenCodeOauthPath: z.ZodOptional<z.ZodString>;
19570
19603
  ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
19571
19604
  ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
@@ -19640,7 +19673,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
19640
19673
  ollamaNumCtx: z.ZodOptional<z.ZodNumber>;
19641
19674
  openAiBaseUrl: z.ZodOptional<z.ZodString>;
19642
19675
  openAiApiKey: z.ZodOptional<z.ZodString>;
19643
- openAiLegacyFormat: z.ZodOptional<z.ZodBoolean>;
19644
19676
  openAiR1FormatEnabled: z.ZodOptional<z.ZodBoolean>;
19645
19677
  openAiModelId: z.ZodOptional<z.ZodString>;
19646
19678
  openAiCustomModelInfo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -19831,7 +19863,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
19831
19863
  codebaseIndexMistralApiKey?: string | undefined;
19832
19864
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
19833
19865
  codebaseIndexOpenRouterApiKey?: string | undefined;
19834
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
19866
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
19835
19867
  includeMaxTokens?: boolean | undefined;
19836
19868
  diffEnabled?: boolean | undefined;
19837
19869
  todoListEnabled?: boolean | undefined;
@@ -19879,7 +19911,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
19879
19911
  vertex1MContext?: boolean | undefined;
19880
19912
  openAiBaseUrl?: string | undefined;
19881
19913
  openAiApiKey?: string | undefined;
19882
- openAiLegacyFormat?: boolean | undefined;
19883
19914
  openAiR1FormatEnabled?: boolean | undefined;
19884
19915
  openAiModelId?: string | undefined;
19885
19916
  openAiCustomModelInfo?: {
@@ -19988,6 +20019,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
19988
20019
  ioIntelligenceModelId?: string | undefined;
19989
20020
  ioIntelligenceApiKey?: string | undefined;
19990
20021
  qwenCodeOauthPath?: string | undefined;
20022
+ rooApiKey?: string | undefined;
19991
20023
  vercelAiGatewayApiKey?: string | undefined;
19992
20024
  vercelAiGatewayModelId?: string | undefined;
19993
20025
  basetenApiKey?: string | undefined;
@@ -20003,7 +20035,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
20003
20035
  codebaseIndexMistralApiKey?: string | undefined;
20004
20036
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
20005
20037
  codebaseIndexOpenRouterApiKey?: string | undefined;
20006
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
20038
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
20007
20039
  includeMaxTokens?: boolean | undefined;
20008
20040
  diffEnabled?: boolean | undefined;
20009
20041
  todoListEnabled?: boolean | undefined;
@@ -20051,7 +20083,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
20051
20083
  vertex1MContext?: boolean | undefined;
20052
20084
  openAiBaseUrl?: string | undefined;
20053
20085
  openAiApiKey?: string | undefined;
20054
- openAiLegacyFormat?: boolean | undefined;
20055
20086
  openAiR1FormatEnabled?: boolean | undefined;
20056
20087
  openAiModelId?: string | undefined;
20057
20088
  openAiCustomModelInfo?: {
@@ -20160,6 +20191,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
20160
20191
  ioIntelligenceModelId?: string | undefined;
20161
20192
  ioIntelligenceApiKey?: string | undefined;
20162
20193
  qwenCodeOauthPath?: string | undefined;
20194
+ rooApiKey?: string | undefined;
20163
20195
  vercelAiGatewayApiKey?: string | undefined;
20164
20196
  vercelAiGatewayModelId?: string | undefined;
20165
20197
  basetenApiKey?: string | undefined;
@@ -20239,7 +20271,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
20239
20271
  codebaseIndexMistralApiKey?: string | undefined;
20240
20272
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
20241
20273
  codebaseIndexOpenRouterApiKey?: string | undefined;
20242
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
20274
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
20243
20275
  includeMaxTokens?: boolean | undefined;
20244
20276
  diffEnabled?: boolean | undefined;
20245
20277
  todoListEnabled?: boolean | undefined;
@@ -20287,7 +20319,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
20287
20319
  vertex1MContext?: boolean | undefined;
20288
20320
  openAiBaseUrl?: string | undefined;
20289
20321
  openAiApiKey?: string | undefined;
20290
- openAiLegacyFormat?: boolean | undefined;
20291
20322
  openAiR1FormatEnabled?: boolean | undefined;
20292
20323
  openAiModelId?: string | undefined;
20293
20324
  openAiCustomModelInfo?: {
@@ -20396,6 +20427,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
20396
20427
  ioIntelligenceModelId?: string | undefined;
20397
20428
  ioIntelligenceApiKey?: string | undefined;
20398
20429
  qwenCodeOauthPath?: string | undefined;
20430
+ rooApiKey?: string | undefined;
20399
20431
  vercelAiGatewayApiKey?: string | undefined;
20400
20432
  vercelAiGatewayModelId?: string | undefined;
20401
20433
  basetenApiKey?: string | undefined;
@@ -20475,7 +20507,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
20475
20507
  codebaseIndexMistralApiKey?: string | undefined;
20476
20508
  codebaseIndexVercelAiGatewayApiKey?: string | undefined;
20477
20509
  codebaseIndexOpenRouterApiKey?: string | undefined;
20478
- apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "lmstudio" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
20510
+ apiProvider?: "openai" | "anthropic" | "openrouter" | "vercel-ai-gateway" | "huggingface" | "litellm" | "deepinfra" | "io-intelligence" | "requesty" | "unbound" | "roo" | "chutes" | "ollama" | "lmstudio" | "gemini" | "mistral" | "bedrock" | "vscode-lm" | "fake-ai" | "baseten" | "cerebras" | "claude-code" | "doubao" | "deepseek" | "featherless" | "fireworks" | "gemini-cli" | "groq" | "moonshot" | "minimax" | "openai-native" | "qwen-code" | "sambanova" | "vertex" | "xai" | "zai" | undefined;
20479
20511
  includeMaxTokens?: boolean | undefined;
20480
20512
  diffEnabled?: boolean | undefined;
20481
20513
  todoListEnabled?: boolean | undefined;
@@ -20523,7 +20555,6 @@ declare const organizationSettingsSchema: z.ZodObject<{
20523
20555
  vertex1MContext?: boolean | undefined;
20524
20556
  openAiBaseUrl?: string | undefined;
20525
20557
  openAiApiKey?: string | undefined;
20526
- openAiLegacyFormat?: boolean | undefined;
20527
20558
  openAiR1FormatEnabled?: boolean | undefined;
20528
20559
  openAiModelId?: string | undefined;
20529
20560
  openAiCustomModelInfo?: {
@@ -20632,6 +20663,7 @@ declare const organizationSettingsSchema: z.ZodObject<{
20632
20663
  ioIntelligenceModelId?: string | undefined;
20633
20664
  ioIntelligenceApiKey?: string | undefined;
20634
20665
  qwenCodeOauthPath?: string | undefined;
20666
+ rooApiKey?: string | undefined;
20635
20667
  vercelAiGatewayApiKey?: string | undefined;
20636
20668
  vercelAiGatewayModelId?: string | undefined;
20637
20669
  basetenApiKey?: string | undefined;
@@ -43989,7 +44021,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
43989
44021
  }, "strip", z.ZodTypeAny, {
43990
44022
  codebaseIndexEnabled?: boolean | undefined;
43991
44023
  codebaseIndexQdrantUrl?: string | undefined;
43992
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
44024
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
43993
44025
  codebaseIndexEmbedderBaseUrl?: string | undefined;
43994
44026
  codebaseIndexEmbedderModelId?: string | undefined;
43995
44027
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -44003,7 +44035,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
44003
44035
  }, {
44004
44036
  codebaseIndexEnabled?: boolean | undefined;
44005
44037
  codebaseIndexQdrantUrl?: string | undefined;
44006
- codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter" | undefined;
44038
+ codebaseIndexEmbedderProvider?: "openai" | "openrouter" | "vercel-ai-gateway" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "bedrock" | undefined;
44007
44039
  codebaseIndexEmbedderBaseUrl?: string | undefined;
44008
44040
  codebaseIndexEmbedderModelId?: string | undefined;
44009
44041
  codebaseIndexEmbedderModelDimension?: number | undefined;
@@ -44080,6 +44112,12 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
44080
44112
  openai?: Record<string, {
44081
44113
  dimension: number;
44082
44114
  }> | undefined;
44115
+ openrouter?: Record<string, {
44116
+ dimension: number;
44117
+ }> | undefined;
44118
+ "vercel-ai-gateway"?: Record<string, {
44119
+ dimension: number;
44120
+ }> | undefined;
44083
44121
  ollama?: Record<string, {
44084
44122
  dimension: number;
44085
44123
  }> | undefined;
@@ -44092,17 +44130,17 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
44092
44130
  mistral?: Record<string, {
44093
44131
  dimension: number;
44094
44132
  }> | undefined;
44095
- "vercel-ai-gateway"?: Record<string, {
44133
+ bedrock?: Record<string, {
44096
44134
  dimension: number;
44097
44135
  }> | undefined;
44098
- bedrock?: Record<string, {
44136
+ }, {
44137
+ openai?: Record<string, {
44099
44138
  dimension: number;
44100
44139
  }> | undefined;
44101
44140
  openrouter?: Record<string, {
44102
44141
  dimension: number;
44103
44142
  }> | undefined;
44104
- }, {
44105
- openai?: Record<string, {
44143
+ "vercel-ai-gateway"?: Record<string, {
44106
44144
  dimension: number;
44107
44145
  }> | undefined;
44108
44146
  ollama?: Record<string, {
@@ -44117,15 +44155,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
44117
44155
  mistral?: Record<string, {
44118
44156
  dimension: number;
44119
44157
  }> | undefined;
44120
- "vercel-ai-gateway"?: Record<string, {
44121
- dimension: number;
44122
- }> | undefined;
44123
44158
  bedrock?: Record<string, {
44124
44159
  dimension: number;
44125
44160
  }> | undefined;
44126
- openrouter?: Record<string, {
44127
- dimension: number;
44128
- }> | undefined;
44129
44161
  }>;
44130
44162
  type CodebaseIndexModels = z.infer<typeof codebaseIndexModelsSchema>;
44131
44163
  /**
@@ -44292,6 +44324,18 @@ interface TypedCustomToolDefinition<T extends CustomToolParametersSchema> extend
44292
44324
  */
44293
44325
  declare function defineCustomTool<T extends CustomToolParametersSchema>(definition: TypedCustomToolDefinition<T>): TypedCustomToolDefinition<T>;
44294
44326
 
44327
+ type EmbedderProvider = "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter";
44328
+ interface EmbeddingModelProfile {
44329
+ dimension: number;
44330
+ scoreThreshold?: number;
44331
+ queryPrefix?: string;
44332
+ }
44333
+ type EmbeddingModelProfiles = {
44334
+ [provider in EmbedderProvider]?: {
44335
+ [modelId: string]: EmbeddingModelProfile;
44336
+ };
44337
+ };
44338
+
44295
44339
  /**
44296
44340
  * ExperimentId
44297
44341
  */
@@ -44391,6 +44435,19 @@ declare const followUpDataSchema: z.ZodObject<{
44391
44435
  }>;
44392
44436
  type FollowUpDataType = z.infer<typeof followUpDataSchema>;
44393
44437
 
44438
+ interface GitRepositoryInfo {
44439
+ repositoryUrl?: string;
44440
+ repositoryName?: string;
44441
+ defaultBranch?: string;
44442
+ }
44443
+ interface GitCommit {
44444
+ hash: string;
44445
+ shortHash: string;
44446
+ subject: string;
44447
+ author: string;
44448
+ date: string;
44449
+ }
44450
+
44394
44451
  /**
44395
44452
  * HistoryItem
44396
44453
  */
@@ -44419,6 +44476,7 @@ declare const historyItemSchema: z.ZodObject<{
44419
44476
  * This ensures task resumption works correctly even when NTC settings change.
44420
44477
  */
44421
44478
  toolProtocol: z.ZodOptional<z.ZodEnum<["xml", "native"]>>;
44479
+ apiConfigName: z.ZodOptional<z.ZodString>;
44422
44480
  status: z.ZodOptional<z.ZodEnum<["active", "completed", "delegated"]>>;
44423
44481
  delegatedToId: z.ZodOptional<z.ZodString>;
44424
44482
  childIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -44442,6 +44500,7 @@ declare const historyItemSchema: z.ZodObject<{
44442
44500
  size?: number | undefined;
44443
44501
  workspace?: string | undefined;
44444
44502
  mode?: string | undefined;
44503
+ apiConfigName?: string | undefined;
44445
44504
  delegatedToId?: string | undefined;
44446
44505
  childIds?: string[] | undefined;
44447
44506
  awaitingChildId?: string | undefined;
@@ -44464,6 +44523,7 @@ declare const historyItemSchema: z.ZodObject<{
44464
44523
  size?: number | undefined;
44465
44524
  workspace?: string | undefined;
44466
44525
  mode?: string | undefined;
44526
+ apiConfigName?: string | undefined;
44467
44527
  delegatedToId?: string | undefined;
44468
44528
  childIds?: string[] | undefined;
44469
44529
  awaitingChildId?: string | undefined;
@@ -44900,9 +44960,17 @@ declare const installMarketplaceItemOptionsSchema: z.ZodObject<{
44900
44960
  parameters?: Record<string, any> | undefined;
44901
44961
  }>;
44902
44962
  type InstallMarketplaceItemOptions = z.infer<typeof installMarketplaceItemOptionsSchema>;
44963
+ interface MarketplaceInstalledMetadata {
44964
+ project: Record<string, {
44965
+ type: string;
44966
+ }>;
44967
+ global: Record<string, {
44968
+ type: string;
44969
+ }>;
44970
+ }
44903
44971
 
44904
44972
  /**
44905
- * MCP Server Use Types
44973
+ * McpServerUse
44906
44974
  */
44907
44975
  interface McpServerUse {
44908
44976
  type: string;
@@ -44966,6 +45034,81 @@ declare const mcpExecutionStatusSchema: z.ZodDiscriminatedUnion<"status", [z.Zod
44966
45034
  error?: string | undefined;
44967
45035
  }>]>;
44968
45036
  type McpExecutionStatus = z.infer<typeof mcpExecutionStatusSchema>;
45037
+ /**
45038
+ * McpServer
45039
+ */
45040
+ type McpServer = {
45041
+ name: string;
45042
+ config: string;
45043
+ status: "connected" | "connecting" | "disconnected";
45044
+ error?: string;
45045
+ errorHistory?: McpErrorEntry[];
45046
+ tools?: McpTool[];
45047
+ resources?: McpResource[];
45048
+ resourceTemplates?: McpResourceTemplate[];
45049
+ disabled?: boolean;
45050
+ timeout?: number;
45051
+ source?: "global" | "project";
45052
+ projectPath?: string;
45053
+ instructions?: string;
45054
+ };
45055
+ type McpTool = {
45056
+ name: string;
45057
+ description?: string;
45058
+ inputSchema?: object;
45059
+ alwaysAllow?: boolean;
45060
+ enabledForPrompt?: boolean;
45061
+ };
45062
+ type McpResource = {
45063
+ uri: string;
45064
+ name: string;
45065
+ mimeType?: string;
45066
+ description?: string;
45067
+ };
45068
+ type McpResourceTemplate = {
45069
+ uriTemplate: string;
45070
+ name: string;
45071
+ description?: string;
45072
+ mimeType?: string;
45073
+ };
45074
+ type McpResourceResponse = {
45075
+ _meta?: Record<string, any>;
45076
+ contents: Array<{
45077
+ uri: string;
45078
+ mimeType?: string;
45079
+ text?: string;
45080
+ blob?: string;
45081
+ }>;
45082
+ };
45083
+ type McpToolCallResponse = {
45084
+ _meta?: Record<string, any>;
45085
+ content: Array<{
45086
+ type: "text";
45087
+ text: string;
45088
+ } | {
45089
+ type: "image";
45090
+ data: string;
45091
+ mimeType: string;
45092
+ } | {
45093
+ type: "audio";
45094
+ data: string;
45095
+ mimeType: string;
45096
+ } | {
45097
+ type: "resource";
45098
+ resource: {
45099
+ uri: string;
45100
+ mimeType?: string;
45101
+ text?: string;
45102
+ blob?: string;
45103
+ };
45104
+ }>;
45105
+ isError?: boolean;
45106
+ };
45107
+ type McpErrorEntry = {
45108
+ message: string;
45109
+ timestamp: number;
45110
+ level: "error" | "warn" | "info";
45111
+ };
44969
45112
 
44970
45113
  /**
44971
45114
  * GroupOptions
@@ -45391,6 +45534,8 @@ declare const modelInfoSchema: z.ZodObject<{
45391
45534
  }[] | undefined;
45392
45535
  }>;
45393
45536
  type ModelInfo = z.infer<typeof modelInfoSchema>;
45537
+ type ModelRecord = Record<string, ModelInfo>;
45538
+ type RouterModels = Record<DynamicProvider | LocalProvider, ModelRecord>;
45394
45539
 
45395
45540
  /**
45396
45541
  * CommandExecutionStatus
@@ -45488,6 +45633,651 @@ interface GenerateImageParams {
45488
45633
  image?: string;
45489
45634
  }
45490
45635
 
45636
+ /**
45637
+ * ExtensionMessage
45638
+ * Extension -> Webview | CLI
45639
+ */
45640
+ interface ExtensionMessage {
45641
+ type: "action" | "state" | "selectedImages" | "theme" | "workspaceUpdated" | "invoke" | "messageUpdated" | "mcpServers" | "enhancedPrompt" | "commitSearchResults" | "listApiConfig" | "routerModels" | "openAiModels" | "ollamaModels" | "lmStudioModels" | "vsCodeLmModels" | "huggingFaceModels" | "vsCodeLmApiAvailable" | "updatePrompt" | "systemPrompt" | "autoApprovalEnabled" | "updateCustomMode" | "deleteCustomMode" | "exportModeResult" | "importModeResult" | "checkRulesDirectoryResult" | "deleteCustomModeCheck" | "currentCheckpointUpdated" | "checkpointInitWarning" | "browserToolEnabled" | "browserConnectionResult" | "remoteBrowserEnabled" | "ttsStart" | "ttsStop" | "maxReadFileLine" | "fileSearchResults" | "toggleApiConfigPin" | "acceptInput" | "setHistoryPreviewCollapsed" | "commandExecutionStatus" | "mcpExecutionStatus" | "vsCodeSetting" | "authenticatedUser" | "condenseTaskContextStarted" | "condenseTaskContextResponse" | "singleRouterModelFetchResponse" | "rooCreditBalance" | "indexingStatusUpdate" | "indexCleared" | "codebaseIndexConfig" | "marketplaceInstallResult" | "marketplaceRemoveResult" | "marketplaceData" | "shareTaskSuccess" | "codeIndexSettingsSaved" | "codeIndexSecretStatus" | "showDeleteMessageDialog" | "showEditMessageDialog" | "commands" | "insertTextIntoTextarea" | "dismissedUpsells" | "organizationSwitchResult" | "interactionRequired" | "browserSessionUpdate" | "browserSessionNavigate" | "claudeCodeRateLimits" | "customToolsResult" | "modes";
45642
+ text?: string;
45643
+ payload?: any;
45644
+ checkpointWarning?: {
45645
+ type: "WAIT_TIMEOUT" | "INIT_TIMEOUT";
45646
+ timeout: number;
45647
+ };
45648
+ action?: "chatButtonClicked" | "settingsButtonClicked" | "historyButtonClicked" | "marketplaceButtonClicked" | "cloudButtonClicked" | "didBecomeVisible" | "focusInput" | "switchTab" | "toggleAutoApprove";
45649
+ invoke?: "newChat" | "sendMessage" | "primaryButtonClick" | "secondaryButtonClick" | "setChatBoxMessage";
45650
+ state?: ExtensionState;
45651
+ images?: string[];
45652
+ filePaths?: string[];
45653
+ openedTabs?: Array<{
45654
+ label: string;
45655
+ isActive: boolean;
45656
+ path?: string;
45657
+ }>;
45658
+ clineMessage?: ClineMessage;
45659
+ routerModels?: RouterModels;
45660
+ openAiModels?: string[];
45661
+ ollamaModels?: ModelRecord;
45662
+ lmStudioModels?: ModelRecord;
45663
+ vsCodeLmModels?: {
45664
+ vendor?: string;
45665
+ family?: string;
45666
+ version?: string;
45667
+ id?: string;
45668
+ }[];
45669
+ huggingFaceModels?: Array<{
45670
+ id: string;
45671
+ object: string;
45672
+ created: number;
45673
+ owned_by: string;
45674
+ providers: Array<{
45675
+ provider: string;
45676
+ status: "live" | "staging" | "error";
45677
+ supports_tools?: boolean;
45678
+ supports_structured_output?: boolean;
45679
+ context_length?: number;
45680
+ pricing?: {
45681
+ input: number;
45682
+ output: number;
45683
+ };
45684
+ }>;
45685
+ }>;
45686
+ mcpServers?: McpServer[];
45687
+ commits?: GitCommit[];
45688
+ listApiConfig?: ProviderSettingsEntry[];
45689
+ mode?: string;
45690
+ customMode?: ModeConfig;
45691
+ slug?: string;
45692
+ success?: boolean;
45693
+ values?: Record<string, any>;
45694
+ requestId?: string;
45695
+ promptText?: string;
45696
+ results?: {
45697
+ path: string;
45698
+ type: "file" | "folder";
45699
+ label?: string;
45700
+ }[] | {
45701
+ name: string;
45702
+ description?: string;
45703
+ argumentHint?: string;
45704
+ source: "global" | "project" | "built-in";
45705
+ }[];
45706
+ error?: string;
45707
+ setting?: string;
45708
+ value?: any;
45709
+ hasContent?: boolean;
45710
+ items?: MarketplaceItem[];
45711
+ userInfo?: CloudUserInfo;
45712
+ organizationAllowList?: OrganizationAllowList;
45713
+ tab?: string;
45714
+ marketplaceItems?: MarketplaceItem[];
45715
+ organizationMcps?: MarketplaceItem[];
45716
+ marketplaceInstalledMetadata?: MarketplaceInstalledMetadata;
45717
+ errors?: string[];
45718
+ visibility?: ShareVisibility;
45719
+ rulesFolderPath?: string;
45720
+ settings?: any;
45721
+ messageTs?: number;
45722
+ hasCheckpoint?: boolean;
45723
+ context?: string;
45724
+ commands?: Command[];
45725
+ queuedMessages?: QueuedMessage[];
45726
+ list?: string[];
45727
+ organizationId?: string | null;
45728
+ browserSessionMessages?: ClineMessage[];
45729
+ isBrowserSessionActive?: boolean;
45730
+ stepIndex?: number;
45731
+ tools?: SerializedCustomToolDefinition[];
45732
+ modes?: {
45733
+ slug: string;
45734
+ name: string;
45735
+ }[];
45736
+ }
45737
+ type ExtensionState = Pick<GlobalSettings, "currentApiConfigName" | "listApiConfigMeta" | "pinnedApiConfigs" | "customInstructions" | "dismissedUpsells" | "autoApprovalEnabled" | "alwaysAllowReadOnly" | "alwaysAllowReadOnlyOutsideWorkspace" | "alwaysAllowWrite" | "alwaysAllowWriteOutsideWorkspace" | "alwaysAllowWriteProtected" | "alwaysAllowBrowser" | "alwaysAllowMcp" | "alwaysAllowModeSwitch" | "alwaysAllowSubtasks" | "alwaysAllowFollowupQuestions" | "alwaysAllowExecute" | "followupAutoApproveTimeoutMs" | "allowedCommands" | "deniedCommands" | "allowedMaxRequests" | "allowedMaxCost" | "browserToolEnabled" | "browserViewportSize" | "screenshotQuality" | "remoteBrowserEnabled" | "cachedChromeHostUrl" | "remoteBrowserHost" | "ttsEnabled" | "ttsSpeed" | "soundEnabled" | "soundVolume" | "maxConcurrentFileReads" | "terminalOutputLineLimit" | "terminalOutputCharacterLimit" | "terminalShellIntegrationTimeout" | "terminalShellIntegrationDisabled" | "terminalCommandDelay" | "terminalPowershellCounter" | "terminalZshClearEolMark" | "terminalZshOhMy" | "terminalZshP10k" | "terminalZdotdir" | "terminalCompressProgressBar" | "diagnosticsEnabled" | "diffEnabled" | "fuzzyMatchThreshold" | "language" | "modeApiConfigs" | "customModePrompts" | "customSupportPrompts" | "enhancementApiConfigId" | "condensingApiConfigId" | "customCondensingPrompt" | "codebaseIndexConfig" | "codebaseIndexModels" | "profileThresholds" | "includeDiagnosticMessages" | "maxDiagnosticMessages" | "imageGenerationProvider" | "openRouterImageGenerationSelectedModel" | "includeTaskHistoryInEnhance" | "reasoningBlockCollapsed" | "enterBehavior" | "includeCurrentTime" | "includeCurrentCost" | "maxGitStatusFiles" | "requestDelaySeconds"> & {
45738
+ version: string;
45739
+ clineMessages: ClineMessage[];
45740
+ currentTaskItem?: HistoryItem;
45741
+ currentTaskTodos?: TodoItem[];
45742
+ apiConfiguration: ProviderSettings;
45743
+ uriScheme?: string;
45744
+ shouldShowAnnouncement: boolean;
45745
+ taskHistory: HistoryItem[];
45746
+ writeDelayMs: number;
45747
+ enableCheckpoints: boolean;
45748
+ checkpointTimeout: number;
45749
+ maxOpenTabsContext: number;
45750
+ maxWorkspaceFiles: number;
45751
+ showRooIgnoredFiles: boolean;
45752
+ enableSubfolderRules: boolean;
45753
+ maxReadFileLine: number;
45754
+ maxImageFileSize: number;
45755
+ maxTotalImageSize: number;
45756
+ experiments: Experiments;
45757
+ mcpEnabled: boolean;
45758
+ enableMcpServerCreation: boolean;
45759
+ mode: string;
45760
+ customModes: ModeConfig[];
45761
+ toolRequirements?: Record<string, boolean>;
45762
+ cwd?: string;
45763
+ telemetrySetting: TelemetrySetting;
45764
+ telemetryKey?: string;
45765
+ machineId?: string;
45766
+ renderContext: "sidebar" | "editor";
45767
+ settingsImportedAt?: number;
45768
+ historyPreviewCollapsed?: boolean;
45769
+ cloudUserInfo: CloudUserInfo | null;
45770
+ cloudIsAuthenticated: boolean;
45771
+ cloudAuthSkipModel?: boolean;
45772
+ cloudApiUrl?: string;
45773
+ cloudOrganizations?: CloudOrganizationMembership[];
45774
+ sharingEnabled: boolean;
45775
+ publicSharingEnabled: boolean;
45776
+ organizationAllowList: OrganizationAllowList;
45777
+ organizationSettingsVersion?: number;
45778
+ isBrowserSessionActive: boolean;
45779
+ autoCondenseContext: boolean;
45780
+ autoCondenseContextPercent: number;
45781
+ marketplaceItems?: MarketplaceItem[];
45782
+ marketplaceInstalledMetadata?: {
45783
+ project: Record<string, any>;
45784
+ global: Record<string, any>;
45785
+ };
45786
+ profileThresholds: Record<string, number>;
45787
+ hasOpenedModeSelector: boolean;
45788
+ openRouterImageApiKey?: string;
45789
+ messageQueue?: QueuedMessage[];
45790
+ lastShownAnnouncementId?: string;
45791
+ apiModelId?: string;
45792
+ mcpServers?: McpServer[];
45793
+ hasSystemPromptOverride?: boolean;
45794
+ mdmCompliant?: boolean;
45795
+ remoteControlEnabled: boolean;
45796
+ taskSyncEnabled: boolean;
45797
+ featureRoomoteControlEnabled: boolean;
45798
+ claudeCodeIsAuthenticated?: boolean;
45799
+ debug?: boolean;
45800
+ };
45801
+ interface Command {
45802
+ name: string;
45803
+ source: "global" | "project" | "built-in";
45804
+ filePath?: string;
45805
+ description?: string;
45806
+ argumentHint?: string;
45807
+ }
45808
+ /**
45809
+ * WebviewMessage
45810
+ * Webview | CLI -> Extension
45811
+ */
45812
+ type ClineAskResponse = "yesButtonClicked" | "noButtonClicked" | "messageResponse" | "objectResponse";
45813
+ type AudioType = "notification" | "celebration" | "progress_loop";
45814
+ interface UpdateTodoListPayload {
45815
+ todos: any[];
45816
+ }
45817
+ type EditQueuedMessagePayload = Pick<QueuedMessage, "id" | "text" | "images">;
45818
+ interface WebviewMessage {
45819
+ type: "updateTodoList" | "deleteMultipleTasksWithIds" | "currentApiConfigName" | "saveApiConfiguration" | "upsertApiConfiguration" | "deleteApiConfiguration" | "loadApiConfiguration" | "loadApiConfigurationById" | "renameApiConfiguration" | "getListApiConfiguration" | "customInstructions" | "webviewDidLaunch" | "newTask" | "askResponse" | "terminalOperation" | "clearTask" | "didShowAnnouncement" | "selectImages" | "exportCurrentTask" | "shareCurrentTask" | "showTaskWithId" | "deleteTaskWithId" | "exportTaskWithId" | "importSettings" | "exportSettings" | "resetState" | "flushRouterModels" | "requestRouterModels" | "requestOpenAiModels" | "requestOllamaModels" | "requestLmStudioModels" | "requestRooModels" | "requestRooCreditBalance" | "requestVsCodeLmModels" | "requestHuggingFaceModels" | "openImage" | "saveImage" | "openFile" | "openMention" | "cancelTask" | "cancelAutoApproval" | "updateVSCodeSetting" | "getVSCodeSetting" | "vsCodeSetting" | "updateCondensingPrompt" | "playSound" | "playTts" | "stopTts" | "ttsEnabled" | "ttsSpeed" | "openKeyboardShortcuts" | "openMcpSettings" | "openProjectMcpSettings" | "restartMcpServer" | "refreshAllMcpServers" | "toggleToolAlwaysAllow" | "toggleToolEnabledForPrompt" | "toggleMcpServer" | "updateMcpTimeout" | "enhancePrompt" | "enhancedPrompt" | "draggedImages" | "deleteMessage" | "deleteMessageConfirm" | "submitEditedMessage" | "editMessageConfirm" | "enableMcpServerCreation" | "remoteControlEnabled" | "taskSyncEnabled" | "searchCommits" | "setApiConfigPassword" | "mode" | "updatePrompt" | "getSystemPrompt" | "copySystemPrompt" | "systemPrompt" | "enhancementApiConfigId" | "autoApprovalEnabled" | "updateCustomMode" | "deleteCustomMode" | "setopenAiCustomModelInfo" | "openCustomModesSettings" | "checkpointDiff" | "checkpointRestore" | "deleteMcpServer" | "codebaseIndexEnabled" | "telemetrySetting" | "testBrowserConnection" | "browserConnectionResult" | "searchFiles" | "toggleApiConfigPin" | "hasOpenedModeSelector" | "clearCloudAuthSkipModel" | "cloudButtonClicked" | "rooCloudSignIn" | "cloudLandingPageSignIn" | "rooCloudSignOut" | "rooCloudManualUrl" | "claudeCodeSignIn" | "claudeCodeSignOut" | "switchOrganization" | "condenseTaskContextRequest" | "requestIndexingStatus" | "startIndexing" | "clearIndexData" | "indexingStatusUpdate" | "indexCleared" | "focusPanelRequest" | "openExternal" | "filterMarketplaceItems" | "marketplaceButtonClicked" | "installMarketplaceItem" | "installMarketplaceItemWithParameters" | "cancelMarketplaceInstall" | "removeInstalledMarketplaceItem" | "marketplaceInstallResult" | "fetchMarketplaceData" | "switchTab" | "shareTaskSuccess" | "exportMode" | "exportModeResult" | "importMode" | "importModeResult" | "checkRulesDirectory" | "checkRulesDirectoryResult" | "saveCodeIndexSettingsAtomic" | "requestCodeIndexSecretStatus" | "requestCommands" | "openCommandFile" | "deleteCommand" | "createCommand" | "insertTextIntoTextarea" | "showMdmAuthRequiredNotification" | "imageGenerationSettings" | "queueMessage" | "removeQueuedMessage" | "editQueuedMessage" | "dismissUpsell" | "getDismissedUpsells" | "updateSettings" | "allowedCommands" | "deniedCommands" | "killBrowserSession" | "openBrowserSessionPanel" | "showBrowserSessionPanelAtStep" | "refreshBrowserSessionPanel" | "browserPanelDidLaunch" | "openDebugApiHistory" | "openDebugUiHistory" | "downloadErrorDiagnostics" | "requestClaudeCodeRateLimits" | "refreshCustomTools" | "requestModes" | "switchMode" | "debugSetting";
45820
+ text?: string;
45821
+ editedMessageContent?: string;
45822
+ tab?: "settings" | "history" | "mcp" | "modes" | "chat" | "marketplace" | "cloud";
45823
+ disabled?: boolean;
45824
+ context?: string;
45825
+ dataUri?: string;
45826
+ askResponse?: ClineAskResponse;
45827
+ apiConfiguration?: ProviderSettings;
45828
+ images?: string[];
45829
+ bool?: boolean;
45830
+ value?: number;
45831
+ stepIndex?: number;
45832
+ isLaunchAction?: boolean;
45833
+ forceShow?: boolean;
45834
+ commands?: string[];
45835
+ audioType?: AudioType;
45836
+ serverName?: string;
45837
+ toolName?: string;
45838
+ alwaysAllow?: boolean;
45839
+ isEnabled?: boolean;
45840
+ mode?: string;
45841
+ promptMode?: string | "enhance";
45842
+ customPrompt?: PromptComponent;
45843
+ dataUrls?: string[];
45844
+ values?: Record<string, any>;
45845
+ query?: string;
45846
+ setting?: string;
45847
+ slug?: string;
45848
+ modeConfig?: ModeConfig;
45849
+ timeout?: number;
45850
+ payload?: WebViewMessagePayload;
45851
+ source?: "global" | "project";
45852
+ requestId?: string;
45853
+ ids?: string[];
45854
+ hasSystemPromptOverride?: boolean;
45855
+ terminalOperation?: "continue" | "abort";
45856
+ messageTs?: number;
45857
+ restoreCheckpoint?: boolean;
45858
+ historyPreviewCollapsed?: boolean;
45859
+ filters?: {
45860
+ type?: string;
45861
+ search?: string;
45862
+ tags?: string[];
45863
+ };
45864
+ settings?: any;
45865
+ url?: string;
45866
+ mpItem?: MarketplaceItem;
45867
+ mpInstallOptions?: InstallMarketplaceItemOptions;
45868
+ config?: Record<string, any>;
45869
+ visibility?: ShareVisibility;
45870
+ hasContent?: boolean;
45871
+ checkOnly?: boolean;
45872
+ upsellId?: string;
45873
+ list?: string[];
45874
+ organizationId?: string | null;
45875
+ useProviderSignup?: boolean;
45876
+ codeIndexSettings?: {
45877
+ codebaseIndexEnabled: boolean;
45878
+ codebaseIndexQdrantUrl: string;
45879
+ codebaseIndexEmbedderProvider: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | "vercel-ai-gateway" | "bedrock" | "openrouter";
45880
+ codebaseIndexEmbedderBaseUrl?: string;
45881
+ codebaseIndexEmbedderModelId: string;
45882
+ codebaseIndexEmbedderModelDimension?: number;
45883
+ codebaseIndexOpenAiCompatibleBaseUrl?: string;
45884
+ codebaseIndexBedrockRegion?: string;
45885
+ codebaseIndexBedrockProfile?: string;
45886
+ codebaseIndexSearchMaxResults?: number;
45887
+ codebaseIndexSearchMinScore?: number;
45888
+ codebaseIndexOpenRouterSpecificProvider?: string;
45889
+ codeIndexOpenAiKey?: string;
45890
+ codeIndexQdrantApiKey?: string;
45891
+ codebaseIndexOpenAiCompatibleApiKey?: string;
45892
+ codebaseIndexGeminiApiKey?: string;
45893
+ codebaseIndexMistralApiKey?: string;
45894
+ codebaseIndexVercelAiGatewayApiKey?: string;
45895
+ codebaseIndexOpenRouterApiKey?: string;
45896
+ };
45897
+ updatedSettings?: RooCodeSettings;
45898
+ }
45899
+ declare const checkoutDiffPayloadSchema: z.ZodObject<{
45900
+ ts: z.ZodOptional<z.ZodNumber>;
45901
+ previousCommitHash: z.ZodOptional<z.ZodString>;
45902
+ commitHash: z.ZodString;
45903
+ mode: z.ZodEnum<["full", "checkpoint", "from-init", "to-current"]>;
45904
+ }, "strip", z.ZodTypeAny, {
45905
+ mode: "checkpoint" | "full" | "from-init" | "to-current";
45906
+ commitHash: string;
45907
+ ts?: number | undefined;
45908
+ previousCommitHash?: string | undefined;
45909
+ }, {
45910
+ mode: "checkpoint" | "full" | "from-init" | "to-current";
45911
+ commitHash: string;
45912
+ ts?: number | undefined;
45913
+ previousCommitHash?: string | undefined;
45914
+ }>;
45915
+ type CheckpointDiffPayload = z.infer<typeof checkoutDiffPayloadSchema>;
45916
+ declare const checkoutRestorePayloadSchema: z.ZodObject<{
45917
+ ts: z.ZodNumber;
45918
+ commitHash: z.ZodString;
45919
+ mode: z.ZodEnum<["preview", "restore"]>;
45920
+ }, "strip", z.ZodTypeAny, {
45921
+ ts: number;
45922
+ mode: "preview" | "restore";
45923
+ commitHash: string;
45924
+ }, {
45925
+ ts: number;
45926
+ mode: "preview" | "restore";
45927
+ commitHash: string;
45928
+ }>;
45929
+ type CheckpointRestorePayload = z.infer<typeof checkoutRestorePayloadSchema>;
45930
+ interface IndexingStatusPayload {
45931
+ state: "Standby" | "Indexing" | "Indexed" | "Error";
45932
+ message: string;
45933
+ }
45934
+ interface IndexClearedPayload {
45935
+ success: boolean;
45936
+ error?: string;
45937
+ }
45938
+ declare const installMarketplaceItemWithParametersPayloadSchema: z.ZodObject<{
45939
+ item: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
45940
+ id: z.ZodString;
45941
+ name: z.ZodString;
45942
+ description: z.ZodString;
45943
+ author: z.ZodOptional<z.ZodString>;
45944
+ authorUrl: z.ZodOptional<z.ZodString>;
45945
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45946
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45947
+ } & {
45948
+ content: z.ZodString;
45949
+ } & {
45950
+ type: z.ZodLiteral<"mode">;
45951
+ }, "strip", z.ZodTypeAny, {
45952
+ type: "mode";
45953
+ id: string;
45954
+ name: string;
45955
+ description: string;
45956
+ content: string;
45957
+ tags?: string[] | undefined;
45958
+ prerequisites?: string[] | undefined;
45959
+ author?: string | undefined;
45960
+ authorUrl?: string | undefined;
45961
+ }, {
45962
+ type: "mode";
45963
+ id: string;
45964
+ name: string;
45965
+ description: string;
45966
+ content: string;
45967
+ tags?: string[] | undefined;
45968
+ prerequisites?: string[] | undefined;
45969
+ author?: string | undefined;
45970
+ authorUrl?: string | undefined;
45971
+ }>, z.ZodObject<{
45972
+ id: z.ZodString;
45973
+ name: z.ZodString;
45974
+ description: z.ZodString;
45975
+ author: z.ZodOptional<z.ZodString>;
45976
+ authorUrl: z.ZodOptional<z.ZodString>;
45977
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45978
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
45979
+ } & {
45980
+ url: z.ZodString;
45981
+ content: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodObject<{
45982
+ name: z.ZodString;
45983
+ content: z.ZodString;
45984
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
45985
+ name: z.ZodString;
45986
+ key: z.ZodString;
45987
+ placeholder: z.ZodOptional<z.ZodString>;
45988
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
45989
+ }, "strip", z.ZodTypeAny, {
45990
+ name: string;
45991
+ key: string;
45992
+ optional: boolean;
45993
+ placeholder?: string | undefined;
45994
+ }, {
45995
+ name: string;
45996
+ key: string;
45997
+ placeholder?: string | undefined;
45998
+ optional?: boolean | undefined;
45999
+ }>, "many">>;
46000
+ prerequisites: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
46001
+ }, "strip", z.ZodTypeAny, {
46002
+ name: string;
46003
+ content: string;
46004
+ parameters?: {
46005
+ name: string;
46006
+ key: string;
46007
+ optional: boolean;
46008
+ placeholder?: string | undefined;
46009
+ }[] | undefined;
46010
+ prerequisites?: string[] | undefined;
46011
+ }, {
46012
+ name: string;
46013
+ content: string;
46014
+ parameters?: {
46015
+ name: string;
46016
+ key: string;
46017
+ placeholder?: string | undefined;
46018
+ optional?: boolean | undefined;
46019
+ }[] | undefined;
46020
+ prerequisites?: string[] | undefined;
46021
+ }>, "many">]>;
46022
+ parameters: z.ZodOptional<z.ZodArray<z.ZodObject<{
46023
+ name: z.ZodString;
46024
+ key: z.ZodString;
46025
+ placeholder: z.ZodOptional<z.ZodString>;
46026
+ optional: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
46027
+ }, "strip", z.ZodTypeAny, {
46028
+ name: string;
46029
+ key: string;
46030
+ optional: boolean;
46031
+ placeholder?: string | undefined;
46032
+ }, {
46033
+ name: string;
46034
+ key: string;
46035
+ placeholder?: string | undefined;
46036
+ optional?: boolean | undefined;
46037
+ }>, "many">>;
46038
+ } & {
46039
+ type: z.ZodLiteral<"mcp">;
46040
+ }, "strip", z.ZodTypeAny, {
46041
+ type: "mcp";
46042
+ id: string;
46043
+ name: string;
46044
+ description: string;
46045
+ url: string;
46046
+ content: string | {
46047
+ name: string;
46048
+ content: string;
46049
+ parameters?: {
46050
+ name: string;
46051
+ key: string;
46052
+ optional: boolean;
46053
+ placeholder?: string | undefined;
46054
+ }[] | undefined;
46055
+ prerequisites?: string[] | undefined;
46056
+ }[];
46057
+ tags?: string[] | undefined;
46058
+ parameters?: {
46059
+ name: string;
46060
+ key: string;
46061
+ optional: boolean;
46062
+ placeholder?: string | undefined;
46063
+ }[] | undefined;
46064
+ prerequisites?: string[] | undefined;
46065
+ author?: string | undefined;
46066
+ authorUrl?: string | undefined;
46067
+ }, {
46068
+ type: "mcp";
46069
+ id: string;
46070
+ name: string;
46071
+ description: string;
46072
+ url: string;
46073
+ content: string | {
46074
+ name: string;
46075
+ content: string;
46076
+ parameters?: {
46077
+ name: string;
46078
+ key: string;
46079
+ placeholder?: string | undefined;
46080
+ optional?: boolean | undefined;
46081
+ }[] | undefined;
46082
+ prerequisites?: string[] | undefined;
46083
+ }[];
46084
+ tags?: string[] | undefined;
46085
+ parameters?: {
46086
+ name: string;
46087
+ key: string;
46088
+ placeholder?: string | undefined;
46089
+ optional?: boolean | undefined;
46090
+ }[] | undefined;
46091
+ prerequisites?: string[] | undefined;
46092
+ author?: string | undefined;
46093
+ authorUrl?: string | undefined;
46094
+ }>]>;
46095
+ parameters: z.ZodRecord<z.ZodString, z.ZodAny>;
46096
+ }, "strip", z.ZodTypeAny, {
46097
+ parameters: Record<string, any>;
46098
+ item: {
46099
+ type: "mode";
46100
+ id: string;
46101
+ name: string;
46102
+ description: string;
46103
+ content: string;
46104
+ tags?: string[] | undefined;
46105
+ prerequisites?: string[] | undefined;
46106
+ author?: string | undefined;
46107
+ authorUrl?: string | undefined;
46108
+ } | {
46109
+ type: "mcp";
46110
+ id: string;
46111
+ name: string;
46112
+ description: string;
46113
+ url: string;
46114
+ content: string | {
46115
+ name: string;
46116
+ content: string;
46117
+ parameters?: {
46118
+ name: string;
46119
+ key: string;
46120
+ optional: boolean;
46121
+ placeholder?: string | undefined;
46122
+ }[] | undefined;
46123
+ prerequisites?: string[] | undefined;
46124
+ }[];
46125
+ tags?: string[] | undefined;
46126
+ parameters?: {
46127
+ name: string;
46128
+ key: string;
46129
+ optional: boolean;
46130
+ placeholder?: string | undefined;
46131
+ }[] | undefined;
46132
+ prerequisites?: string[] | undefined;
46133
+ author?: string | undefined;
46134
+ authorUrl?: string | undefined;
46135
+ };
46136
+ }, {
46137
+ parameters: Record<string, any>;
46138
+ item: {
46139
+ type: "mode";
46140
+ id: string;
46141
+ name: string;
46142
+ description: string;
46143
+ content: string;
46144
+ tags?: string[] | undefined;
46145
+ prerequisites?: string[] | undefined;
46146
+ author?: string | undefined;
46147
+ authorUrl?: string | undefined;
46148
+ } | {
46149
+ type: "mcp";
46150
+ id: string;
46151
+ name: string;
46152
+ description: string;
46153
+ url: string;
46154
+ content: string | {
46155
+ name: string;
46156
+ content: string;
46157
+ parameters?: {
46158
+ name: string;
46159
+ key: string;
46160
+ placeholder?: string | undefined;
46161
+ optional?: boolean | undefined;
46162
+ }[] | undefined;
46163
+ prerequisites?: string[] | undefined;
46164
+ }[];
46165
+ tags?: string[] | undefined;
46166
+ parameters?: {
46167
+ name: string;
46168
+ key: string;
46169
+ placeholder?: string | undefined;
46170
+ optional?: boolean | undefined;
46171
+ }[] | undefined;
46172
+ prerequisites?: string[] | undefined;
46173
+ author?: string | undefined;
46174
+ authorUrl?: string | undefined;
46175
+ };
46176
+ }>;
46177
+ type InstallMarketplaceItemWithParametersPayload = z.infer<typeof installMarketplaceItemWithParametersPayloadSchema>;
46178
+ type WebViewMessagePayload = CheckpointDiffPayload | CheckpointRestorePayload | IndexingStatusPayload | IndexClearedPayload | InstallMarketplaceItemWithParametersPayload | UpdateTodoListPayload | EditQueuedMessagePayload;
46179
+ interface IndexingStatus {
46180
+ systemStatus: string;
46181
+ message?: string;
46182
+ processedItems: number;
46183
+ totalItems: number;
46184
+ currentItemUnit?: string;
46185
+ workspacePath?: string;
46186
+ }
46187
+ interface IndexingStatusUpdateMessage {
46188
+ type: "indexingStatusUpdate";
46189
+ values: IndexingStatus;
46190
+ }
46191
+ interface LanguageModelChatSelector {
46192
+ vendor?: string;
46193
+ family?: string;
46194
+ version?: string;
46195
+ id?: string;
46196
+ }
46197
+ interface ClineSayTool {
46198
+ tool: "editedExistingFile" | "appliedDiff" | "newFileCreated" | "codebaseSearch" | "readFile" | "fetchInstructions" | "listFilesTopLevel" | "listFilesRecursive" | "searchFiles" | "switchMode" | "newTask" | "finishTask" | "generateImage" | "imageGenerated" | "runSlashCommand" | "updateTodoList";
46199
+ path?: string;
46200
+ diff?: string;
46201
+ content?: string;
46202
+ diffStats?: {
46203
+ added: number;
46204
+ removed: number;
46205
+ };
46206
+ regex?: string;
46207
+ filePattern?: string;
46208
+ mode?: string;
46209
+ reason?: string;
46210
+ isOutsideWorkspace?: boolean;
46211
+ isProtected?: boolean;
46212
+ additionalFileCount?: number;
46213
+ lineNumber?: number;
46214
+ query?: string;
46215
+ batchFiles?: Array<{
46216
+ path: string;
46217
+ lineSnippet: string;
46218
+ isOutsideWorkspace?: boolean;
46219
+ key: string;
46220
+ content?: string;
46221
+ }>;
46222
+ batchDiffs?: Array<{
46223
+ path: string;
46224
+ changeCount: number;
46225
+ key: string;
46226
+ content: string;
46227
+ diffStats?: {
46228
+ added: number;
46229
+ removed: number;
46230
+ };
46231
+ diffs?: Array<{
46232
+ content: string;
46233
+ startLine?: number;
46234
+ }>;
46235
+ }>;
46236
+ question?: string;
46237
+ imageData?: string;
46238
+ command?: string;
46239
+ args?: string;
46240
+ source?: string;
46241
+ description?: string;
46242
+ }
46243
+ declare const browserActions: readonly ["launch", "click", "hover", "type", "press", "scroll_down", "scroll_up", "resize", "close", "screenshot"];
46244
+ type BrowserAction = (typeof browserActions)[number];
46245
+ interface ClineSayBrowserAction {
46246
+ action: BrowserAction;
46247
+ coordinate?: string;
46248
+ size?: string;
46249
+ text?: string;
46250
+ executedCoordinate?: string;
46251
+ }
46252
+ type BrowserActionResult = {
46253
+ screenshot?: string;
46254
+ logs?: string;
46255
+ currentUrl?: string;
46256
+ currentMousePosition?: string;
46257
+ viewportWidth?: number;
46258
+ viewportHeight?: number;
46259
+ };
46260
+ interface ClineAskUseMcpServer {
46261
+ serverName: string;
46262
+ type: "use_mcp_tool" | "access_mcp_resource";
46263
+ toolName?: string;
46264
+ arguments?: string;
46265
+ uri?: string;
46266
+ response?: string;
46267
+ }
46268
+ interface ClineApiReqInfo {
46269
+ request?: string;
46270
+ tokensIn?: number;
46271
+ tokensOut?: number;
46272
+ cacheWrites?: number;
46273
+ cacheReads?: number;
46274
+ cost?: number;
46275
+ cancelReason?: ClineApiReqCancelReason;
46276
+ streamingFailedMessage?: string;
46277
+ apiProtocol?: "anthropic" | "openai";
46278
+ }
46279
+ type ClineApiReqCancelReason = "streaming_failed" | "user_cancelled";
46280
+
45491
46281
  /**
45492
46282
  * CodeAction
45493
46283
  */
@@ -46079,39 +46869,6 @@ declare const bedrockModels: {
46079
46869
  readonly inputPrice: 0.25;
46080
46870
  readonly outputPrice: 1.25;
46081
46871
  };
46082
- readonly "anthropic.claude-2-1-v1:0": {
46083
- readonly maxTokens: 4096;
46084
- readonly contextWindow: 100000;
46085
- readonly supportsImages: false;
46086
- readonly supportsPromptCache: false;
46087
- readonly supportsNativeTools: true;
46088
- readonly defaultToolProtocol: "native";
46089
- readonly inputPrice: 8;
46090
- readonly outputPrice: 24;
46091
- readonly description: "Claude 2.1";
46092
- };
46093
- readonly "anthropic.claude-2-0-v1:0": {
46094
- readonly maxTokens: 4096;
46095
- readonly contextWindow: 100000;
46096
- readonly supportsImages: false;
46097
- readonly supportsPromptCache: false;
46098
- readonly supportsNativeTools: true;
46099
- readonly defaultToolProtocol: "native";
46100
- readonly inputPrice: 8;
46101
- readonly outputPrice: 24;
46102
- readonly description: "Claude 2.0";
46103
- };
46104
- readonly "anthropic.claude-instant-v1:0": {
46105
- readonly maxTokens: 4096;
46106
- readonly contextWindow: 100000;
46107
- readonly supportsImages: false;
46108
- readonly supportsPromptCache: false;
46109
- readonly supportsNativeTools: true;
46110
- readonly defaultToolProtocol: "native";
46111
- readonly inputPrice: 0.8;
46112
- readonly outputPrice: 2.4;
46113
- readonly description: "Claude Instant";
46114
- };
46115
46872
  readonly "deepseek.r1-v1:0": {
46116
46873
  readonly maxTokens: 32768;
46117
46874
  readonly contextWindow: 128000;
@@ -46346,7 +47103,18 @@ declare const cerebrasModels: {
46346
47103
  readonly defaultToolProtocol: "native";
46347
47104
  readonly inputPrice: 0;
46348
47105
  readonly outputPrice: 0;
46349
- readonly description: "Highly intelligent general purpose model with up to 1,000 tokens/s";
47106
+ readonly description: "Fast general-purpose model on Cerebras (up to 1,000 tokens/s). To be deprecated soon.";
47107
+ };
47108
+ readonly "zai-glm-4.7": {
47109
+ readonly maxTokens: 16384;
47110
+ readonly contextWindow: 131072;
47111
+ readonly supportsImages: false;
47112
+ readonly supportsPromptCache: false;
47113
+ readonly supportsNativeTools: true;
47114
+ readonly defaultToolProtocol: "native";
47115
+ readonly inputPrice: 0;
47116
+ readonly outputPrice: 0;
47117
+ readonly description: "Highly capable general-purpose model on Cerebras (up to 1,000 tokens/s), competitive with leading proprietary models on coding tasks.";
46350
47118
  };
46351
47119
  readonly "qwen-3-235b-a22b-instruct-2507": {
46352
47120
  readonly maxTokens: 16384;
@@ -47080,7 +47848,7 @@ declare const featherlessModels: {
47080
47848
  };
47081
47849
  declare const featherlessDefaultModelId: FeatherlessModelId;
47082
47850
 
47083
- type FireworksModelId = "accounts/fireworks/models/kimi-k2-instruct" | "accounts/fireworks/models/kimi-k2-instruct-0905" | "accounts/fireworks/models/minimax-m2" | "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507" | "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct" | "accounts/fireworks/models/deepseek-r1-0528" | "accounts/fireworks/models/deepseek-v3" | "accounts/fireworks/models/deepseek-v3p1" | "accounts/fireworks/models/glm-4p5" | "accounts/fireworks/models/glm-4p5-air" | "accounts/fireworks/models/glm-4p6" | "accounts/fireworks/models/gpt-oss-20b" | "accounts/fireworks/models/gpt-oss-120b";
47851
+ type FireworksModelId = "accounts/fireworks/models/kimi-k2-instruct" | "accounts/fireworks/models/kimi-k2-instruct-0905" | "accounts/fireworks/models/kimi-k2-thinking" | "accounts/fireworks/models/minimax-m2" | "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507" | "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct" | "accounts/fireworks/models/deepseek-r1-0528" | "accounts/fireworks/models/deepseek-v3" | "accounts/fireworks/models/deepseek-v3p1" | "accounts/fireworks/models/glm-4p5" | "accounts/fireworks/models/glm-4p5-air" | "accounts/fireworks/models/glm-4p6" | "accounts/fireworks/models/gpt-oss-20b" | "accounts/fireworks/models/gpt-oss-120b";
47084
47852
  declare const fireworksDefaultModelId: FireworksModelId;
47085
47853
  declare const fireworksModels: {
47086
47854
  readonly "accounts/fireworks/models/kimi-k2-instruct-0905": {
@@ -47106,6 +47874,20 @@ declare const fireworksModels: {
47106
47874
  readonly outputPrice: 2.5;
47107
47875
  readonly description: "Kimi K2 is a state-of-the-art mixture-of-experts (MoE) language model with 32 billion activated parameters and 1 trillion total parameters. Trained with the Muon optimizer, Kimi K2 achieves exceptional performance across frontier knowledge, reasoning, and coding tasks while being meticulously optimized for agentic capabilities.";
47108
47876
  };
47877
+ readonly "accounts/fireworks/models/kimi-k2-thinking": {
47878
+ readonly maxTokens: 16000;
47879
+ readonly contextWindow: 256000;
47880
+ readonly supportsImages: false;
47881
+ readonly supportsPromptCache: true;
47882
+ readonly supportsNativeTools: true;
47883
+ readonly supportsTemperature: true;
47884
+ readonly preserveReasoning: true;
47885
+ readonly defaultTemperature: 1;
47886
+ readonly inputPrice: 0.6;
47887
+ readonly outputPrice: 2.5;
47888
+ readonly cacheReadsPrice: 0.15;
47889
+ readonly description: "The kimi-k2-thinking model is a general-purpose agentic reasoning model developed by Moonshot AI. Thanks to its strength in deep reasoning and multi-turn tool use, it can solve even the hardest problems.";
47890
+ };
47109
47891
  readonly "accounts/fireworks/models/minimax-m2": {
47110
47892
  readonly maxTokens: 4096;
47111
47893
  readonly contextWindow: 204800;
@@ -47241,8 +48023,6 @@ declare const geminiModels: {
47241
48023
  readonly supportsPromptCache: true;
47242
48024
  readonly supportsReasoningEffort: ["low", "high"];
47243
48025
  readonly reasoningEffort: "low";
47244
- readonly includedTools: ["write_file", "edit_file"];
47245
- readonly excludedTools: ["apply_diff"];
47246
48026
  readonly supportsTemperature: true;
47247
48027
  readonly defaultTemperature: 1;
47248
48028
  readonly inputPrice: 4;
@@ -47266,8 +48046,6 @@ declare const geminiModels: {
47266
48046
  readonly supportsPromptCache: true;
47267
48047
  readonly supportsReasoningEffort: ["minimal", "low", "medium", "high"];
47268
48048
  readonly reasoningEffort: "medium";
47269
- readonly includedTools: ["write_file", "edit_file"];
47270
- readonly excludedTools: ["apply_diff"];
47271
48049
  readonly supportsTemperature: true;
47272
48050
  readonly defaultTemperature: 1;
47273
48051
  readonly inputPrice: 0.3;
@@ -47282,8 +48060,6 @@ declare const geminiModels: {
47282
48060
  readonly supportsNativeTools: true;
47283
48061
  readonly defaultToolProtocol: "native";
47284
48062
  readonly supportsPromptCache: true;
47285
- readonly includedTools: ["write_file", "edit_file"];
47286
- readonly excludedTools: ["apply_diff"];
47287
48063
  readonly inputPrice: 2.5;
47288
48064
  readonly outputPrice: 15;
47289
48065
  readonly cacheReadsPrice: 0.625;
@@ -47310,8 +48086,6 @@ declare const geminiModels: {
47310
48086
  readonly supportsNativeTools: true;
47311
48087
  readonly defaultToolProtocol: "native";
47312
48088
  readonly supportsPromptCache: true;
47313
- readonly includedTools: ["write_file", "edit_file"];
47314
- readonly excludedTools: ["apply_diff"];
47315
48089
  readonly inputPrice: 2.5;
47316
48090
  readonly outputPrice: 15;
47317
48091
  readonly cacheReadsPrice: 0.625;
@@ -47337,8 +48111,6 @@ declare const geminiModels: {
47337
48111
  readonly supportsNativeTools: true;
47338
48112
  readonly defaultToolProtocol: "native";
47339
48113
  readonly supportsPromptCache: true;
47340
- readonly includedTools: ["write_file", "edit_file"];
47341
- readonly excludedTools: ["apply_diff"];
47342
48114
  readonly inputPrice: 2.5;
47343
48115
  readonly outputPrice: 15;
47344
48116
  readonly cacheReadsPrice: 0.625;
@@ -47362,8 +48134,6 @@ declare const geminiModels: {
47362
48134
  readonly supportsNativeTools: true;
47363
48135
  readonly defaultToolProtocol: "native";
47364
48136
  readonly supportsPromptCache: true;
47365
- readonly includedTools: ["write_file", "edit_file"];
47366
- readonly excludedTools: ["apply_diff"];
47367
48137
  readonly inputPrice: 2.5;
47368
48138
  readonly outputPrice: 15;
47369
48139
  readonly cacheReadsPrice: 0.625;
@@ -47389,8 +48159,6 @@ declare const geminiModels: {
47389
48159
  readonly supportsNativeTools: true;
47390
48160
  readonly defaultToolProtocol: "native";
47391
48161
  readonly supportsPromptCache: true;
47392
- readonly includedTools: ["write_file", "edit_file"];
47393
- readonly excludedTools: ["apply_diff"];
47394
48162
  readonly inputPrice: 0.3;
47395
48163
  readonly outputPrice: 2.5;
47396
48164
  readonly cacheReadsPrice: 0.075;
@@ -47405,8 +48173,6 @@ declare const geminiModels: {
47405
48173
  readonly supportsNativeTools: true;
47406
48174
  readonly defaultToolProtocol: "native";
47407
48175
  readonly supportsPromptCache: true;
47408
- readonly includedTools: ["write_file", "edit_file"];
47409
- readonly excludedTools: ["apply_diff"];
47410
48176
  readonly inputPrice: 0.3;
47411
48177
  readonly outputPrice: 2.5;
47412
48178
  readonly cacheReadsPrice: 0.075;
@@ -47421,8 +48187,6 @@ declare const geminiModels: {
47421
48187
  readonly supportsNativeTools: true;
47422
48188
  readonly defaultToolProtocol: "native";
47423
48189
  readonly supportsPromptCache: true;
47424
- readonly includedTools: ["write_file", "edit_file"];
47425
- readonly excludedTools: ["apply_diff"];
47426
48190
  readonly inputPrice: 0.3;
47427
48191
  readonly outputPrice: 2.5;
47428
48192
  readonly cacheReadsPrice: 0.075;
@@ -47437,8 +48201,6 @@ declare const geminiModels: {
47437
48201
  readonly supportsNativeTools: true;
47438
48202
  readonly defaultToolProtocol: "native";
47439
48203
  readonly supportsPromptCache: true;
47440
- readonly includedTools: ["write_file", "edit_file"];
47441
- readonly excludedTools: ["apply_diff"];
47442
48204
  readonly inputPrice: 0.1;
47443
48205
  readonly outputPrice: 0.4;
47444
48206
  readonly cacheReadsPrice: 0.025;
@@ -47453,8 +48215,6 @@ declare const geminiModels: {
47453
48215
  readonly supportsNativeTools: true;
47454
48216
  readonly defaultToolProtocol: "native";
47455
48217
  readonly supportsPromptCache: true;
47456
- readonly includedTools: ["write_file", "edit_file"];
47457
- readonly excludedTools: ["apply_diff"];
47458
48218
  readonly inputPrice: 0.1;
47459
48219
  readonly outputPrice: 0.4;
47460
48220
  readonly cacheReadsPrice: 0.025;
@@ -48808,8 +49568,6 @@ declare const vertexModels: {
48808
49568
  readonly supportsPromptCache: true;
48809
49569
  readonly supportsReasoningEffort: ["low", "high"];
48810
49570
  readonly reasoningEffort: "low";
48811
- readonly includedTools: ["write_file", "edit_file"];
48812
- readonly excludedTools: ["apply_diff"];
48813
49571
  readonly supportsTemperature: true;
48814
49572
  readonly defaultTemperature: 1;
48815
49573
  readonly inputPrice: 4;
@@ -48833,8 +49591,6 @@ declare const vertexModels: {
48833
49591
  readonly supportsPromptCache: true;
48834
49592
  readonly supportsReasoningEffort: ["minimal", "low", "medium", "high"];
48835
49593
  readonly reasoningEffort: "medium";
48836
- readonly includedTools: ["write_file", "edit_file"];
48837
- readonly excludedTools: ["apply_diff"];
48838
49594
  readonly supportsTemperature: true;
48839
49595
  readonly defaultTemperature: 1;
48840
49596
  readonly inputPrice: 0.3;
@@ -48849,8 +49605,6 @@ declare const vertexModels: {
48849
49605
  readonly supportsNativeTools: true;
48850
49606
  readonly defaultToolProtocol: "native";
48851
49607
  readonly supportsPromptCache: true;
48852
- readonly includedTools: ["write_file", "edit_file"];
48853
- readonly excludedTools: ["apply_diff"];
48854
49608
  readonly inputPrice: 0.15;
48855
49609
  readonly outputPrice: 3.5;
48856
49610
  readonly maxThinkingTokens: 24576;
@@ -48864,8 +49618,6 @@ declare const vertexModels: {
48864
49618
  readonly supportsNativeTools: true;
48865
49619
  readonly defaultToolProtocol: "native";
48866
49620
  readonly supportsPromptCache: true;
48867
- readonly includedTools: ["write_file", "edit_file"];
48868
- readonly excludedTools: ["apply_diff"];
48869
49621
  readonly inputPrice: 0.15;
48870
49622
  readonly outputPrice: 0.6;
48871
49623
  };
@@ -48876,8 +49628,6 @@ declare const vertexModels: {
48876
49628
  readonly supportsNativeTools: true;
48877
49629
  readonly defaultToolProtocol: "native";
48878
49630
  readonly supportsPromptCache: true;
48879
- readonly includedTools: ["write_file", "edit_file"];
48880
- readonly excludedTools: ["apply_diff"];
48881
49631
  readonly inputPrice: 0.3;
48882
49632
  readonly outputPrice: 2.5;
48883
49633
  readonly cacheReadsPrice: 0.075;
@@ -48892,8 +49642,6 @@ declare const vertexModels: {
48892
49642
  readonly supportsNativeTools: true;
48893
49643
  readonly defaultToolProtocol: "native";
48894
49644
  readonly supportsPromptCache: false;
48895
- readonly includedTools: ["write_file", "edit_file"];
48896
- readonly excludedTools: ["apply_diff"];
48897
49645
  readonly inputPrice: 0.15;
48898
49646
  readonly outputPrice: 3.5;
48899
49647
  readonly maxThinkingTokens: 24576;
@@ -48907,8 +49655,6 @@ declare const vertexModels: {
48907
49655
  readonly supportsNativeTools: true;
48908
49656
  readonly defaultToolProtocol: "native";
48909
49657
  readonly supportsPromptCache: false;
48910
- readonly includedTools: ["write_file", "edit_file"];
48911
- readonly excludedTools: ["apply_diff"];
48912
49658
  readonly inputPrice: 0.15;
48913
49659
  readonly outputPrice: 0.6;
48914
49660
  };
@@ -48919,8 +49665,6 @@ declare const vertexModels: {
48919
49665
  readonly supportsNativeTools: true;
48920
49666
  readonly defaultToolProtocol: "native";
48921
49667
  readonly supportsPromptCache: true;
48922
- readonly includedTools: ["write_file", "edit_file"];
48923
- readonly excludedTools: ["apply_diff"];
48924
49668
  readonly inputPrice: 2.5;
48925
49669
  readonly outputPrice: 15;
48926
49670
  };
@@ -48931,8 +49675,6 @@ declare const vertexModels: {
48931
49675
  readonly supportsNativeTools: true;
48932
49676
  readonly defaultToolProtocol: "native";
48933
49677
  readonly supportsPromptCache: true;
48934
- readonly includedTools: ["write_file", "edit_file"];
48935
- readonly excludedTools: ["apply_diff"];
48936
49678
  readonly inputPrice: 2.5;
48937
49679
  readonly outputPrice: 15;
48938
49680
  };
@@ -48943,8 +49685,6 @@ declare const vertexModels: {
48943
49685
  readonly supportsNativeTools: true;
48944
49686
  readonly defaultToolProtocol: "native";
48945
49687
  readonly supportsPromptCache: true;
48946
- readonly includedTools: ["write_file", "edit_file"];
48947
- readonly excludedTools: ["apply_diff"];
48948
49688
  readonly inputPrice: 2.5;
48949
49689
  readonly outputPrice: 15;
48950
49690
  readonly maxThinkingTokens: 32768;
@@ -48957,8 +49697,6 @@ declare const vertexModels: {
48957
49697
  readonly supportsNativeTools: true;
48958
49698
  readonly defaultToolProtocol: "native";
48959
49699
  readonly supportsPromptCache: true;
48960
- readonly includedTools: ["write_file", "edit_file"];
48961
- readonly excludedTools: ["apply_diff"];
48962
49700
  readonly inputPrice: 2.5;
48963
49701
  readonly outputPrice: 15;
48964
49702
  readonly maxThinkingTokens: 32768;
@@ -48983,8 +49721,6 @@ declare const vertexModels: {
48983
49721
  readonly supportsNativeTools: true;
48984
49722
  readonly defaultToolProtocol: "native";
48985
49723
  readonly supportsPromptCache: false;
48986
- readonly includedTools: ["write_file", "edit_file"];
48987
- readonly excludedTools: ["apply_diff"];
48988
49724
  readonly inputPrice: 0;
48989
49725
  readonly outputPrice: 0;
48990
49726
  };
@@ -48995,8 +49731,6 @@ declare const vertexModels: {
48995
49731
  readonly supportsNativeTools: true;
48996
49732
  readonly defaultToolProtocol: "native";
48997
49733
  readonly supportsPromptCache: false;
48998
- readonly includedTools: ["write_file", "edit_file"];
48999
- readonly excludedTools: ["apply_diff"];
49000
49734
  readonly inputPrice: 0;
49001
49735
  readonly outputPrice: 0;
49002
49736
  };
@@ -49007,8 +49741,6 @@ declare const vertexModels: {
49007
49741
  readonly supportsNativeTools: true;
49008
49742
  readonly defaultToolProtocol: "native";
49009
49743
  readonly supportsPromptCache: true;
49010
- readonly includedTools: ["write_file", "edit_file"];
49011
- readonly excludedTools: ["apply_diff"];
49012
49744
  readonly inputPrice: 0.15;
49013
49745
  readonly outputPrice: 0.6;
49014
49746
  };
@@ -49019,8 +49751,6 @@ declare const vertexModels: {
49019
49751
  readonly supportsNativeTools: true;
49020
49752
  readonly defaultToolProtocol: "native";
49021
49753
  readonly supportsPromptCache: false;
49022
- readonly includedTools: ["write_file", "edit_file"];
49023
- readonly excludedTools: ["apply_diff"];
49024
49754
  readonly inputPrice: 0.075;
49025
49755
  readonly outputPrice: 0.3;
49026
49756
  };
@@ -49031,8 +49761,6 @@ declare const vertexModels: {
49031
49761
  readonly supportsNativeTools: true;
49032
49762
  readonly defaultToolProtocol: "native";
49033
49763
  readonly supportsPromptCache: false;
49034
- readonly includedTools: ["write_file", "edit_file"];
49035
- readonly excludedTools: ["apply_diff"];
49036
49764
  readonly inputPrice: 0;
49037
49765
  readonly outputPrice: 0;
49038
49766
  };
@@ -49043,8 +49771,6 @@ declare const vertexModels: {
49043
49771
  readonly supportsNativeTools: true;
49044
49772
  readonly defaultToolProtocol: "native";
49045
49773
  readonly supportsPromptCache: true;
49046
- readonly includedTools: ["write_file", "edit_file"];
49047
- readonly excludedTools: ["apply_diff"];
49048
49774
  readonly inputPrice: 0.075;
49049
49775
  readonly outputPrice: 0.3;
49050
49776
  };
@@ -49055,8 +49781,6 @@ declare const vertexModels: {
49055
49781
  readonly supportsNativeTools: true;
49056
49782
  readonly defaultToolProtocol: "native";
49057
49783
  readonly supportsPromptCache: false;
49058
- readonly includedTools: ["write_file", "edit_file"];
49059
- readonly excludedTools: ["apply_diff"];
49060
49784
  readonly inputPrice: 1.25;
49061
49785
  readonly outputPrice: 5;
49062
49786
  };
@@ -49244,8 +49968,6 @@ declare const vertexModels: {
49244
49968
  readonly supportsNativeTools: true;
49245
49969
  readonly defaultToolProtocol: "native";
49246
49970
  readonly supportsPromptCache: true;
49247
- readonly includedTools: ["write_file", "edit_file"];
49248
- readonly excludedTools: ["apply_diff"];
49249
49971
  readonly inputPrice: 0.1;
49250
49972
  readonly outputPrice: 0.4;
49251
49973
  readonly cacheReadsPrice: 0.025;
@@ -49976,4 +50698,4 @@ declare function getProviderDefaultModelId(provider: ProviderName, options?: {
49976
50698
  isChina?: boolean;
49977
50699
  }): string;
49978
50700
 
49979
- export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, ApiProviderError, type AppProperties, type AssertEqual, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_1M_CONTEXT_MODEL_IDS, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_GLOBAL_INFERENCE_MODEL_IDS, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_SERVICE_TIER_MODEL_IDS, BEDROCK_SERVICE_TIER_PRICING, type BasetenModelId, type BedrockModelId, type BedrockServiceTier, type BrowserActionParams, CODEBASE_INDEX_DEFAULTS, CONSENT_COOKIE_NAME, CONTEXT_MANAGEMENT_EVENTS, COOKIE_CONSENT_EVENTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClaudeCodeRateLimitInfo, type ClaudeCodeReasoningLevel, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, ConnectionState, ConsecutiveMistakeError, type ConsecutiveMistakeReason, type ConsentCookieValue, type ContextCondense, type ContextManagementEvent, type ContextTruncation, type Coordinate, type CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomProvider, type CustomSupportPrompts, type CustomToolContext, type CustomToolDefinition, type CustomToolParametersSchema, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CHECKPOINT_TIMEOUT_SECONDS, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, EXPECTED_API_ERROR_CODES, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, ExtensionSocketEvents, type ExtensionTask, type FauxProvider, type FeatherlessModelId, type FileEntry, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLOBAL_SECRET_KEYS, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GenerateImageParams, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, IMAGE_GENERATION_MODELS, IMAGE_GENERATION_MODEL_IDS, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type ImageGenerationApiMethod, type ImageGenerationModel, type ImageGenerationProvider, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternalProvider, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LeaveResponse, type LineRange, type LocalProvider, MAX_CHECKPOINT_TIMEOUT_SECONDS, MINIMAX_DEFAULT_MAX_TOKENS, MINIMAX_DEFAULT_TEMPERATURE, MIN_CHECKPOINT_TIMEOUT_SECONDS, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type McpServerUse, type MinimaxModelId, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelIdKey, type ModelInfo, type ModelParameter, type MoonshotModelId, NATIVE_TOOL_DEFAULTS, type NonBlockingAsk, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationFeatures, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortExtended, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModel, RooModelSchema, type RooModelsResponse, RooModelsResponseSchema, RooPricingSchema, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type SerializedCustomToolDefinition, type SerializedCustomToolParameters, type ServiceTier, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type Size, type StaticAppProperties, type SuggestionItem, TOOL_PROTOCOL, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolProtocol, type ToolUsage, type TypedCustomToolDefinition, type TypicalProvider, type UsageStats, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_1M_CONTEXT_MODEL_IDS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type WorkspaceTaskVisibility, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, type ZaiApiLine, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, basetenDefaultModelId, basetenModels, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesDefaultModelInfo, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, claudeCodeReasoningConfig, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, contextTruncationSchema, customModePromptsSchema, customModesSettingsSchema, customProviders, customSupportPromptsSchema, deepInfraDefaultModelId, deepInfraDefaultModelInfo, deepSeekDefaultModelId, deepSeekModels, defineCustomTool, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, extractApiProviderErrorProperties, extractConsecutiveMistakeErrorProperties, extractMessageFromJsonPayload, fauxProviders, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getEffectiveProtocol, getErrorMessage, getErrorStatusCode, getImageGenerationProvider, getModelId, getProviderDefaultModelId, gitPropertiesSchema, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internalProviders, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isApiProviderError, isConsecutiveMistakeError, isContextManagementEvent, isCustomProvider, isDynamicProvider, isFauxProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isInternalProvider, isLanguage, isLocalProvider, isModelParameter, isNativeProtocol, isNonBlockingAsk, isProviderName, isResumableAsk, isSecretStateKey, isTypicalProvider, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, localProviders, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, minimaxDefaultModelId, minimaxDefaultModelInfo, minimaxModels, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelIdKeys, modelIdKeysByProvider, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, nonBlockingAsks, normalizeClaudeCodeModelId, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationFeaturesSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, queuedMessageSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortExtendedSchema, reasoningEffortSettingSchema, reasoningEffortSettingValues, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsExtended, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, serviceTierSchema, serviceTiers, shareResponseSchema, shouldReportApiErrorToTelemetry, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, usageStatsSchema, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels, zaiApiLineConfigs, zaiApiLineSchema };
50701
+ export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, ApiProviderError, type AppProperties, type AssertEqual, type AudioType, type AuthService, type AuthServiceEvents, type AuthState, BEDROCK_1M_CONTEXT_MODEL_IDS, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_GLOBAL_INFERENCE_MODEL_IDS, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_SERVICE_TIER_MODEL_IDS, BEDROCK_SERVICE_TIER_PRICING, type BasetenModelId, type BedrockModelId, type BedrockServiceTier, type BrowserAction, type BrowserActionParams, type BrowserActionResult, CODEBASE_INDEX_DEFAULTS, CONSENT_COOKIE_NAME, CONTEXT_MANAGEMENT_EVENTS, COOKIE_CONSENT_EVENTS, type CerebrasModelId, type CheckpointDiffPayload, type CheckpointRestorePayload, type ChutesModelId, type ClaudeCodeModelId, type ClaudeCodeRateLimitInfo, type ClaudeCodeReasoningLevel, type ClineApiReqCancelReason, type ClineApiReqInfo, type ClineAsk, type ClineAskResponse, type ClineAskUseMcpServer, type ClineMessage, type ClineSay, type ClineSayBrowserAction, type ClineSayTool, type CloudAppProperties, type CloudOrganization, type CloudOrganizationMembership, type CloudServiceEvents, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type Command, type CommandExecutionStatus, type CommandId, ConnectionState, ConsecutiveMistakeError, type ConsecutiveMistakeReason, type ConsentCookieValue, type ContextCondense, type ContextManagementEvent, type ContextTruncation, type Coordinate, type CreateTaskOptions, type CustomModePrompts, type CustomModesSettings, type CustomProvider, type CustomSupportPrompts, type CustomToolContext, type CustomToolDefinition, type CustomToolParametersSchema, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CHECKPOINT_TIMEOUT_SECONDS, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, type DynamicProvider, EVALS_SETTINGS, EVALS_TIMEOUT, EXPECTED_API_ERROR_CODES, type EditQueuedMessagePayload, type EmbedderProvider, type EmbeddingModelProfile, type EmbeddingModelProfiles, type Equals, type ExperimentId, type Experiments, type ExtensionBridgeCommand, ExtensionBridgeCommandName, type ExtensionBridgeEvent, ExtensionBridgeEventName, type ExtensionInstance, type ExtensionMessage, ExtensionSocketEvents, type ExtensionState, type ExtensionTask, type FauxProvider, type FeatherlessModelId, type FileEntry, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLOBAL_SECRET_KEYS, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GenerateImageParams, type GitCommit, type GitProperties, type GitRepositoryInfo, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HEARTBEAT_INTERVAL_MS, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, IMAGE_GENERATION_MODELS, IMAGE_GENERATION_MODEL_IDS, INSTANCE_TTL_SECONDS, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type ImageGenerationApiMethod, type ImageGenerationModel, type ImageGenerationProvider, type IndexClearedPayload, type IndexingStatus, type IndexingStatusPayload, type IndexingStatusUpdateMessage, type InstallMarketplaceItemOptions, type InstallMarketplaceItemWithParametersPayload, type InteractiveAsk, type InternalProvider, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type JWTPayload, type JoinResponse, type Keys, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, type LanguageModelChatSelector, type LeaveResponse, type LineRange, type LocalProvider, MAX_CHECKPOINT_TIMEOUT_SECONDS, MINIMAX_DEFAULT_MAX_TOKENS, MINIMAX_DEFAULT_TEMPERATURE, MIN_CHECKPOINT_TIMEOUT_SECONDS, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceInstalledMetadata, type MarketplaceItem, type MarketplaceItemType, type McpErrorEntry, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type McpResource, type McpResourceResponse, type McpResourceTemplate, type McpServer, type McpServerUse, type McpTool, type McpToolCallResponse, type MinimaxModelId, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelIdKey, type ModelInfo, type ModelParameter, type ModelRecord, type MoonshotModelId, NATIVE_TOOL_DEFAULTS, type NonBlockingAsk, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationFeatures, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type QwenCodeModelId, type ReasoningEffort, type ReasoningEffortExtended, type ReasoningEffortWithMinimal, type ResumableAsk, type RetryConfig, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModel, RooModelSchema, type RooModelsResponse, RooModelsResponseSchema, RooPricingSchema, type RouterModels, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type SerializedCustomToolDefinition, type SerializedCustomToolParameters, type ServiceTier, type SettingsService, type SettingsServiceEvents, type ShareResponse, type ShareVisibility, type Size, type StaticAppProperties, type SuggestionItem, TOOL_PROTOCOL, type TaskBridgeCommand, TaskBridgeCommandName, type TaskBridgeEvent, TaskBridgeEventName, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, TaskSocketEvents, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolProtocol, type ToolUsage, type TypedCustomToolDefinition, type TypicalProvider, type UpdateTodoListPayload, type UsageStats, type UserFeatures, type UserSettingsConfig, type UserSettingsData, VERCEL_AI_GATEWAY_DEFAULT_TEMPERATURE, VERCEL_AI_GATEWAY_PROMPT_CACHING_MODELS, VERCEL_AI_GATEWAY_VISION_AND_TOOLS_MODELS, VERCEL_AI_GATEWAY_VISION_ONLY_MODELS, VERTEX_1M_CONTEXT_MODEL_IDS, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type WebViewMessagePayload, type WebviewMessage, type WorkspaceTaskVisibility, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, type ZaiApiLine, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, basetenDefaultModelId, basetenModels, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, browserActions, cerebrasDefaultModelId, cerebrasModels, checkoutDiffPayloadSchema, checkoutRestorePayloadSchema, chutesDefaultModelId, chutesDefaultModelInfo, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, claudeCodeReasoningConfig, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, contextTruncationSchema, customModePromptsSchema, customModesSettingsSchema, customProviders, customSupportPromptsSchema, deepInfraDefaultModelId, deepInfraDefaultModelInfo, deepSeekDefaultModelId, deepSeekModels, defineCustomTool, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, dynamicProviders, experimentIds, experimentIdsSchema, experimentsSchema, extensionBridgeCommandSchema, extensionBridgeEventSchema, extensionInstanceSchema, extractApiProviderErrorProperties, extractConsecutiveMistakeErrorProperties, extractMessageFromJsonPayload, fauxProviders, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getEffectiveProtocol, getErrorMessage, getErrorStatusCode, getImageGenerationProvider, getModelId, getProviderDefaultModelId, gitPropertiesSchema, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, installMarketplaceItemWithParametersPayloadSchema, interactiveAsks, internalProviders, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isApiProviderError, isConsecutiveMistakeError, isContextManagementEvent, isCustomProvider, isDynamicProvider, isFauxProvider, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isInternalProvider, isLanguage, isLocalProvider, isModelParameter, isNativeProtocol, isNonBlockingAsk, isProviderName, isResumableAsk, isSecretStateKey, isTypicalProvider, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, localProviders, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, minimaxDefaultModelId, minimaxDefaultModelInfo, minimaxModels, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelIdKeys, modelIdKeysByProvider, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, nonBlockingAsks, normalizeClaudeCodeModelId, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationFeaturesSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, queuedMessageSchema, qwenCodeDefaultModelId, qwenCodeModels, reasoningEffortExtendedSchema, reasoningEffortSettingSchema, reasoningEffortSettingValues, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsExtended, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, serviceTierSchema, serviceTiers, shareResponseSchema, shouldReportApiErrorToTelemetry, staticAppPropertiesSchema, suggestionItemSchema, taskBridgeCommandSchema, taskBridgeEventSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, usageStatsSchema, userFeaturesSchema, userSettingsConfigSchema, userSettingsDataSchema, verbosityLevels, verbosityLevelsSchema, vercelAiGatewayDefaultModelId, vercelAiGatewayDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels, zaiApiLineConfigs, zaiApiLineSchema };