@roo-code/types 1.35.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +150 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +731 -116
- package/dist/index.d.ts +731 -116
- package/dist/index.js +144 -10
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -450,7 +450,7 @@ declare const BEDROCK_REGIONS: {
|
|
|
450
450
|
label: string;
|
|
451
451
|
}[];
|
|
452
452
|
|
|
453
|
-
type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera";
|
|
453
|
+
type ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | "deepseek-ai/DeepSeek-R1" | "deepseek-ai/DeepSeek-V3" | "unsloth/Llama-3.3-70B-Instruct" | "chutesai/Llama-4-Scout-17B-16E-Instruct" | "unsloth/Mistral-Nemo-Instruct-2407" | "unsloth/gemma-3-12b-it" | "NousResearch/DeepHermes-3-Llama-3-8B-Preview" | "unsloth/gemma-3-4b-it" | "nvidia/Llama-3_3-Nemotron-Super-49B-v1" | "nvidia/Llama-3_1-Nemotron-Ultra-253B-v1" | "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8" | "deepseek-ai/DeepSeek-V3-Base" | "deepseek-ai/DeepSeek-R1-Zero" | "deepseek-ai/DeepSeek-V3-0324" | "Qwen/Qwen3-235B-A22B" | "Qwen/Qwen3-235B-A22B-Instruct-2507" | "Qwen/Qwen3-32B" | "Qwen/Qwen3-30B-A3B" | "Qwen/Qwen3-14B" | "Qwen/Qwen3-8B" | "microsoft/MAI-DS-R1-FP8" | "tngtech/DeepSeek-R1T-Chimera";
|
|
454
454
|
declare const chutesDefaultModelId: ChutesModelId;
|
|
455
455
|
declare const chutesModels: {
|
|
456
456
|
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
@@ -588,6 +588,15 @@ declare const chutesModels: {
|
|
|
588
588
|
readonly outputPrice: 0;
|
|
589
589
|
readonly description: "DeepSeek V3 (0324) model.";
|
|
590
590
|
};
|
|
591
|
+
readonly "Qwen/Qwen3-235B-A22B-Instruct-2507": {
|
|
592
|
+
readonly maxTokens: 32768;
|
|
593
|
+
readonly contextWindow: 262144;
|
|
594
|
+
readonly supportsImages: false;
|
|
595
|
+
readonly supportsPromptCache: false;
|
|
596
|
+
readonly inputPrice: 0;
|
|
597
|
+
readonly outputPrice: 0;
|
|
598
|
+
readonly description: "Qwen3 235B A22B Instruct 2507 model with 262K context window.";
|
|
599
|
+
};
|
|
591
600
|
readonly "Qwen/Qwen3-235B-A22B": {
|
|
592
601
|
readonly maxTokens: 32768;
|
|
593
602
|
readonly contextWindow: 40960;
|
|
@@ -1346,6 +1355,23 @@ declare const mistralModels: {
|
|
|
1346
1355
|
};
|
|
1347
1356
|
declare const MISTRAL_DEFAULT_TEMPERATURE = 0;
|
|
1348
1357
|
|
|
1358
|
+
type MoonshotModelId = keyof typeof moonshotModels;
|
|
1359
|
+
declare const moonshotDefaultModelId: MoonshotModelId;
|
|
1360
|
+
declare const moonshotModels: {
|
|
1361
|
+
readonly "kimi-k2-0711-preview": {
|
|
1362
|
+
readonly maxTokens: 32000;
|
|
1363
|
+
readonly contextWindow: 131072;
|
|
1364
|
+
readonly supportsImages: false;
|
|
1365
|
+
readonly supportsPromptCache: true;
|
|
1366
|
+
readonly inputPrice: 0.6;
|
|
1367
|
+
readonly outputPrice: 2.5;
|
|
1368
|
+
readonly cacheWritesPrice: 0;
|
|
1369
|
+
readonly cacheReadsPrice: 0.15;
|
|
1370
|
+
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.";
|
|
1371
|
+
};
|
|
1372
|
+
};
|
|
1373
|
+
declare const MOONSHOT_DEFAULT_TEMPERATURE = 0.6;
|
|
1374
|
+
|
|
1349
1375
|
declare const ollamaDefaultModelId = "devstral:24b";
|
|
1350
1376
|
declare const ollamaDefaultModelInfo: ModelInfo;
|
|
1351
1377
|
|
|
@@ -1813,6 +1839,15 @@ declare const vertexModels: {
|
|
|
1813
1839
|
readonly maxThinkingTokens: 24576;
|
|
1814
1840
|
readonly supportsReasoningBudget: true;
|
|
1815
1841
|
};
|
|
1842
|
+
readonly "llama-4-maverick-17b-128e-instruct-maas": {
|
|
1843
|
+
readonly maxTokens: 8192;
|
|
1844
|
+
readonly contextWindow: 131072;
|
|
1845
|
+
readonly supportsImages: false;
|
|
1846
|
+
readonly supportsPromptCache: false;
|
|
1847
|
+
readonly inputPrice: 0.35;
|
|
1848
|
+
readonly outputPrice: 1.15;
|
|
1849
|
+
readonly description: "Meta Llama 4 Maverick 17B Instruct model, 128K context.";
|
|
1850
|
+
};
|
|
1816
1851
|
};
|
|
1817
1852
|
declare const VERTEX_REGIONS: {
|
|
1818
1853
|
value: string;
|
|
@@ -2059,8 +2094,8 @@ type AssertEqual<T extends true> = T;
|
|
|
2059
2094
|
/**
|
|
2060
2095
|
* ProviderName
|
|
2061
2096
|
*/
|
|
2062
|
-
declare const providerNames: readonly ["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"];
|
|
2063
|
-
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>;
|
|
2097
|
+
declare const providerNames: readonly ["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"];
|
|
2098
|
+
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>;
|
|
2064
2099
|
type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
2065
2100
|
/**
|
|
2066
2101
|
* ProviderSettingsEntry
|
|
@@ -2068,15 +2103,15 @@ type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
|
2068
2103
|
declare const providerSettingsEntrySchema: z.ZodObject<{
|
|
2069
2104
|
id: z.ZodString;
|
|
2070
2105
|
name: z.ZodString;
|
|
2071
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
2106
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
2072
2107
|
}, "strip", z.ZodTypeAny, {
|
|
2073
2108
|
name: string;
|
|
2074
2109
|
id: string;
|
|
2075
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
2110
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
2076
2111
|
}, {
|
|
2077
2112
|
name: string;
|
|
2078
2113
|
id: string;
|
|
2079
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
2114
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
2080
2115
|
}>;
|
|
2081
2116
|
type ProviderSettingsEntry = z.infer<typeof providerSettingsEntrySchema>;
|
|
2082
2117
|
/**
|
|
@@ -2089,6 +2124,7 @@ declare const DEFAULT_CONSECUTIVE_MISTAKE_LIMIT = 3;
|
|
|
2089
2124
|
declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiProvider", [z.ZodObject<{
|
|
2090
2125
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2091
2126
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2127
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2092
2128
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2093
2129
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2094
2130
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2110,6 +2146,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2110
2146
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2111
2147
|
includeMaxTokens?: boolean | undefined;
|
|
2112
2148
|
diffEnabled?: boolean | undefined;
|
|
2149
|
+
todoListEnabled?: boolean | undefined;
|
|
2113
2150
|
fuzzyMatchThreshold?: number | undefined;
|
|
2114
2151
|
modelTemperature?: number | null | undefined;
|
|
2115
2152
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2126,6 +2163,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2126
2163
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2127
2164
|
includeMaxTokens?: boolean | undefined;
|
|
2128
2165
|
diffEnabled?: boolean | undefined;
|
|
2166
|
+
todoListEnabled?: boolean | undefined;
|
|
2129
2167
|
fuzzyMatchThreshold?: number | undefined;
|
|
2130
2168
|
modelTemperature?: number | null | undefined;
|
|
2131
2169
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2140,6 +2178,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2140
2178
|
}>, z.ZodObject<{
|
|
2141
2179
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2142
2180
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2181
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2143
2182
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2144
2183
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2145
2184
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2160,6 +2199,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2160
2199
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2161
2200
|
includeMaxTokens?: boolean | undefined;
|
|
2162
2201
|
diffEnabled?: boolean | undefined;
|
|
2202
|
+
todoListEnabled?: boolean | undefined;
|
|
2163
2203
|
fuzzyMatchThreshold?: number | undefined;
|
|
2164
2204
|
modelTemperature?: number | null | undefined;
|
|
2165
2205
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2175,6 +2215,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2175
2215
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2176
2216
|
includeMaxTokens?: boolean | undefined;
|
|
2177
2217
|
diffEnabled?: boolean | undefined;
|
|
2218
|
+
todoListEnabled?: boolean | undefined;
|
|
2178
2219
|
fuzzyMatchThreshold?: number | undefined;
|
|
2179
2220
|
modelTemperature?: number | null | undefined;
|
|
2180
2221
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2188,6 +2229,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2188
2229
|
}>, z.ZodObject<{
|
|
2189
2230
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2190
2231
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2232
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2191
2233
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2192
2234
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2193
2235
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2206,6 +2248,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2206
2248
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2207
2249
|
includeMaxTokens?: boolean | undefined;
|
|
2208
2250
|
diffEnabled?: boolean | undefined;
|
|
2251
|
+
todoListEnabled?: boolean | undefined;
|
|
2209
2252
|
fuzzyMatchThreshold?: number | undefined;
|
|
2210
2253
|
modelTemperature?: number | null | undefined;
|
|
2211
2254
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2220,6 +2263,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2220
2263
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2221
2264
|
includeMaxTokens?: boolean | undefined;
|
|
2222
2265
|
diffEnabled?: boolean | undefined;
|
|
2266
|
+
todoListEnabled?: boolean | undefined;
|
|
2223
2267
|
fuzzyMatchThreshold?: number | undefined;
|
|
2224
2268
|
modelTemperature?: number | null | undefined;
|
|
2225
2269
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2232,6 +2276,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2232
2276
|
}>, z.ZodObject<{
|
|
2233
2277
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2234
2278
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2279
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2235
2280
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2236
2281
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2237
2282
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2253,6 +2298,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2253
2298
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2254
2299
|
includeMaxTokens?: boolean | undefined;
|
|
2255
2300
|
diffEnabled?: boolean | undefined;
|
|
2301
|
+
todoListEnabled?: boolean | undefined;
|
|
2256
2302
|
fuzzyMatchThreshold?: number | undefined;
|
|
2257
2303
|
modelTemperature?: number | null | undefined;
|
|
2258
2304
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2270,6 +2316,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2270
2316
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2271
2317
|
includeMaxTokens?: boolean | undefined;
|
|
2272
2318
|
diffEnabled?: boolean | undefined;
|
|
2319
|
+
todoListEnabled?: boolean | undefined;
|
|
2273
2320
|
fuzzyMatchThreshold?: number | undefined;
|
|
2274
2321
|
modelTemperature?: number | null | undefined;
|
|
2275
2322
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2285,6 +2332,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2285
2332
|
}>, z.ZodObject<{
|
|
2286
2333
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2287
2334
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2335
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2288
2336
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2289
2337
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2290
2338
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2315,6 +2363,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2315
2363
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2316
2364
|
includeMaxTokens?: boolean | undefined;
|
|
2317
2365
|
diffEnabled?: boolean | undefined;
|
|
2366
|
+
todoListEnabled?: boolean | undefined;
|
|
2318
2367
|
fuzzyMatchThreshold?: number | undefined;
|
|
2319
2368
|
modelTemperature?: number | null | undefined;
|
|
2320
2369
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2340,6 +2389,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2340
2389
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2341
2390
|
includeMaxTokens?: boolean | undefined;
|
|
2342
2391
|
diffEnabled?: boolean | undefined;
|
|
2392
|
+
todoListEnabled?: boolean | undefined;
|
|
2343
2393
|
fuzzyMatchThreshold?: number | undefined;
|
|
2344
2394
|
modelTemperature?: number | null | undefined;
|
|
2345
2395
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2363,6 +2413,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2363
2413
|
}>, z.ZodObject<{
|
|
2364
2414
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2365
2415
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2416
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2366
2417
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2367
2418
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2368
2419
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2385,6 +2436,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2385
2436
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2386
2437
|
includeMaxTokens?: boolean | undefined;
|
|
2387
2438
|
diffEnabled?: boolean | undefined;
|
|
2439
|
+
todoListEnabled?: boolean | undefined;
|
|
2388
2440
|
fuzzyMatchThreshold?: number | undefined;
|
|
2389
2441
|
modelTemperature?: number | null | undefined;
|
|
2390
2442
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2402,6 +2454,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2402
2454
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2403
2455
|
includeMaxTokens?: boolean | undefined;
|
|
2404
2456
|
diffEnabled?: boolean | undefined;
|
|
2457
|
+
todoListEnabled?: boolean | undefined;
|
|
2405
2458
|
fuzzyMatchThreshold?: number | undefined;
|
|
2406
2459
|
modelTemperature?: number | null | undefined;
|
|
2407
2460
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2417,6 +2470,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2417
2470
|
}>, z.ZodObject<{
|
|
2418
2471
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2419
2472
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2473
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2420
2474
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2421
2475
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2422
2476
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2537,6 +2591,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2537
2591
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2538
2592
|
includeMaxTokens?: boolean | undefined;
|
|
2539
2593
|
diffEnabled?: boolean | undefined;
|
|
2594
|
+
todoListEnabled?: boolean | undefined;
|
|
2540
2595
|
fuzzyMatchThreshold?: number | undefined;
|
|
2541
2596
|
modelTemperature?: number | null | undefined;
|
|
2542
2597
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2587,6 +2642,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2587
2642
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2588
2643
|
includeMaxTokens?: boolean | undefined;
|
|
2589
2644
|
diffEnabled?: boolean | undefined;
|
|
2645
|
+
todoListEnabled?: boolean | undefined;
|
|
2590
2646
|
fuzzyMatchThreshold?: number | undefined;
|
|
2591
2647
|
modelTemperature?: number | null | undefined;
|
|
2592
2648
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2635,6 +2691,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2635
2691
|
}>, z.ZodObject<{
|
|
2636
2692
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2637
2693
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2694
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2638
2695
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2639
2696
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2640
2697
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2653,6 +2710,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2653
2710
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2654
2711
|
includeMaxTokens?: boolean | undefined;
|
|
2655
2712
|
diffEnabled?: boolean | undefined;
|
|
2713
|
+
todoListEnabled?: boolean | undefined;
|
|
2656
2714
|
fuzzyMatchThreshold?: number | undefined;
|
|
2657
2715
|
modelTemperature?: number | null | undefined;
|
|
2658
2716
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2667,6 +2725,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2667
2725
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2668
2726
|
includeMaxTokens?: boolean | undefined;
|
|
2669
2727
|
diffEnabled?: boolean | undefined;
|
|
2728
|
+
todoListEnabled?: boolean | undefined;
|
|
2670
2729
|
fuzzyMatchThreshold?: number | undefined;
|
|
2671
2730
|
modelTemperature?: number | null | undefined;
|
|
2672
2731
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2679,6 +2738,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2679
2738
|
}>, z.ZodObject<{
|
|
2680
2739
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2681
2740
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2741
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2682
2742
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2683
2743
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2684
2744
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2711,6 +2771,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2711
2771
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2712
2772
|
includeMaxTokens?: boolean | undefined;
|
|
2713
2773
|
diffEnabled?: boolean | undefined;
|
|
2774
|
+
todoListEnabled?: boolean | undefined;
|
|
2714
2775
|
fuzzyMatchThreshold?: number | undefined;
|
|
2715
2776
|
modelTemperature?: number | null | undefined;
|
|
2716
2777
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2729,6 +2790,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2729
2790
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2730
2791
|
includeMaxTokens?: boolean | undefined;
|
|
2731
2792
|
diffEnabled?: boolean | undefined;
|
|
2793
|
+
todoListEnabled?: boolean | undefined;
|
|
2732
2794
|
fuzzyMatchThreshold?: number | undefined;
|
|
2733
2795
|
modelTemperature?: number | null | undefined;
|
|
2734
2796
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2745,6 +2807,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2745
2807
|
}>, z.ZodObject<{
|
|
2746
2808
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2747
2809
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2810
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2748
2811
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2749
2812
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2750
2813
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2765,6 +2828,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2765
2828
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2766
2829
|
includeMaxTokens?: boolean | undefined;
|
|
2767
2830
|
diffEnabled?: boolean | undefined;
|
|
2831
|
+
todoListEnabled?: boolean | undefined;
|
|
2768
2832
|
fuzzyMatchThreshold?: number | undefined;
|
|
2769
2833
|
modelTemperature?: number | null | undefined;
|
|
2770
2834
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2781,6 +2845,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2781
2845
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2782
2846
|
includeMaxTokens?: boolean | undefined;
|
|
2783
2847
|
diffEnabled?: boolean | undefined;
|
|
2848
|
+
todoListEnabled?: boolean | undefined;
|
|
2784
2849
|
fuzzyMatchThreshold?: number | undefined;
|
|
2785
2850
|
modelTemperature?: number | null | undefined;
|
|
2786
2851
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2795,6 +2860,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2795
2860
|
}>, z.ZodObject<{
|
|
2796
2861
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2797
2862
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2863
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2798
2864
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2799
2865
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2800
2866
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2815,6 +2881,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2815
2881
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2816
2882
|
includeMaxTokens?: boolean | undefined;
|
|
2817
2883
|
diffEnabled?: boolean | undefined;
|
|
2884
|
+
todoListEnabled?: boolean | undefined;
|
|
2818
2885
|
fuzzyMatchThreshold?: number | undefined;
|
|
2819
2886
|
modelTemperature?: number | null | undefined;
|
|
2820
2887
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2830,6 +2897,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2830
2897
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2831
2898
|
includeMaxTokens?: boolean | undefined;
|
|
2832
2899
|
diffEnabled?: boolean | undefined;
|
|
2900
|
+
todoListEnabled?: boolean | undefined;
|
|
2833
2901
|
fuzzyMatchThreshold?: number | undefined;
|
|
2834
2902
|
modelTemperature?: number | null | undefined;
|
|
2835
2903
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2843,6 +2911,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2843
2911
|
}>, z.ZodObject<{
|
|
2844
2912
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2845
2913
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2914
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2846
2915
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2847
2916
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2848
2917
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2863,6 +2932,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2863
2932
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2864
2933
|
includeMaxTokens?: boolean | undefined;
|
|
2865
2934
|
diffEnabled?: boolean | undefined;
|
|
2935
|
+
todoListEnabled?: boolean | undefined;
|
|
2866
2936
|
fuzzyMatchThreshold?: number | undefined;
|
|
2867
2937
|
modelTemperature?: number | null | undefined;
|
|
2868
2938
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2878,6 +2948,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2878
2948
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2879
2949
|
includeMaxTokens?: boolean | undefined;
|
|
2880
2950
|
diffEnabled?: boolean | undefined;
|
|
2951
|
+
todoListEnabled?: boolean | undefined;
|
|
2881
2952
|
fuzzyMatchThreshold?: number | undefined;
|
|
2882
2953
|
modelTemperature?: number | null | undefined;
|
|
2883
2954
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2891,6 +2962,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2891
2962
|
}>, z.ZodObject<{
|
|
2892
2963
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2893
2964
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2965
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2894
2966
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2895
2967
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2896
2968
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2911,6 +2983,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2911
2983
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2912
2984
|
includeMaxTokens?: boolean | undefined;
|
|
2913
2985
|
diffEnabled?: boolean | undefined;
|
|
2986
|
+
todoListEnabled?: boolean | undefined;
|
|
2914
2987
|
fuzzyMatchThreshold?: number | undefined;
|
|
2915
2988
|
modelTemperature?: number | null | undefined;
|
|
2916
2989
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2926,6 +2999,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2926
2999
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2927
3000
|
includeMaxTokens?: boolean | undefined;
|
|
2928
3001
|
diffEnabled?: boolean | undefined;
|
|
3002
|
+
todoListEnabled?: boolean | undefined;
|
|
2929
3003
|
fuzzyMatchThreshold?: number | undefined;
|
|
2930
3004
|
modelTemperature?: number | null | undefined;
|
|
2931
3005
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2939,6 +3013,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2939
3013
|
}>, z.ZodObject<{
|
|
2940
3014
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2941
3015
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3016
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2942
3017
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2943
3018
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2944
3019
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2959,6 +3034,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2959
3034
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2960
3035
|
includeMaxTokens?: boolean | undefined;
|
|
2961
3036
|
diffEnabled?: boolean | undefined;
|
|
3037
|
+
todoListEnabled?: boolean | undefined;
|
|
2962
3038
|
fuzzyMatchThreshold?: number | undefined;
|
|
2963
3039
|
modelTemperature?: number | null | undefined;
|
|
2964
3040
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2974,6 +3050,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2974
3050
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
2975
3051
|
includeMaxTokens?: boolean | undefined;
|
|
2976
3052
|
diffEnabled?: boolean | undefined;
|
|
3053
|
+
todoListEnabled?: boolean | undefined;
|
|
2977
3054
|
fuzzyMatchThreshold?: number | undefined;
|
|
2978
3055
|
modelTemperature?: number | null | undefined;
|
|
2979
3056
|
rateLimitSeconds?: number | undefined;
|
|
@@ -2987,6 +3064,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2987
3064
|
}>, z.ZodObject<{
|
|
2988
3065
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2989
3066
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3067
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2990
3068
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2991
3069
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2992
3070
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3007,6 +3085,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3007
3085
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3008
3086
|
includeMaxTokens?: boolean | undefined;
|
|
3009
3087
|
diffEnabled?: boolean | undefined;
|
|
3088
|
+
todoListEnabled?: boolean | undefined;
|
|
3010
3089
|
fuzzyMatchThreshold?: number | undefined;
|
|
3011
3090
|
modelTemperature?: number | null | undefined;
|
|
3012
3091
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3022,6 +3101,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3022
3101
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3023
3102
|
includeMaxTokens?: boolean | undefined;
|
|
3024
3103
|
diffEnabled?: boolean | undefined;
|
|
3104
|
+
todoListEnabled?: boolean | undefined;
|
|
3025
3105
|
fuzzyMatchThreshold?: number | undefined;
|
|
3026
3106
|
modelTemperature?: number | null | undefined;
|
|
3027
3107
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3035,6 +3115,58 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3035
3115
|
}>, z.ZodObject<{
|
|
3036
3116
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3037
3117
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3118
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3119
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3120
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3121
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3122
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
3123
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
3124
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3125
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3126
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3127
|
+
} & {
|
|
3128
|
+
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3129
|
+
} & {
|
|
3130
|
+
moonshotBaseUrl: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"https://api.moonshot.ai/v1">, z.ZodLiteral<"https://api.moonshot.cn/v1">]>>;
|
|
3131
|
+
moonshotApiKey: z.ZodOptional<z.ZodString>;
|
|
3132
|
+
} & {
|
|
3133
|
+
apiProvider: z.ZodLiteral<"moonshot">;
|
|
3134
|
+
}, "strip", z.ZodTypeAny, {
|
|
3135
|
+
apiProvider: "moonshot";
|
|
3136
|
+
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3137
|
+
includeMaxTokens?: boolean | undefined;
|
|
3138
|
+
diffEnabled?: boolean | undefined;
|
|
3139
|
+
todoListEnabled?: boolean | undefined;
|
|
3140
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3141
|
+
modelTemperature?: number | null | undefined;
|
|
3142
|
+
rateLimitSeconds?: number | undefined;
|
|
3143
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3144
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3145
|
+
modelMaxTokens?: number | undefined;
|
|
3146
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3147
|
+
apiModelId?: string | undefined;
|
|
3148
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
3149
|
+
moonshotApiKey?: string | undefined;
|
|
3150
|
+
}, {
|
|
3151
|
+
apiProvider: "moonshot";
|
|
3152
|
+
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3153
|
+
includeMaxTokens?: boolean | undefined;
|
|
3154
|
+
diffEnabled?: boolean | undefined;
|
|
3155
|
+
todoListEnabled?: boolean | undefined;
|
|
3156
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3157
|
+
modelTemperature?: number | null | undefined;
|
|
3158
|
+
rateLimitSeconds?: number | undefined;
|
|
3159
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3160
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3161
|
+
modelMaxTokens?: number | undefined;
|
|
3162
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3163
|
+
apiModelId?: string | undefined;
|
|
3164
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
3165
|
+
moonshotApiKey?: string | undefined;
|
|
3166
|
+
}>, z.ZodObject<{
|
|
3167
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3168
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3169
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3038
3170
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3039
3171
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3040
3172
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3053,6 +3185,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3053
3185
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3054
3186
|
includeMaxTokens?: boolean | undefined;
|
|
3055
3187
|
diffEnabled?: boolean | undefined;
|
|
3188
|
+
todoListEnabled?: boolean | undefined;
|
|
3056
3189
|
fuzzyMatchThreshold?: number | undefined;
|
|
3057
3190
|
modelTemperature?: number | null | undefined;
|
|
3058
3191
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3067,6 +3200,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3067
3200
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3068
3201
|
includeMaxTokens?: boolean | undefined;
|
|
3069
3202
|
diffEnabled?: boolean | undefined;
|
|
3203
|
+
todoListEnabled?: boolean | undefined;
|
|
3070
3204
|
fuzzyMatchThreshold?: number | undefined;
|
|
3071
3205
|
modelTemperature?: number | null | undefined;
|
|
3072
3206
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3079,6 +3213,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3079
3213
|
}>, z.ZodObject<{
|
|
3080
3214
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3081
3215
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3216
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3082
3217
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3083
3218
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3084
3219
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3097,6 +3232,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3097
3232
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3098
3233
|
includeMaxTokens?: boolean | undefined;
|
|
3099
3234
|
diffEnabled?: boolean | undefined;
|
|
3235
|
+
todoListEnabled?: boolean | undefined;
|
|
3100
3236
|
fuzzyMatchThreshold?: number | undefined;
|
|
3101
3237
|
modelTemperature?: number | null | undefined;
|
|
3102
3238
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3111,6 +3247,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3111
3247
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3112
3248
|
includeMaxTokens?: boolean | undefined;
|
|
3113
3249
|
diffEnabled?: boolean | undefined;
|
|
3250
|
+
todoListEnabled?: boolean | undefined;
|
|
3114
3251
|
fuzzyMatchThreshold?: number | undefined;
|
|
3115
3252
|
modelTemperature?: number | null | undefined;
|
|
3116
3253
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3123,6 +3260,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3123
3260
|
}>, z.ZodObject<{
|
|
3124
3261
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3125
3262
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3263
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3126
3264
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3127
3265
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3128
3266
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3138,6 +3276,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3138
3276
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3139
3277
|
includeMaxTokens?: boolean | undefined;
|
|
3140
3278
|
diffEnabled?: boolean | undefined;
|
|
3279
|
+
todoListEnabled?: boolean | undefined;
|
|
3141
3280
|
fuzzyMatchThreshold?: number | undefined;
|
|
3142
3281
|
modelTemperature?: number | null | undefined;
|
|
3143
3282
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3150,6 +3289,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3150
3289
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3151
3290
|
includeMaxTokens?: boolean | undefined;
|
|
3152
3291
|
diffEnabled?: boolean | undefined;
|
|
3292
|
+
todoListEnabled?: boolean | undefined;
|
|
3153
3293
|
fuzzyMatchThreshold?: number | undefined;
|
|
3154
3294
|
modelTemperature?: number | null | undefined;
|
|
3155
3295
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3160,6 +3300,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3160
3300
|
}>, z.ZodObject<{
|
|
3161
3301
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3162
3302
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3303
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3163
3304
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3164
3305
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3165
3306
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3177,6 +3318,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3177
3318
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3178
3319
|
includeMaxTokens?: boolean | undefined;
|
|
3179
3320
|
diffEnabled?: boolean | undefined;
|
|
3321
|
+
todoListEnabled?: boolean | undefined;
|
|
3180
3322
|
fuzzyMatchThreshold?: number | undefined;
|
|
3181
3323
|
modelTemperature?: number | null | undefined;
|
|
3182
3324
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3190,6 +3332,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3190
3332
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3191
3333
|
includeMaxTokens?: boolean | undefined;
|
|
3192
3334
|
diffEnabled?: boolean | undefined;
|
|
3335
|
+
todoListEnabled?: boolean | undefined;
|
|
3193
3336
|
fuzzyMatchThreshold?: number | undefined;
|
|
3194
3337
|
modelTemperature?: number | null | undefined;
|
|
3195
3338
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3201,6 +3344,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3201
3344
|
}>, z.ZodObject<{
|
|
3202
3345
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3203
3346
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3347
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3204
3348
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3205
3349
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3206
3350
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3220,6 +3364,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3220
3364
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3221
3365
|
includeMaxTokens?: boolean | undefined;
|
|
3222
3366
|
diffEnabled?: boolean | undefined;
|
|
3367
|
+
todoListEnabled?: boolean | undefined;
|
|
3223
3368
|
fuzzyMatchThreshold?: number | undefined;
|
|
3224
3369
|
modelTemperature?: number | null | undefined;
|
|
3225
3370
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3234,6 +3379,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3234
3379
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3235
3380
|
includeMaxTokens?: boolean | undefined;
|
|
3236
3381
|
diffEnabled?: boolean | undefined;
|
|
3382
|
+
todoListEnabled?: boolean | undefined;
|
|
3237
3383
|
fuzzyMatchThreshold?: number | undefined;
|
|
3238
3384
|
modelTemperature?: number | null | undefined;
|
|
3239
3385
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3246,6 +3392,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3246
3392
|
}>, z.ZodObject<{
|
|
3247
3393
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3248
3394
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3395
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3249
3396
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3250
3397
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3251
3398
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3265,6 +3412,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3265
3412
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3266
3413
|
includeMaxTokens?: boolean | undefined;
|
|
3267
3414
|
diffEnabled?: boolean | undefined;
|
|
3415
|
+
todoListEnabled?: boolean | undefined;
|
|
3268
3416
|
fuzzyMatchThreshold?: number | undefined;
|
|
3269
3417
|
modelTemperature?: number | null | undefined;
|
|
3270
3418
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3279,6 +3427,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3279
3427
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3280
3428
|
includeMaxTokens?: boolean | undefined;
|
|
3281
3429
|
diffEnabled?: boolean | undefined;
|
|
3430
|
+
todoListEnabled?: boolean | undefined;
|
|
3282
3431
|
fuzzyMatchThreshold?: number | undefined;
|
|
3283
3432
|
modelTemperature?: number | null | undefined;
|
|
3284
3433
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3291,6 +3440,57 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3291
3440
|
}>, z.ZodObject<{
|
|
3292
3441
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3293
3442
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3443
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3444
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3445
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3446
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3447
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
3448
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
3449
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
3450
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
3451
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
3452
|
+
} & {
|
|
3453
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
3454
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
3455
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
3456
|
+
} & {
|
|
3457
|
+
apiProvider: z.ZodLiteral<"huggingface">;
|
|
3458
|
+
}, "strip", z.ZodTypeAny, {
|
|
3459
|
+
apiProvider: "huggingface";
|
|
3460
|
+
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3461
|
+
includeMaxTokens?: boolean | undefined;
|
|
3462
|
+
diffEnabled?: boolean | undefined;
|
|
3463
|
+
todoListEnabled?: boolean | undefined;
|
|
3464
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3465
|
+
modelTemperature?: number | null | undefined;
|
|
3466
|
+
rateLimitSeconds?: number | undefined;
|
|
3467
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3468
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3469
|
+
modelMaxTokens?: number | undefined;
|
|
3470
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3471
|
+
huggingFaceApiKey?: string | undefined;
|
|
3472
|
+
huggingFaceModelId?: string | undefined;
|
|
3473
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
3474
|
+
}, {
|
|
3475
|
+
apiProvider: "huggingface";
|
|
3476
|
+
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3477
|
+
includeMaxTokens?: boolean | undefined;
|
|
3478
|
+
diffEnabled?: boolean | undefined;
|
|
3479
|
+
todoListEnabled?: boolean | undefined;
|
|
3480
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
3481
|
+
modelTemperature?: number | null | undefined;
|
|
3482
|
+
rateLimitSeconds?: number | undefined;
|
|
3483
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
3484
|
+
enableReasoningEffort?: boolean | undefined;
|
|
3485
|
+
modelMaxTokens?: number | undefined;
|
|
3486
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
3487
|
+
huggingFaceApiKey?: string | undefined;
|
|
3488
|
+
huggingFaceModelId?: string | undefined;
|
|
3489
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
3490
|
+
}>, z.ZodObject<{
|
|
3491
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3492
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3493
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3294
3494
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3295
3495
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3296
3496
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3310,6 +3510,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3310
3510
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3311
3511
|
includeMaxTokens?: boolean | undefined;
|
|
3312
3512
|
diffEnabled?: boolean | undefined;
|
|
3513
|
+
todoListEnabled?: boolean | undefined;
|
|
3313
3514
|
fuzzyMatchThreshold?: number | undefined;
|
|
3314
3515
|
modelTemperature?: number | null | undefined;
|
|
3315
3516
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3324,6 +3525,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3324
3525
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3325
3526
|
includeMaxTokens?: boolean | undefined;
|
|
3326
3527
|
diffEnabled?: boolean | undefined;
|
|
3528
|
+
todoListEnabled?: boolean | undefined;
|
|
3327
3529
|
fuzzyMatchThreshold?: number | undefined;
|
|
3328
3530
|
modelTemperature?: number | null | undefined;
|
|
3329
3531
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3336,6 +3538,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3336
3538
|
}>, z.ZodObject<{
|
|
3337
3539
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3338
3540
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3541
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3339
3542
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3340
3543
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3341
3544
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3355,6 +3558,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3355
3558
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3356
3559
|
includeMaxTokens?: boolean | undefined;
|
|
3357
3560
|
diffEnabled?: boolean | undefined;
|
|
3561
|
+
todoListEnabled?: boolean | undefined;
|
|
3358
3562
|
fuzzyMatchThreshold?: number | undefined;
|
|
3359
3563
|
modelTemperature?: number | null | undefined;
|
|
3360
3564
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3370,6 +3574,7 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3370
3574
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3371
3575
|
includeMaxTokens?: boolean | undefined;
|
|
3372
3576
|
diffEnabled?: boolean | undefined;
|
|
3577
|
+
todoListEnabled?: boolean | undefined;
|
|
3373
3578
|
fuzzyMatchThreshold?: number | undefined;
|
|
3374
3579
|
modelTemperature?: number | null | undefined;
|
|
3375
3580
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3394,8 +3599,10 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3394
3599
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
3395
3600
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3396
3601
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
3602
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
3397
3603
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3398
3604
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3605
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3399
3606
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3400
3607
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3401
3608
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3409,6 +3616,9 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3409
3616
|
litellmModelId: z.ZodOptional<z.ZodString>;
|
|
3410
3617
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3411
3618
|
chutesApiKey: z.ZodOptional<z.ZodString>;
|
|
3619
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
3620
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
3621
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
3412
3622
|
groqApiKey: z.ZodOptional<z.ZodString>;
|
|
3413
3623
|
xaiApiKey: z.ZodOptional<z.ZodString>;
|
|
3414
3624
|
fakeAi: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -3416,6 +3626,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3416
3626
|
requestyModelId: z.ZodOptional<z.ZodString>;
|
|
3417
3627
|
unboundApiKey: z.ZodOptional<z.ZodString>;
|
|
3418
3628
|
unboundModelId: z.ZodOptional<z.ZodString>;
|
|
3629
|
+
moonshotBaseUrl: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"https://api.moonshot.ai/v1">, z.ZodLiteral<"https://api.moonshot.cn/v1">]>>;
|
|
3630
|
+
moonshotApiKey: z.ZodOptional<z.ZodString>;
|
|
3419
3631
|
deepSeekBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3420
3632
|
deepSeekApiKey: z.ZodOptional<z.ZodString>;
|
|
3421
3633
|
mistralApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -3580,7 +3792,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3580
3792
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
3581
3793
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3582
3794
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3583
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
3795
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
3584
3796
|
}, "strip", z.ZodTypeAny, {
|
|
3585
3797
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3586
3798
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3589,9 +3801,11 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3589
3801
|
codeIndexQdrantApiKey?: string | undefined;
|
|
3590
3802
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3591
3803
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3592
|
-
|
|
3804
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
3805
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
3593
3806
|
includeMaxTokens?: boolean | undefined;
|
|
3594
3807
|
diffEnabled?: boolean | undefined;
|
|
3808
|
+
todoListEnabled?: boolean | undefined;
|
|
3595
3809
|
fuzzyMatchThreshold?: number | undefined;
|
|
3596
3810
|
modelTemperature?: number | null | undefined;
|
|
3597
3811
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3688,6 +3902,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3688
3902
|
mistralCodestralUrl?: string | undefined;
|
|
3689
3903
|
deepSeekBaseUrl?: string | undefined;
|
|
3690
3904
|
deepSeekApiKey?: string | undefined;
|
|
3905
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
3906
|
+
moonshotApiKey?: string | undefined;
|
|
3691
3907
|
unboundApiKey?: string | undefined;
|
|
3692
3908
|
unboundModelId?: string | undefined;
|
|
3693
3909
|
requestyApiKey?: string | undefined;
|
|
@@ -3695,6 +3911,9 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3695
3911
|
fakeAi?: unknown;
|
|
3696
3912
|
xaiApiKey?: string | undefined;
|
|
3697
3913
|
groqApiKey?: string | undefined;
|
|
3914
|
+
huggingFaceApiKey?: string | undefined;
|
|
3915
|
+
huggingFaceModelId?: string | undefined;
|
|
3916
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
3698
3917
|
chutesApiKey?: string | undefined;
|
|
3699
3918
|
litellmBaseUrl?: string | undefined;
|
|
3700
3919
|
litellmApiKey?: string | undefined;
|
|
@@ -3707,9 +3926,11 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3707
3926
|
codeIndexQdrantApiKey?: string | undefined;
|
|
3708
3927
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3709
3928
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3710
|
-
|
|
3929
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
3930
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
3711
3931
|
includeMaxTokens?: boolean | undefined;
|
|
3712
3932
|
diffEnabled?: boolean | undefined;
|
|
3933
|
+
todoListEnabled?: boolean | undefined;
|
|
3713
3934
|
fuzzyMatchThreshold?: number | undefined;
|
|
3714
3935
|
modelTemperature?: number | null | undefined;
|
|
3715
3936
|
rateLimitSeconds?: number | undefined;
|
|
@@ -3806,6 +4027,8 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3806
4027
|
mistralCodestralUrl?: string | undefined;
|
|
3807
4028
|
deepSeekBaseUrl?: string | undefined;
|
|
3808
4029
|
deepSeekApiKey?: string | undefined;
|
|
4030
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
4031
|
+
moonshotApiKey?: string | undefined;
|
|
3809
4032
|
unboundApiKey?: string | undefined;
|
|
3810
4033
|
unboundModelId?: string | undefined;
|
|
3811
4034
|
requestyApiKey?: string | undefined;
|
|
@@ -3813,18 +4036,33 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3813
4036
|
fakeAi?: unknown;
|
|
3814
4037
|
xaiApiKey?: string | undefined;
|
|
3815
4038
|
groqApiKey?: string | undefined;
|
|
4039
|
+
huggingFaceApiKey?: string | undefined;
|
|
4040
|
+
huggingFaceModelId?: string | undefined;
|
|
4041
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
3816
4042
|
chutesApiKey?: string | undefined;
|
|
3817
4043
|
litellmBaseUrl?: string | undefined;
|
|
3818
4044
|
litellmApiKey?: string | undefined;
|
|
3819
4045
|
litellmModelId?: string | undefined;
|
|
3820
4046
|
}>;
|
|
3821
4047
|
type ProviderSettings = z.infer<typeof providerSettingsSchema>;
|
|
3822
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
|
|
4048
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "moonshotBaseUrl", "moonshotApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
|
|
3823
4049
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
3824
4050
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
3825
4051
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
3826
4052
|
declare const getApiProtocol: (provider: ProviderName | undefined, modelId?: string) => "anthropic" | "openai";
|
|
3827
4053
|
|
|
4054
|
+
/**
|
|
4055
|
+
* Default delay in milliseconds after writes to allow diagnostics to detect potential problems.
|
|
4056
|
+
* This delay is particularly important for Go and other languages where tools like goimports
|
|
4057
|
+
* need time to automatically clean up unused imports.
|
|
4058
|
+
*/
|
|
4059
|
+
declare const DEFAULT_WRITE_DELAY_MS = 1000;
|
|
4060
|
+
/**
|
|
4061
|
+
* Default terminal output character limit constant.
|
|
4062
|
+
* This provides a reasonable default that aligns with typical terminal usage
|
|
4063
|
+
* while preventing context window explosions from extremely long lines.
|
|
4064
|
+
*/
|
|
4065
|
+
declare const DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT = 50000;
|
|
3828
4066
|
/**
|
|
3829
4067
|
* GlobalSettings
|
|
3830
4068
|
*/
|
|
@@ -3833,15 +4071,15 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3833
4071
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3834
4072
|
id: z.ZodString;
|
|
3835
4073
|
name: z.ZodString;
|
|
3836
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
4074
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
3837
4075
|
}, "strip", z.ZodTypeAny, {
|
|
3838
4076
|
name: string;
|
|
3839
4077
|
id: string;
|
|
3840
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
4078
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
3841
4079
|
}, {
|
|
3842
4080
|
name: string;
|
|
3843
4081
|
id: string;
|
|
3844
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
4082
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
3845
4083
|
}>, "many">>;
|
|
3846
4084
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
3847
4085
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -3905,11 +4143,22 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3905
4143
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3906
4144
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3907
4145
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
4146
|
+
commandTimeoutAllowlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3908
4147
|
preventCompletionWithOpenTodos: z.ZodOptional<z.ZodBoolean>;
|
|
3909
4148
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3910
4149
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
3911
4150
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
3912
4151
|
maxConcurrentFileReads: z.ZodOptional<z.ZodNumber>;
|
|
4152
|
+
/**
|
|
4153
|
+
* Whether to include diagnostic messages (errors, warnings) in tool outputs
|
|
4154
|
+
* @default true
|
|
4155
|
+
*/
|
|
4156
|
+
includeDiagnosticMessages: z.ZodOptional<z.ZodBoolean>;
|
|
4157
|
+
/**
|
|
4158
|
+
* Maximum number of diagnostic messages to include in tool outputs
|
|
4159
|
+
* @default 50
|
|
4160
|
+
*/
|
|
4161
|
+
maxDiagnosticMessages: z.ZodOptional<z.ZodNumber>;
|
|
3913
4162
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3914
4163
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
3915
4164
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3926,6 +4175,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3926
4175
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
3927
4176
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
3928
4177
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
4178
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
3929
4179
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
3930
4180
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
3931
4181
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3935,6 +4185,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3935
4185
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
3936
4186
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
3937
4187
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
4188
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3938
4189
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3939
4190
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3940
4191
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3977,6 +4228,13 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3977
4228
|
}, {
|
|
3978
4229
|
dimension: number;
|
|
3979
4230
|
}>>>;
|
|
4231
|
+
mistral: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4232
|
+
dimension: z.ZodNumber;
|
|
4233
|
+
}, "strip", z.ZodTypeAny, {
|
|
4234
|
+
dimension: number;
|
|
4235
|
+
}, {
|
|
4236
|
+
dimension: number;
|
|
4237
|
+
}>>>;
|
|
3980
4238
|
}, "strip", z.ZodTypeAny, {
|
|
3981
4239
|
openai?: Record<string, {
|
|
3982
4240
|
dimension: number;
|
|
@@ -3990,6 +4248,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3990
4248
|
gemini?: Record<string, {
|
|
3991
4249
|
dimension: number;
|
|
3992
4250
|
}> | undefined;
|
|
4251
|
+
mistral?: Record<string, {
|
|
4252
|
+
dimension: number;
|
|
4253
|
+
}> | undefined;
|
|
3993
4254
|
}, {
|
|
3994
4255
|
openai?: Record<string, {
|
|
3995
4256
|
dimension: number;
|
|
@@ -4003,11 +4264,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4003
4264
|
gemini?: Record<string, {
|
|
4004
4265
|
dimension: number;
|
|
4005
4266
|
}> | undefined;
|
|
4267
|
+
mistral?: Record<string, {
|
|
4268
|
+
dimension: number;
|
|
4269
|
+
}> | undefined;
|
|
4006
4270
|
}>>;
|
|
4007
4271
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
4008
4272
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4009
4273
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
4010
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
4274
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
4011
4275
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4012
4276
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
4013
4277
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4018,7 +4282,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4018
4282
|
}, "strip", z.ZodTypeAny, {
|
|
4019
4283
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4020
4284
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4021
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4285
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4022
4286
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4023
4287
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4024
4288
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4029,7 +4293,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4029
4293
|
}, {
|
|
4030
4294
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4031
4295
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4032
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4296
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4033
4297
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4034
4298
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4035
4299
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4140,7 +4404,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4140
4404
|
listApiConfigMeta?: {
|
|
4141
4405
|
name: string;
|
|
4142
4406
|
id: string;
|
|
4143
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
4407
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
4144
4408
|
}[] | undefined;
|
|
4145
4409
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4146
4410
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4179,11 +4443,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4179
4443
|
allowedCommands?: string[] | undefined;
|
|
4180
4444
|
deniedCommands?: string[] | undefined;
|
|
4181
4445
|
commandExecutionTimeout?: number | undefined;
|
|
4446
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
4182
4447
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
4183
4448
|
allowedMaxRequests?: number | null | undefined;
|
|
4184
4449
|
autoCondenseContext?: boolean | undefined;
|
|
4185
4450
|
autoCondenseContextPercent?: number | undefined;
|
|
4186
4451
|
maxConcurrentFileReads?: number | undefined;
|
|
4452
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
4453
|
+
maxDiagnosticMessages?: number | undefined;
|
|
4187
4454
|
browserToolEnabled?: boolean | undefined;
|
|
4188
4455
|
browserViewportSize?: string | undefined;
|
|
4189
4456
|
screenshotQuality?: number | undefined;
|
|
@@ -4200,6 +4467,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4200
4467
|
showRooIgnoredFiles?: boolean | undefined;
|
|
4201
4468
|
maxReadFileLine?: number | undefined;
|
|
4202
4469
|
terminalOutputLineLimit?: number | undefined;
|
|
4470
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
4203
4471
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
4204
4472
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
4205
4473
|
terminalCommandDelay?: number | undefined;
|
|
@@ -4209,6 +4477,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4209
4477
|
terminalZshP10k?: boolean | undefined;
|
|
4210
4478
|
terminalZdotdir?: boolean | undefined;
|
|
4211
4479
|
terminalCompressProgressBar?: boolean | undefined;
|
|
4480
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
4212
4481
|
experiments?: {
|
|
4213
4482
|
powerSteering?: boolean | undefined;
|
|
4214
4483
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -4226,11 +4495,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4226
4495
|
gemini?: Record<string, {
|
|
4227
4496
|
dimension: number;
|
|
4228
4497
|
}> | undefined;
|
|
4498
|
+
mistral?: Record<string, {
|
|
4499
|
+
dimension: number;
|
|
4500
|
+
}> | undefined;
|
|
4229
4501
|
} | undefined;
|
|
4230
4502
|
codebaseIndexConfig?: {
|
|
4231
4503
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4232
4504
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4233
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4505
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4234
4506
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4235
4507
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4236
4508
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4280,7 +4552,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4280
4552
|
listApiConfigMeta?: {
|
|
4281
4553
|
name: string;
|
|
4282
4554
|
id: string;
|
|
4283
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
4555
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
4284
4556
|
}[] | undefined;
|
|
4285
4557
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4286
4558
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4319,11 +4591,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4319
4591
|
allowedCommands?: string[] | undefined;
|
|
4320
4592
|
deniedCommands?: string[] | undefined;
|
|
4321
4593
|
commandExecutionTimeout?: number | undefined;
|
|
4594
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
4322
4595
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
4323
4596
|
allowedMaxRequests?: number | null | undefined;
|
|
4324
4597
|
autoCondenseContext?: boolean | undefined;
|
|
4325
4598
|
autoCondenseContextPercent?: number | undefined;
|
|
4326
4599
|
maxConcurrentFileReads?: number | undefined;
|
|
4600
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
4601
|
+
maxDiagnosticMessages?: number | undefined;
|
|
4327
4602
|
browserToolEnabled?: boolean | undefined;
|
|
4328
4603
|
browserViewportSize?: string | undefined;
|
|
4329
4604
|
screenshotQuality?: number | undefined;
|
|
@@ -4340,6 +4615,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4340
4615
|
showRooIgnoredFiles?: boolean | undefined;
|
|
4341
4616
|
maxReadFileLine?: number | undefined;
|
|
4342
4617
|
terminalOutputLineLimit?: number | undefined;
|
|
4618
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
4343
4619
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
4344
4620
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
4345
4621
|
terminalCommandDelay?: number | undefined;
|
|
@@ -4349,6 +4625,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4349
4625
|
terminalZshP10k?: boolean | undefined;
|
|
4350
4626
|
terminalZdotdir?: boolean | undefined;
|
|
4351
4627
|
terminalCompressProgressBar?: boolean | undefined;
|
|
4628
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
4352
4629
|
experiments?: {
|
|
4353
4630
|
powerSteering?: boolean | undefined;
|
|
4354
4631
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -4366,11 +4643,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4366
4643
|
gemini?: Record<string, {
|
|
4367
4644
|
dimension: number;
|
|
4368
4645
|
}> | undefined;
|
|
4646
|
+
mistral?: Record<string, {
|
|
4647
|
+
dimension: number;
|
|
4648
|
+
}> | undefined;
|
|
4369
4649
|
} | undefined;
|
|
4370
4650
|
codebaseIndexConfig?: {
|
|
4371
4651
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4372
4652
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4373
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4653
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4374
4654
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4375
4655
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4376
4656
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4398,7 +4678,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4398
4678
|
lastModeImportPath?: string | undefined;
|
|
4399
4679
|
}>;
|
|
4400
4680
|
type GlobalSettings = z.infer<typeof globalSettingsSchema>;
|
|
4401
|
-
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "commandExecutionTimeout", "preventCompletionWithOpenTodos", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
|
|
4681
|
+
declare const GLOBAL_SETTINGS_KEYS: ["diffEnabled", "fuzzyMatchThreshold", "rateLimitSeconds", "language", "mode", "customInstructions", "customModes", "currentApiConfigName", "listApiConfigMeta", "pinnedApiConfigs", "lastShownAnnouncementId", "taskHistory", "condensingApiConfigId", "customCondensingPrompt", "autoApprovalEnabled", "alwaysAllowReadOnly", "alwaysAllowReadOnlyOutsideWorkspace", "alwaysAllowWrite", "alwaysAllowWriteOutsideWorkspace", "alwaysAllowWriteProtected", "writeDelayMs", "alwaysAllowBrowser", "alwaysApproveResubmit", "requestDelaySeconds", "alwaysAllowMcp", "alwaysAllowModeSwitch", "alwaysAllowSubtasks", "alwaysAllowExecute", "alwaysAllowFollowupQuestions", "followupAutoApproveTimeoutMs", "alwaysAllowUpdateTodoList", "allowedCommands", "deniedCommands", "commandExecutionTimeout", "commandTimeoutAllowlist", "preventCompletionWithOpenTodos", "allowedMaxRequests", "autoCondenseContext", "autoCondenseContextPercent", "maxConcurrentFileReads", "includeDiagnosticMessages", "maxDiagnosticMessages", "browserToolEnabled", "browserViewportSize", "screenshotQuality", "remoteBrowserEnabled", "remoteBrowserHost", "cachedChromeHostUrl", "enableCheckpoints", "ttsEnabled", "ttsSpeed", "soundEnabled", "soundVolume", "maxOpenTabsContext", "maxWorkspaceFiles", "showRooIgnoredFiles", "maxReadFileLine", "terminalOutputLineLimit", "terminalOutputCharacterLimit", "terminalShellIntegrationTimeout", "terminalShellIntegrationDisabled", "terminalCommandDelay", "terminalPowershellCounter", "terminalZshClearEolMark", "terminalZshOhMy", "terminalZshP10k", "terminalZdotdir", "terminalCompressProgressBar", "diagnosticsEnabled", "experiments", "codebaseIndexModels", "codebaseIndexConfig", "telemetrySetting", "mcpEnabled", "enableMcpServerCreation", "modeApiConfigs", "customModePrompts", "customSupportPrompts", "enhancementApiConfigId", "historyPreviewCollapsed", "profileThresholds", "hasOpenedModeSelector", "lastModeExportPath", "lastModeImportPath"];
|
|
4402
4682
|
/**
|
|
4403
4683
|
* RooCodeSettings
|
|
4404
4684
|
*/
|
|
@@ -4409,7 +4689,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4409
4689
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
4410
4690
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
4411
4691
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
4692
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
4412
4693
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
4694
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4413
4695
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4414
4696
|
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4415
4697
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4421,6 +4703,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4421
4703
|
litellmModelId: z.ZodOptional<z.ZodString>;
|
|
4422
4704
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
4423
4705
|
chutesApiKey: z.ZodOptional<z.ZodString>;
|
|
4706
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
4707
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
4708
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
4424
4709
|
groqApiKey: z.ZodOptional<z.ZodString>;
|
|
4425
4710
|
xaiApiKey: z.ZodOptional<z.ZodString>;
|
|
4426
4711
|
fakeAi: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -4428,6 +4713,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4428
4713
|
requestyModelId: z.ZodOptional<z.ZodString>;
|
|
4429
4714
|
unboundApiKey: z.ZodOptional<z.ZodString>;
|
|
4430
4715
|
unboundModelId: z.ZodOptional<z.ZodString>;
|
|
4716
|
+
moonshotBaseUrl: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"https://api.moonshot.ai/v1">, z.ZodLiteral<"https://api.moonshot.cn/v1">]>>;
|
|
4717
|
+
moonshotApiKey: z.ZodOptional<z.ZodString>;
|
|
4431
4718
|
deepSeekBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4432
4719
|
deepSeekApiKey: z.ZodOptional<z.ZodString>;
|
|
4433
4720
|
mistralApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -4592,21 +4879,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4592
4879
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
4593
4880
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4594
4881
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
4595
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
4882
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
4596
4883
|
} & {
|
|
4597
4884
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
4598
4885
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4599
4886
|
id: z.ZodString;
|
|
4600
4887
|
name: z.ZodString;
|
|
4601
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
4888
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
4602
4889
|
}, "strip", z.ZodTypeAny, {
|
|
4603
4890
|
name: string;
|
|
4604
4891
|
id: string;
|
|
4605
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
4892
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
4606
4893
|
}, {
|
|
4607
4894
|
name: string;
|
|
4608
4895
|
id: string;
|
|
4609
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
4896
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
4610
4897
|
}>, "many">>;
|
|
4611
4898
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4612
4899
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -4670,11 +4957,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4670
4957
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4671
4958
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4672
4959
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
4960
|
+
commandTimeoutAllowlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4673
4961
|
preventCompletionWithOpenTodos: z.ZodOptional<z.ZodBoolean>;
|
|
4674
4962
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4675
4963
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
4676
4964
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
4677
4965
|
maxConcurrentFileReads: z.ZodOptional<z.ZodNumber>;
|
|
4966
|
+
includeDiagnosticMessages: z.ZodOptional<z.ZodBoolean>;
|
|
4967
|
+
maxDiagnosticMessages: z.ZodOptional<z.ZodNumber>;
|
|
4678
4968
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4679
4969
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
4680
4970
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4691,6 +4981,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4691
4981
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
4692
4982
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
4693
4983
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
4984
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
4694
4985
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
4695
4986
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
4696
4987
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4700,6 +4991,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4700
4991
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
4701
4992
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
4702
4993
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
4994
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4703
4995
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
4704
4996
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4705
4997
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4742,6 +5034,13 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4742
5034
|
}, {
|
|
4743
5035
|
dimension: number;
|
|
4744
5036
|
}>>>;
|
|
5037
|
+
mistral: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5038
|
+
dimension: z.ZodNumber;
|
|
5039
|
+
}, "strip", z.ZodTypeAny, {
|
|
5040
|
+
dimension: number;
|
|
5041
|
+
}, {
|
|
5042
|
+
dimension: number;
|
|
5043
|
+
}>>>;
|
|
4745
5044
|
}, "strip", z.ZodTypeAny, {
|
|
4746
5045
|
openai?: Record<string, {
|
|
4747
5046
|
dimension: number;
|
|
@@ -4755,6 +5054,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4755
5054
|
gemini?: Record<string, {
|
|
4756
5055
|
dimension: number;
|
|
4757
5056
|
}> | undefined;
|
|
5057
|
+
mistral?: Record<string, {
|
|
5058
|
+
dimension: number;
|
|
5059
|
+
}> | undefined;
|
|
4758
5060
|
}, {
|
|
4759
5061
|
openai?: Record<string, {
|
|
4760
5062
|
dimension: number;
|
|
@@ -4768,11 +5070,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4768
5070
|
gemini?: Record<string, {
|
|
4769
5071
|
dimension: number;
|
|
4770
5072
|
}> | undefined;
|
|
5073
|
+
mistral?: Record<string, {
|
|
5074
|
+
dimension: number;
|
|
5075
|
+
}> | undefined;
|
|
4771
5076
|
}>>;
|
|
4772
5077
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
4773
5078
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4774
5079
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
4775
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
5080
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
4776
5081
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4777
5082
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
4778
5083
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4783,7 +5088,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4783
5088
|
}, "strip", z.ZodTypeAny, {
|
|
4784
5089
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4785
5090
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4786
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5091
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4787
5092
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4788
5093
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4789
5094
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4794,7 +5099,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4794
5099
|
}, {
|
|
4795
5100
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4796
5101
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4797
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5102
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4798
5103
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4799
5104
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4800
5105
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4889,9 +5194,11 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4889
5194
|
codeIndexQdrantApiKey?: string | undefined;
|
|
4890
5195
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4891
5196
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
4892
|
-
|
|
5197
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
5198
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
4893
5199
|
includeMaxTokens?: boolean | undefined;
|
|
4894
5200
|
diffEnabled?: boolean | undefined;
|
|
5201
|
+
todoListEnabled?: boolean | undefined;
|
|
4895
5202
|
fuzzyMatchThreshold?: number | undefined;
|
|
4896
5203
|
modelTemperature?: number | null | undefined;
|
|
4897
5204
|
rateLimitSeconds?: number | undefined;
|
|
@@ -4988,6 +5295,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4988
5295
|
mistralCodestralUrl?: string | undefined;
|
|
4989
5296
|
deepSeekBaseUrl?: string | undefined;
|
|
4990
5297
|
deepSeekApiKey?: string | undefined;
|
|
5298
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
5299
|
+
moonshotApiKey?: string | undefined;
|
|
4991
5300
|
unboundApiKey?: string | undefined;
|
|
4992
5301
|
unboundModelId?: string | undefined;
|
|
4993
5302
|
requestyApiKey?: string | undefined;
|
|
@@ -4995,6 +5304,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4995
5304
|
fakeAi?: unknown;
|
|
4996
5305
|
xaiApiKey?: string | undefined;
|
|
4997
5306
|
groqApiKey?: string | undefined;
|
|
5307
|
+
huggingFaceApiKey?: string | undefined;
|
|
5308
|
+
huggingFaceModelId?: string | undefined;
|
|
5309
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
4998
5310
|
chutesApiKey?: string | undefined;
|
|
4999
5311
|
litellmBaseUrl?: string | undefined;
|
|
5000
5312
|
litellmApiKey?: string | undefined;
|
|
@@ -5019,7 +5331,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5019
5331
|
listApiConfigMeta?: {
|
|
5020
5332
|
name: string;
|
|
5021
5333
|
id: string;
|
|
5022
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
5334
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
5023
5335
|
}[] | undefined;
|
|
5024
5336
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
5025
5337
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -5058,11 +5370,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5058
5370
|
allowedCommands?: string[] | undefined;
|
|
5059
5371
|
deniedCommands?: string[] | undefined;
|
|
5060
5372
|
commandExecutionTimeout?: number | undefined;
|
|
5373
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
5061
5374
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
5062
5375
|
allowedMaxRequests?: number | null | undefined;
|
|
5063
5376
|
autoCondenseContext?: boolean | undefined;
|
|
5064
5377
|
autoCondenseContextPercent?: number | undefined;
|
|
5065
5378
|
maxConcurrentFileReads?: number | undefined;
|
|
5379
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
5380
|
+
maxDiagnosticMessages?: number | undefined;
|
|
5066
5381
|
browserToolEnabled?: boolean | undefined;
|
|
5067
5382
|
browserViewportSize?: string | undefined;
|
|
5068
5383
|
screenshotQuality?: number | undefined;
|
|
@@ -5079,6 +5394,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5079
5394
|
showRooIgnoredFiles?: boolean | undefined;
|
|
5080
5395
|
maxReadFileLine?: number | undefined;
|
|
5081
5396
|
terminalOutputLineLimit?: number | undefined;
|
|
5397
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
5082
5398
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
5083
5399
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
5084
5400
|
terminalCommandDelay?: number | undefined;
|
|
@@ -5088,6 +5404,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5088
5404
|
terminalZshP10k?: boolean | undefined;
|
|
5089
5405
|
terminalZdotdir?: boolean | undefined;
|
|
5090
5406
|
terminalCompressProgressBar?: boolean | undefined;
|
|
5407
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
5091
5408
|
experiments?: {
|
|
5092
5409
|
powerSteering?: boolean | undefined;
|
|
5093
5410
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -5105,11 +5422,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5105
5422
|
gemini?: Record<string, {
|
|
5106
5423
|
dimension: number;
|
|
5107
5424
|
}> | undefined;
|
|
5425
|
+
mistral?: Record<string, {
|
|
5426
|
+
dimension: number;
|
|
5427
|
+
}> | undefined;
|
|
5108
5428
|
} | undefined;
|
|
5109
5429
|
codebaseIndexConfig?: {
|
|
5110
5430
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5111
5431
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5112
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5432
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
5113
5433
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5114
5434
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5115
5435
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -5143,9 +5463,11 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5143
5463
|
codeIndexQdrantApiKey?: string | undefined;
|
|
5144
5464
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
5145
5465
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
5146
|
-
|
|
5466
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
5467
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
5147
5468
|
includeMaxTokens?: boolean | undefined;
|
|
5148
5469
|
diffEnabled?: boolean | undefined;
|
|
5470
|
+
todoListEnabled?: boolean | undefined;
|
|
5149
5471
|
fuzzyMatchThreshold?: number | undefined;
|
|
5150
5472
|
modelTemperature?: number | null | undefined;
|
|
5151
5473
|
rateLimitSeconds?: number | undefined;
|
|
@@ -5242,6 +5564,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5242
5564
|
mistralCodestralUrl?: string | undefined;
|
|
5243
5565
|
deepSeekBaseUrl?: string | undefined;
|
|
5244
5566
|
deepSeekApiKey?: string | undefined;
|
|
5567
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
5568
|
+
moonshotApiKey?: string | undefined;
|
|
5245
5569
|
unboundApiKey?: string | undefined;
|
|
5246
5570
|
unboundModelId?: string | undefined;
|
|
5247
5571
|
requestyApiKey?: string | undefined;
|
|
@@ -5249,6 +5573,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5249
5573
|
fakeAi?: unknown;
|
|
5250
5574
|
xaiApiKey?: string | undefined;
|
|
5251
5575
|
groqApiKey?: string | undefined;
|
|
5576
|
+
huggingFaceApiKey?: string | undefined;
|
|
5577
|
+
huggingFaceModelId?: string | undefined;
|
|
5578
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
5252
5579
|
chutesApiKey?: string | undefined;
|
|
5253
5580
|
litellmBaseUrl?: string | undefined;
|
|
5254
5581
|
litellmApiKey?: string | undefined;
|
|
@@ -5273,7 +5600,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5273
5600
|
listApiConfigMeta?: {
|
|
5274
5601
|
name: string;
|
|
5275
5602
|
id: string;
|
|
5276
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
5603
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
5277
5604
|
}[] | undefined;
|
|
5278
5605
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
5279
5606
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -5312,11 +5639,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5312
5639
|
allowedCommands?: string[] | undefined;
|
|
5313
5640
|
deniedCommands?: string[] | undefined;
|
|
5314
5641
|
commandExecutionTimeout?: number | undefined;
|
|
5642
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
5315
5643
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
5316
5644
|
allowedMaxRequests?: number | null | undefined;
|
|
5317
5645
|
autoCondenseContext?: boolean | undefined;
|
|
5318
5646
|
autoCondenseContextPercent?: number | undefined;
|
|
5319
5647
|
maxConcurrentFileReads?: number | undefined;
|
|
5648
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
5649
|
+
maxDiagnosticMessages?: number | undefined;
|
|
5320
5650
|
browserToolEnabled?: boolean | undefined;
|
|
5321
5651
|
browserViewportSize?: string | undefined;
|
|
5322
5652
|
screenshotQuality?: number | undefined;
|
|
@@ -5333,6 +5663,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5333
5663
|
showRooIgnoredFiles?: boolean | undefined;
|
|
5334
5664
|
maxReadFileLine?: number | undefined;
|
|
5335
5665
|
terminalOutputLineLimit?: number | undefined;
|
|
5666
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
5336
5667
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
5337
5668
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
5338
5669
|
terminalCommandDelay?: number | undefined;
|
|
@@ -5342,6 +5673,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5342
5673
|
terminalZshP10k?: boolean | undefined;
|
|
5343
5674
|
terminalZdotdir?: boolean | undefined;
|
|
5344
5675
|
terminalCompressProgressBar?: boolean | undefined;
|
|
5676
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
5345
5677
|
experiments?: {
|
|
5346
5678
|
powerSteering?: boolean | undefined;
|
|
5347
5679
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -5359,11 +5691,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5359
5691
|
gemini?: Record<string, {
|
|
5360
5692
|
dimension: number;
|
|
5361
5693
|
}> | undefined;
|
|
5694
|
+
mistral?: Record<string, {
|
|
5695
|
+
dimension: number;
|
|
5696
|
+
}> | undefined;
|
|
5362
5697
|
} | undefined;
|
|
5363
5698
|
codebaseIndexConfig?: {
|
|
5364
5699
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5365
5700
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5366
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5701
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
5367
5702
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5368
5703
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5369
5704
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -5394,7 +5729,7 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
5394
5729
|
/**
|
|
5395
5730
|
* SecretState
|
|
5396
5731
|
*/
|
|
5397
|
-
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "deepSeekApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey"];
|
|
5732
|
+
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "deepSeekApiKey", "moonshotApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "huggingFaceApiKey"];
|
|
5398
5733
|
type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
|
|
5399
5734
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
5400
5735
|
/**
|
|
@@ -6051,7 +6386,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6051
6386
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
6052
6387
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
6053
6388
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
6389
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
6054
6390
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
6391
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6055
6392
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6056
6393
|
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
6057
6394
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6063,6 +6400,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6063
6400
|
litellmModelId: z.ZodOptional<z.ZodString>;
|
|
6064
6401
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6065
6402
|
chutesApiKey: z.ZodOptional<z.ZodString>;
|
|
6403
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
6404
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
6405
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
6066
6406
|
groqApiKey: z.ZodOptional<z.ZodString>;
|
|
6067
6407
|
xaiApiKey: z.ZodOptional<z.ZodString>;
|
|
6068
6408
|
fakeAi: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -6070,6 +6410,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6070
6410
|
requestyModelId: z.ZodOptional<z.ZodString>;
|
|
6071
6411
|
unboundApiKey: z.ZodOptional<z.ZodString>;
|
|
6072
6412
|
unboundModelId: z.ZodOptional<z.ZodString>;
|
|
6413
|
+
moonshotBaseUrl: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"https://api.moonshot.ai/v1">, z.ZodLiteral<"https://api.moonshot.cn/v1">]>>;
|
|
6414
|
+
moonshotApiKey: z.ZodOptional<z.ZodString>;
|
|
6073
6415
|
deepSeekBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6074
6416
|
deepSeekApiKey: z.ZodOptional<z.ZodString>;
|
|
6075
6417
|
mistralApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -6234,21 +6576,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6234
6576
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
6235
6577
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6236
6578
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
6237
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
6579
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
6238
6580
|
} & {
|
|
6239
6581
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
6240
6582
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6241
6583
|
id: z.ZodString;
|
|
6242
6584
|
name: z.ZodString;
|
|
6243
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
6585
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
6244
6586
|
}, "strip", z.ZodTypeAny, {
|
|
6245
6587
|
name: string;
|
|
6246
6588
|
id: string;
|
|
6247
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
6589
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
6248
6590
|
}, {
|
|
6249
6591
|
name: string;
|
|
6250
6592
|
id: string;
|
|
6251
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
6593
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
6252
6594
|
}>, "many">>;
|
|
6253
6595
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6254
6596
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6312,11 +6654,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6312
6654
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6313
6655
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6314
6656
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
6657
|
+
commandTimeoutAllowlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6315
6658
|
preventCompletionWithOpenTodos: z.ZodOptional<z.ZodBoolean>;
|
|
6316
6659
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6317
6660
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
6318
6661
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
6319
6662
|
maxConcurrentFileReads: z.ZodOptional<z.ZodNumber>;
|
|
6663
|
+
includeDiagnosticMessages: z.ZodOptional<z.ZodBoolean>;
|
|
6664
|
+
maxDiagnosticMessages: z.ZodOptional<z.ZodNumber>;
|
|
6320
6665
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6321
6666
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
6322
6667
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6333,6 +6678,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6333
6678
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
6334
6679
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
6335
6680
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
6681
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
6336
6682
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
6337
6683
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
6338
6684
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6342,6 +6688,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6342
6688
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
6343
6689
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
6344
6690
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
6691
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6345
6692
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
6346
6693
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6347
6694
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6384,6 +6731,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6384
6731
|
}, {
|
|
6385
6732
|
dimension: number;
|
|
6386
6733
|
}>>>;
|
|
6734
|
+
mistral: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6735
|
+
dimension: z.ZodNumber;
|
|
6736
|
+
}, "strip", z.ZodTypeAny, {
|
|
6737
|
+
dimension: number;
|
|
6738
|
+
}, {
|
|
6739
|
+
dimension: number;
|
|
6740
|
+
}>>>;
|
|
6387
6741
|
}, "strip", z.ZodTypeAny, {
|
|
6388
6742
|
openai?: Record<string, {
|
|
6389
6743
|
dimension: number;
|
|
@@ -6397,6 +6751,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6397
6751
|
gemini?: Record<string, {
|
|
6398
6752
|
dimension: number;
|
|
6399
6753
|
}> | undefined;
|
|
6754
|
+
mistral?: Record<string, {
|
|
6755
|
+
dimension: number;
|
|
6756
|
+
}> | undefined;
|
|
6400
6757
|
}, {
|
|
6401
6758
|
openai?: Record<string, {
|
|
6402
6759
|
dimension: number;
|
|
@@ -6410,11 +6767,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6410
6767
|
gemini?: Record<string, {
|
|
6411
6768
|
dimension: number;
|
|
6412
6769
|
}> | undefined;
|
|
6770
|
+
mistral?: Record<string, {
|
|
6771
|
+
dimension: number;
|
|
6772
|
+
}> | undefined;
|
|
6413
6773
|
}>>;
|
|
6414
6774
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
6415
6775
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6416
6776
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
6417
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
6777
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
6418
6778
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6419
6779
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
6420
6780
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6425,7 +6785,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6425
6785
|
}, "strip", z.ZodTypeAny, {
|
|
6426
6786
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6427
6787
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6428
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6788
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6429
6789
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6430
6790
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6431
6791
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6436,7 +6796,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6436
6796
|
}, {
|
|
6437
6797
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6438
6798
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6439
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6799
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6440
6800
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6441
6801
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6442
6802
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6531,9 +6891,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6531
6891
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6532
6892
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6533
6893
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
6534
|
-
|
|
6894
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
6895
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
6535
6896
|
includeMaxTokens?: boolean | undefined;
|
|
6536
6897
|
diffEnabled?: boolean | undefined;
|
|
6898
|
+
todoListEnabled?: boolean | undefined;
|
|
6537
6899
|
fuzzyMatchThreshold?: number | undefined;
|
|
6538
6900
|
modelTemperature?: number | null | undefined;
|
|
6539
6901
|
rateLimitSeconds?: number | undefined;
|
|
@@ -6630,6 +6992,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6630
6992
|
mistralCodestralUrl?: string | undefined;
|
|
6631
6993
|
deepSeekBaseUrl?: string | undefined;
|
|
6632
6994
|
deepSeekApiKey?: string | undefined;
|
|
6995
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
6996
|
+
moonshotApiKey?: string | undefined;
|
|
6633
6997
|
unboundApiKey?: string | undefined;
|
|
6634
6998
|
unboundModelId?: string | undefined;
|
|
6635
6999
|
requestyApiKey?: string | undefined;
|
|
@@ -6637,6 +7001,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6637
7001
|
fakeAi?: unknown;
|
|
6638
7002
|
xaiApiKey?: string | undefined;
|
|
6639
7003
|
groqApiKey?: string | undefined;
|
|
7004
|
+
huggingFaceApiKey?: string | undefined;
|
|
7005
|
+
huggingFaceModelId?: string | undefined;
|
|
7006
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
6640
7007
|
chutesApiKey?: string | undefined;
|
|
6641
7008
|
litellmBaseUrl?: string | undefined;
|
|
6642
7009
|
litellmApiKey?: string | undefined;
|
|
@@ -6661,7 +7028,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6661
7028
|
listApiConfigMeta?: {
|
|
6662
7029
|
name: string;
|
|
6663
7030
|
id: string;
|
|
6664
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
7031
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
6665
7032
|
}[] | undefined;
|
|
6666
7033
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6667
7034
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6700,11 +7067,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6700
7067
|
allowedCommands?: string[] | undefined;
|
|
6701
7068
|
deniedCommands?: string[] | undefined;
|
|
6702
7069
|
commandExecutionTimeout?: number | undefined;
|
|
7070
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
6703
7071
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
6704
7072
|
allowedMaxRequests?: number | null | undefined;
|
|
6705
7073
|
autoCondenseContext?: boolean | undefined;
|
|
6706
7074
|
autoCondenseContextPercent?: number | undefined;
|
|
6707
7075
|
maxConcurrentFileReads?: number | undefined;
|
|
7076
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7077
|
+
maxDiagnosticMessages?: number | undefined;
|
|
6708
7078
|
browserToolEnabled?: boolean | undefined;
|
|
6709
7079
|
browserViewportSize?: string | undefined;
|
|
6710
7080
|
screenshotQuality?: number | undefined;
|
|
@@ -6721,6 +7091,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6721
7091
|
showRooIgnoredFiles?: boolean | undefined;
|
|
6722
7092
|
maxReadFileLine?: number | undefined;
|
|
6723
7093
|
terminalOutputLineLimit?: number | undefined;
|
|
7094
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
6724
7095
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
6725
7096
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
6726
7097
|
terminalCommandDelay?: number | undefined;
|
|
@@ -6730,6 +7101,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6730
7101
|
terminalZshP10k?: boolean | undefined;
|
|
6731
7102
|
terminalZdotdir?: boolean | undefined;
|
|
6732
7103
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7104
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
6733
7105
|
experiments?: {
|
|
6734
7106
|
powerSteering?: boolean | undefined;
|
|
6735
7107
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -6747,11 +7119,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6747
7119
|
gemini?: Record<string, {
|
|
6748
7120
|
dimension: number;
|
|
6749
7121
|
}> | undefined;
|
|
7122
|
+
mistral?: Record<string, {
|
|
7123
|
+
dimension: number;
|
|
7124
|
+
}> | undefined;
|
|
6750
7125
|
} | undefined;
|
|
6751
7126
|
codebaseIndexConfig?: {
|
|
6752
7127
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6753
7128
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6754
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7129
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6755
7130
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6756
7131
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6757
7132
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6785,9 +7160,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6785
7160
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6786
7161
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6787
7162
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
6788
|
-
|
|
7163
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
7164
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
6789
7165
|
includeMaxTokens?: boolean | undefined;
|
|
6790
7166
|
diffEnabled?: boolean | undefined;
|
|
7167
|
+
todoListEnabled?: boolean | undefined;
|
|
6791
7168
|
fuzzyMatchThreshold?: number | undefined;
|
|
6792
7169
|
modelTemperature?: number | null | undefined;
|
|
6793
7170
|
rateLimitSeconds?: number | undefined;
|
|
@@ -6884,6 +7261,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6884
7261
|
mistralCodestralUrl?: string | undefined;
|
|
6885
7262
|
deepSeekBaseUrl?: string | undefined;
|
|
6886
7263
|
deepSeekApiKey?: string | undefined;
|
|
7264
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
7265
|
+
moonshotApiKey?: string | undefined;
|
|
6887
7266
|
unboundApiKey?: string | undefined;
|
|
6888
7267
|
unboundModelId?: string | undefined;
|
|
6889
7268
|
requestyApiKey?: string | undefined;
|
|
@@ -6891,6 +7270,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6891
7270
|
fakeAi?: unknown;
|
|
6892
7271
|
xaiApiKey?: string | undefined;
|
|
6893
7272
|
groqApiKey?: string | undefined;
|
|
7273
|
+
huggingFaceApiKey?: string | undefined;
|
|
7274
|
+
huggingFaceModelId?: string | undefined;
|
|
7275
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
6894
7276
|
chutesApiKey?: string | undefined;
|
|
6895
7277
|
litellmBaseUrl?: string | undefined;
|
|
6896
7278
|
litellmApiKey?: string | undefined;
|
|
@@ -6915,7 +7297,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6915
7297
|
listApiConfigMeta?: {
|
|
6916
7298
|
name: string;
|
|
6917
7299
|
id: string;
|
|
6918
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
7300
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
6919
7301
|
}[] | undefined;
|
|
6920
7302
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6921
7303
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6954,11 +7336,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6954
7336
|
allowedCommands?: string[] | undefined;
|
|
6955
7337
|
deniedCommands?: string[] | undefined;
|
|
6956
7338
|
commandExecutionTimeout?: number | undefined;
|
|
7339
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
6957
7340
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
6958
7341
|
allowedMaxRequests?: number | null | undefined;
|
|
6959
7342
|
autoCondenseContext?: boolean | undefined;
|
|
6960
7343
|
autoCondenseContextPercent?: number | undefined;
|
|
6961
7344
|
maxConcurrentFileReads?: number | undefined;
|
|
7345
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7346
|
+
maxDiagnosticMessages?: number | undefined;
|
|
6962
7347
|
browserToolEnabled?: boolean | undefined;
|
|
6963
7348
|
browserViewportSize?: string | undefined;
|
|
6964
7349
|
screenshotQuality?: number | undefined;
|
|
@@ -6975,6 +7360,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6975
7360
|
showRooIgnoredFiles?: boolean | undefined;
|
|
6976
7361
|
maxReadFileLine?: number | undefined;
|
|
6977
7362
|
terminalOutputLineLimit?: number | undefined;
|
|
7363
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
6978
7364
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
6979
7365
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
6980
7366
|
terminalCommandDelay?: number | undefined;
|
|
@@ -6984,6 +7370,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6984
7370
|
terminalZshP10k?: boolean | undefined;
|
|
6985
7371
|
terminalZdotdir?: boolean | undefined;
|
|
6986
7372
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7373
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
6987
7374
|
experiments?: {
|
|
6988
7375
|
powerSteering?: boolean | undefined;
|
|
6989
7376
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7001,11 +7388,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7001
7388
|
gemini?: Record<string, {
|
|
7002
7389
|
dimension: number;
|
|
7003
7390
|
}> | undefined;
|
|
7391
|
+
mistral?: Record<string, {
|
|
7392
|
+
dimension: number;
|
|
7393
|
+
}> | undefined;
|
|
7004
7394
|
} | undefined;
|
|
7005
7395
|
codebaseIndexConfig?: {
|
|
7006
7396
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7007
7397
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7008
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7398
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7009
7399
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7010
7400
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7011
7401
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7045,9 +7435,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7045
7435
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7046
7436
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7047
7437
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7048
|
-
|
|
7438
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
7439
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7049
7440
|
includeMaxTokens?: boolean | undefined;
|
|
7050
7441
|
diffEnabled?: boolean | undefined;
|
|
7442
|
+
todoListEnabled?: boolean | undefined;
|
|
7051
7443
|
fuzzyMatchThreshold?: number | undefined;
|
|
7052
7444
|
modelTemperature?: number | null | undefined;
|
|
7053
7445
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7144,6 +7536,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7144
7536
|
mistralCodestralUrl?: string | undefined;
|
|
7145
7537
|
deepSeekBaseUrl?: string | undefined;
|
|
7146
7538
|
deepSeekApiKey?: string | undefined;
|
|
7539
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
7540
|
+
moonshotApiKey?: string | undefined;
|
|
7147
7541
|
unboundApiKey?: string | undefined;
|
|
7148
7542
|
unboundModelId?: string | undefined;
|
|
7149
7543
|
requestyApiKey?: string | undefined;
|
|
@@ -7151,6 +7545,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7151
7545
|
fakeAi?: unknown;
|
|
7152
7546
|
xaiApiKey?: string | undefined;
|
|
7153
7547
|
groqApiKey?: string | undefined;
|
|
7548
|
+
huggingFaceApiKey?: string | undefined;
|
|
7549
|
+
huggingFaceModelId?: string | undefined;
|
|
7550
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7154
7551
|
chutesApiKey?: string | undefined;
|
|
7155
7552
|
litellmBaseUrl?: string | undefined;
|
|
7156
7553
|
litellmApiKey?: string | undefined;
|
|
@@ -7175,7 +7572,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7175
7572
|
listApiConfigMeta?: {
|
|
7176
7573
|
name: string;
|
|
7177
7574
|
id: string;
|
|
7178
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
7575
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7179
7576
|
}[] | undefined;
|
|
7180
7577
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7181
7578
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7214,11 +7611,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7214
7611
|
allowedCommands?: string[] | undefined;
|
|
7215
7612
|
deniedCommands?: string[] | undefined;
|
|
7216
7613
|
commandExecutionTimeout?: number | undefined;
|
|
7614
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
7217
7615
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
7218
7616
|
allowedMaxRequests?: number | null | undefined;
|
|
7219
7617
|
autoCondenseContext?: boolean | undefined;
|
|
7220
7618
|
autoCondenseContextPercent?: number | undefined;
|
|
7221
7619
|
maxConcurrentFileReads?: number | undefined;
|
|
7620
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7621
|
+
maxDiagnosticMessages?: number | undefined;
|
|
7222
7622
|
browserToolEnabled?: boolean | undefined;
|
|
7223
7623
|
browserViewportSize?: string | undefined;
|
|
7224
7624
|
screenshotQuality?: number | undefined;
|
|
@@ -7235,6 +7635,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7235
7635
|
showRooIgnoredFiles?: boolean | undefined;
|
|
7236
7636
|
maxReadFileLine?: number | undefined;
|
|
7237
7637
|
terminalOutputLineLimit?: number | undefined;
|
|
7638
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
7238
7639
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
7239
7640
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
7240
7641
|
terminalCommandDelay?: number | undefined;
|
|
@@ -7244,6 +7645,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7244
7645
|
terminalZshP10k?: boolean | undefined;
|
|
7245
7646
|
terminalZdotdir?: boolean | undefined;
|
|
7246
7647
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7648
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
7247
7649
|
experiments?: {
|
|
7248
7650
|
powerSteering?: boolean | undefined;
|
|
7249
7651
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7261,11 +7663,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7261
7663
|
gemini?: Record<string, {
|
|
7262
7664
|
dimension: number;
|
|
7263
7665
|
}> | undefined;
|
|
7666
|
+
mistral?: Record<string, {
|
|
7667
|
+
dimension: number;
|
|
7668
|
+
}> | undefined;
|
|
7264
7669
|
} | undefined;
|
|
7265
7670
|
codebaseIndexConfig?: {
|
|
7266
7671
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7267
7672
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7268
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7673
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7269
7674
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7270
7675
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7271
7676
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7304,9 +7709,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7304
7709
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7305
7710
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7306
7711
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7307
|
-
|
|
7712
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
7713
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7308
7714
|
includeMaxTokens?: boolean | undefined;
|
|
7309
7715
|
diffEnabled?: boolean | undefined;
|
|
7716
|
+
todoListEnabled?: boolean | undefined;
|
|
7310
7717
|
fuzzyMatchThreshold?: number | undefined;
|
|
7311
7718
|
modelTemperature?: number | null | undefined;
|
|
7312
7719
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7403,6 +7810,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7403
7810
|
mistralCodestralUrl?: string | undefined;
|
|
7404
7811
|
deepSeekBaseUrl?: string | undefined;
|
|
7405
7812
|
deepSeekApiKey?: string | undefined;
|
|
7813
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
7814
|
+
moonshotApiKey?: string | undefined;
|
|
7406
7815
|
unboundApiKey?: string | undefined;
|
|
7407
7816
|
unboundModelId?: string | undefined;
|
|
7408
7817
|
requestyApiKey?: string | undefined;
|
|
@@ -7410,6 +7819,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7410
7819
|
fakeAi?: unknown;
|
|
7411
7820
|
xaiApiKey?: string | undefined;
|
|
7412
7821
|
groqApiKey?: string | undefined;
|
|
7822
|
+
huggingFaceApiKey?: string | undefined;
|
|
7823
|
+
huggingFaceModelId?: string | undefined;
|
|
7824
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7413
7825
|
chutesApiKey?: string | undefined;
|
|
7414
7826
|
litellmBaseUrl?: string | undefined;
|
|
7415
7827
|
litellmApiKey?: string | undefined;
|
|
@@ -7434,7 +7846,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7434
7846
|
listApiConfigMeta?: {
|
|
7435
7847
|
name: string;
|
|
7436
7848
|
id: string;
|
|
7437
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
7849
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7438
7850
|
}[] | undefined;
|
|
7439
7851
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7440
7852
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7473,11 +7885,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7473
7885
|
allowedCommands?: string[] | undefined;
|
|
7474
7886
|
deniedCommands?: string[] | undefined;
|
|
7475
7887
|
commandExecutionTimeout?: number | undefined;
|
|
7888
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
7476
7889
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
7477
7890
|
allowedMaxRequests?: number | null | undefined;
|
|
7478
7891
|
autoCondenseContext?: boolean | undefined;
|
|
7479
7892
|
autoCondenseContextPercent?: number | undefined;
|
|
7480
7893
|
maxConcurrentFileReads?: number | undefined;
|
|
7894
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7895
|
+
maxDiagnosticMessages?: number | undefined;
|
|
7481
7896
|
browserToolEnabled?: boolean | undefined;
|
|
7482
7897
|
browserViewportSize?: string | undefined;
|
|
7483
7898
|
screenshotQuality?: number | undefined;
|
|
@@ -7494,6 +7909,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7494
7909
|
showRooIgnoredFiles?: boolean | undefined;
|
|
7495
7910
|
maxReadFileLine?: number | undefined;
|
|
7496
7911
|
terminalOutputLineLimit?: number | undefined;
|
|
7912
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
7497
7913
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
7498
7914
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
7499
7915
|
terminalCommandDelay?: number | undefined;
|
|
@@ -7503,6 +7919,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7503
7919
|
terminalZshP10k?: boolean | undefined;
|
|
7504
7920
|
terminalZdotdir?: boolean | undefined;
|
|
7505
7921
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7922
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
7506
7923
|
experiments?: {
|
|
7507
7924
|
powerSteering?: boolean | undefined;
|
|
7508
7925
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7520,11 +7937,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7520
7937
|
gemini?: Record<string, {
|
|
7521
7938
|
dimension: number;
|
|
7522
7939
|
}> | undefined;
|
|
7940
|
+
mistral?: Record<string, {
|
|
7941
|
+
dimension: number;
|
|
7942
|
+
}> | undefined;
|
|
7523
7943
|
} | undefined;
|
|
7524
7944
|
codebaseIndexConfig?: {
|
|
7525
7945
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7526
7946
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7527
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7947
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7528
7948
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7529
7949
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7530
7950
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7566,9 +7986,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7566
7986
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7567
7987
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7568
7988
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7569
|
-
|
|
7989
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
7990
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7570
7991
|
includeMaxTokens?: boolean | undefined;
|
|
7571
7992
|
diffEnabled?: boolean | undefined;
|
|
7993
|
+
todoListEnabled?: boolean | undefined;
|
|
7572
7994
|
fuzzyMatchThreshold?: number | undefined;
|
|
7573
7995
|
modelTemperature?: number | null | undefined;
|
|
7574
7996
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7665,6 +8087,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7665
8087
|
mistralCodestralUrl?: string | undefined;
|
|
7666
8088
|
deepSeekBaseUrl?: string | undefined;
|
|
7667
8089
|
deepSeekApiKey?: string | undefined;
|
|
8090
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
8091
|
+
moonshotApiKey?: string | undefined;
|
|
7668
8092
|
unboundApiKey?: string | undefined;
|
|
7669
8093
|
unboundModelId?: string | undefined;
|
|
7670
8094
|
requestyApiKey?: string | undefined;
|
|
@@ -7672,6 +8096,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7672
8096
|
fakeAi?: unknown;
|
|
7673
8097
|
xaiApiKey?: string | undefined;
|
|
7674
8098
|
groqApiKey?: string | undefined;
|
|
8099
|
+
huggingFaceApiKey?: string | undefined;
|
|
8100
|
+
huggingFaceModelId?: string | undefined;
|
|
8101
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7675
8102
|
chutesApiKey?: string | undefined;
|
|
7676
8103
|
litellmBaseUrl?: string | undefined;
|
|
7677
8104
|
litellmApiKey?: string | undefined;
|
|
@@ -7696,7 +8123,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7696
8123
|
listApiConfigMeta?: {
|
|
7697
8124
|
name: string;
|
|
7698
8125
|
id: string;
|
|
7699
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
8126
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7700
8127
|
}[] | undefined;
|
|
7701
8128
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7702
8129
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7735,11 +8162,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7735
8162
|
allowedCommands?: string[] | undefined;
|
|
7736
8163
|
deniedCommands?: string[] | undefined;
|
|
7737
8164
|
commandExecutionTimeout?: number | undefined;
|
|
8165
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
7738
8166
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
7739
8167
|
allowedMaxRequests?: number | null | undefined;
|
|
7740
8168
|
autoCondenseContext?: boolean | undefined;
|
|
7741
8169
|
autoCondenseContextPercent?: number | undefined;
|
|
7742
8170
|
maxConcurrentFileReads?: number | undefined;
|
|
8171
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
8172
|
+
maxDiagnosticMessages?: number | undefined;
|
|
7743
8173
|
browserToolEnabled?: boolean | undefined;
|
|
7744
8174
|
browserViewportSize?: string | undefined;
|
|
7745
8175
|
screenshotQuality?: number | undefined;
|
|
@@ -7756,6 +8186,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7756
8186
|
showRooIgnoredFiles?: boolean | undefined;
|
|
7757
8187
|
maxReadFileLine?: number | undefined;
|
|
7758
8188
|
terminalOutputLineLimit?: number | undefined;
|
|
8189
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
7759
8190
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
7760
8191
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
7761
8192
|
terminalCommandDelay?: number | undefined;
|
|
@@ -7765,6 +8196,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7765
8196
|
terminalZshP10k?: boolean | undefined;
|
|
7766
8197
|
terminalZdotdir?: boolean | undefined;
|
|
7767
8198
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8199
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
7768
8200
|
experiments?: {
|
|
7769
8201
|
powerSteering?: boolean | undefined;
|
|
7770
8202
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7782,11 +8214,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7782
8214
|
gemini?: Record<string, {
|
|
7783
8215
|
dimension: number;
|
|
7784
8216
|
}> | undefined;
|
|
8217
|
+
mistral?: Record<string, {
|
|
8218
|
+
dimension: number;
|
|
8219
|
+
}> | undefined;
|
|
7785
8220
|
} | undefined;
|
|
7786
8221
|
codebaseIndexConfig?: {
|
|
7787
8222
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7788
8223
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7789
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
8224
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7790
8225
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7791
8226
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7792
8227
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7828,9 +8263,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7828
8263
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7829
8264
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7830
8265
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7831
|
-
|
|
8266
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
8267
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7832
8268
|
includeMaxTokens?: boolean | undefined;
|
|
7833
8269
|
diffEnabled?: boolean | undefined;
|
|
8270
|
+
todoListEnabled?: boolean | undefined;
|
|
7834
8271
|
fuzzyMatchThreshold?: number | undefined;
|
|
7835
8272
|
modelTemperature?: number | null | undefined;
|
|
7836
8273
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7927,6 +8364,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7927
8364
|
mistralCodestralUrl?: string | undefined;
|
|
7928
8365
|
deepSeekBaseUrl?: string | undefined;
|
|
7929
8366
|
deepSeekApiKey?: string | undefined;
|
|
8367
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
8368
|
+
moonshotApiKey?: string | undefined;
|
|
7930
8369
|
unboundApiKey?: string | undefined;
|
|
7931
8370
|
unboundModelId?: string | undefined;
|
|
7932
8371
|
requestyApiKey?: string | undefined;
|
|
@@ -7934,6 +8373,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7934
8373
|
fakeAi?: unknown;
|
|
7935
8374
|
xaiApiKey?: string | undefined;
|
|
7936
8375
|
groqApiKey?: string | undefined;
|
|
8376
|
+
huggingFaceApiKey?: string | undefined;
|
|
8377
|
+
huggingFaceModelId?: string | undefined;
|
|
8378
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7937
8379
|
chutesApiKey?: string | undefined;
|
|
7938
8380
|
litellmBaseUrl?: string | undefined;
|
|
7939
8381
|
litellmApiKey?: string | undefined;
|
|
@@ -7958,7 +8400,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7958
8400
|
listApiConfigMeta?: {
|
|
7959
8401
|
name: string;
|
|
7960
8402
|
id: string;
|
|
7961
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
8403
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
7962
8404
|
}[] | undefined;
|
|
7963
8405
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7964
8406
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7997,11 +8439,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7997
8439
|
allowedCommands?: string[] | undefined;
|
|
7998
8440
|
deniedCommands?: string[] | undefined;
|
|
7999
8441
|
commandExecutionTimeout?: number | undefined;
|
|
8442
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
8000
8443
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
8001
8444
|
allowedMaxRequests?: number | null | undefined;
|
|
8002
8445
|
autoCondenseContext?: boolean | undefined;
|
|
8003
8446
|
autoCondenseContextPercent?: number | undefined;
|
|
8004
8447
|
maxConcurrentFileReads?: number | undefined;
|
|
8448
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
8449
|
+
maxDiagnosticMessages?: number | undefined;
|
|
8005
8450
|
browserToolEnabled?: boolean | undefined;
|
|
8006
8451
|
browserViewportSize?: string | undefined;
|
|
8007
8452
|
screenshotQuality?: number | undefined;
|
|
@@ -8018,6 +8463,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8018
8463
|
showRooIgnoredFiles?: boolean | undefined;
|
|
8019
8464
|
maxReadFileLine?: number | undefined;
|
|
8020
8465
|
terminalOutputLineLimit?: number | undefined;
|
|
8466
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
8021
8467
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
8022
8468
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
8023
8469
|
terminalCommandDelay?: number | undefined;
|
|
@@ -8027,6 +8473,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8027
8473
|
terminalZshP10k?: boolean | undefined;
|
|
8028
8474
|
terminalZdotdir?: boolean | undefined;
|
|
8029
8475
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8476
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
8030
8477
|
experiments?: {
|
|
8031
8478
|
powerSteering?: boolean | undefined;
|
|
8032
8479
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -8044,11 +8491,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8044
8491
|
gemini?: Record<string, {
|
|
8045
8492
|
dimension: number;
|
|
8046
8493
|
}> | undefined;
|
|
8494
|
+
mistral?: Record<string, {
|
|
8495
|
+
dimension: number;
|
|
8496
|
+
}> | undefined;
|
|
8047
8497
|
} | undefined;
|
|
8048
8498
|
codebaseIndexConfig?: {
|
|
8049
8499
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8050
8500
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8051
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
8501
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
8052
8502
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8053
8503
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8054
8504
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -8623,7 +9073,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8623
9073
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
8624
9074
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
8625
9075
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
9076
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
8626
9077
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
9078
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8627
9079
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8628
9080
|
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
8629
9081
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8635,6 +9087,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8635
9087
|
litellmModelId: z.ZodOptional<z.ZodString>;
|
|
8636
9088
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
8637
9089
|
chutesApiKey: z.ZodOptional<z.ZodString>;
|
|
9090
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
9091
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
9092
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
8638
9093
|
groqApiKey: z.ZodOptional<z.ZodString>;
|
|
8639
9094
|
xaiApiKey: z.ZodOptional<z.ZodString>;
|
|
8640
9095
|
fakeAi: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -8642,6 +9097,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8642
9097
|
requestyModelId: z.ZodOptional<z.ZodString>;
|
|
8643
9098
|
unboundApiKey: z.ZodOptional<z.ZodString>;
|
|
8644
9099
|
unboundModelId: z.ZodOptional<z.ZodString>;
|
|
9100
|
+
moonshotBaseUrl: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"https://api.moonshot.ai/v1">, z.ZodLiteral<"https://api.moonshot.cn/v1">]>>;
|
|
9101
|
+
moonshotApiKey: z.ZodOptional<z.ZodString>;
|
|
8645
9102
|
deepSeekBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8646
9103
|
deepSeekApiKey: z.ZodOptional<z.ZodString>;
|
|
8647
9104
|
mistralApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -8806,21 +9263,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8806
9263
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
8807
9264
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8808
9265
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
8809
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
9266
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
8810
9267
|
} & {
|
|
8811
9268
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
8812
9269
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8813
9270
|
id: z.ZodString;
|
|
8814
9271
|
name: z.ZodString;
|
|
8815
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
9272
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
8816
9273
|
}, "strip", z.ZodTypeAny, {
|
|
8817
9274
|
name: string;
|
|
8818
9275
|
id: string;
|
|
8819
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
9276
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
8820
9277
|
}, {
|
|
8821
9278
|
name: string;
|
|
8822
9279
|
id: string;
|
|
8823
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
9280
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
8824
9281
|
}>, "many">>;
|
|
8825
9282
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8826
9283
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8884,11 +9341,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8884
9341
|
allowedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8885
9342
|
deniedCommands: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8886
9343
|
commandExecutionTimeout: z.ZodOptional<z.ZodNumber>;
|
|
9344
|
+
commandTimeoutAllowlist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8887
9345
|
preventCompletionWithOpenTodos: z.ZodOptional<z.ZodBoolean>;
|
|
8888
9346
|
allowedMaxRequests: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8889
9347
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
8890
9348
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
8891
9349
|
maxConcurrentFileReads: z.ZodOptional<z.ZodNumber>;
|
|
9350
|
+
includeDiagnosticMessages: z.ZodOptional<z.ZodBoolean>;
|
|
9351
|
+
maxDiagnosticMessages: z.ZodOptional<z.ZodNumber>;
|
|
8892
9352
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8893
9353
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
8894
9354
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8905,6 +9365,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8905
9365
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
8906
9366
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
8907
9367
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
9368
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
8908
9369
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
8909
9370
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
8910
9371
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8914,6 +9375,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8914
9375
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
8915
9376
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
8916
9377
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
9378
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8917
9379
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8918
9380
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8919
9381
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8956,6 +9418,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8956
9418
|
}, {
|
|
8957
9419
|
dimension: number;
|
|
8958
9420
|
}>>>;
|
|
9421
|
+
mistral: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9422
|
+
dimension: z.ZodNumber;
|
|
9423
|
+
}, "strip", z.ZodTypeAny, {
|
|
9424
|
+
dimension: number;
|
|
9425
|
+
}, {
|
|
9426
|
+
dimension: number;
|
|
9427
|
+
}>>>;
|
|
8959
9428
|
}, "strip", z.ZodTypeAny, {
|
|
8960
9429
|
openai?: Record<string, {
|
|
8961
9430
|
dimension: number;
|
|
@@ -8969,6 +9438,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8969
9438
|
gemini?: Record<string, {
|
|
8970
9439
|
dimension: number;
|
|
8971
9440
|
}> | undefined;
|
|
9441
|
+
mistral?: Record<string, {
|
|
9442
|
+
dimension: number;
|
|
9443
|
+
}> | undefined;
|
|
8972
9444
|
}, {
|
|
8973
9445
|
openai?: Record<string, {
|
|
8974
9446
|
dimension: number;
|
|
@@ -8982,11 +9454,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8982
9454
|
gemini?: Record<string, {
|
|
8983
9455
|
dimension: number;
|
|
8984
9456
|
}> | undefined;
|
|
9457
|
+
mistral?: Record<string, {
|
|
9458
|
+
dimension: number;
|
|
9459
|
+
}> | undefined;
|
|
8985
9460
|
}>>;
|
|
8986
9461
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
8987
9462
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8988
9463
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
8989
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
9464
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
8990
9465
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8991
9466
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
8992
9467
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8997,7 +9472,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8997
9472
|
}, "strip", z.ZodTypeAny, {
|
|
8998
9473
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8999
9474
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9000
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9475
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9001
9476
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9002
9477
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9003
9478
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9008,7 +9483,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9008
9483
|
}, {
|
|
9009
9484
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9010
9485
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9011
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9486
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9012
9487
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9013
9488
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9014
9489
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9103,9 +9578,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9103
9578
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9104
9579
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9105
9580
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9106
|
-
|
|
9581
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
9582
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
9107
9583
|
includeMaxTokens?: boolean | undefined;
|
|
9108
9584
|
diffEnabled?: boolean | undefined;
|
|
9585
|
+
todoListEnabled?: boolean | undefined;
|
|
9109
9586
|
fuzzyMatchThreshold?: number | undefined;
|
|
9110
9587
|
modelTemperature?: number | null | undefined;
|
|
9111
9588
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9202,6 +9679,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9202
9679
|
mistralCodestralUrl?: string | undefined;
|
|
9203
9680
|
deepSeekBaseUrl?: string | undefined;
|
|
9204
9681
|
deepSeekApiKey?: string | undefined;
|
|
9682
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
9683
|
+
moonshotApiKey?: string | undefined;
|
|
9205
9684
|
unboundApiKey?: string | undefined;
|
|
9206
9685
|
unboundModelId?: string | undefined;
|
|
9207
9686
|
requestyApiKey?: string | undefined;
|
|
@@ -9209,6 +9688,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9209
9688
|
fakeAi?: unknown;
|
|
9210
9689
|
xaiApiKey?: string | undefined;
|
|
9211
9690
|
groqApiKey?: string | undefined;
|
|
9691
|
+
huggingFaceApiKey?: string | undefined;
|
|
9692
|
+
huggingFaceModelId?: string | undefined;
|
|
9693
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
9212
9694
|
chutesApiKey?: string | undefined;
|
|
9213
9695
|
litellmBaseUrl?: string | undefined;
|
|
9214
9696
|
litellmApiKey?: string | undefined;
|
|
@@ -9233,7 +9715,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9233
9715
|
listApiConfigMeta?: {
|
|
9234
9716
|
name: string;
|
|
9235
9717
|
id: string;
|
|
9236
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
9718
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
9237
9719
|
}[] | undefined;
|
|
9238
9720
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9239
9721
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9272,11 +9754,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9272
9754
|
allowedCommands?: string[] | undefined;
|
|
9273
9755
|
deniedCommands?: string[] | undefined;
|
|
9274
9756
|
commandExecutionTimeout?: number | undefined;
|
|
9757
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
9275
9758
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
9276
9759
|
allowedMaxRequests?: number | null | undefined;
|
|
9277
9760
|
autoCondenseContext?: boolean | undefined;
|
|
9278
9761
|
autoCondenseContextPercent?: number | undefined;
|
|
9279
9762
|
maxConcurrentFileReads?: number | undefined;
|
|
9763
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
9764
|
+
maxDiagnosticMessages?: number | undefined;
|
|
9280
9765
|
browserToolEnabled?: boolean | undefined;
|
|
9281
9766
|
browserViewportSize?: string | undefined;
|
|
9282
9767
|
screenshotQuality?: number | undefined;
|
|
@@ -9293,6 +9778,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9293
9778
|
showRooIgnoredFiles?: boolean | undefined;
|
|
9294
9779
|
maxReadFileLine?: number | undefined;
|
|
9295
9780
|
terminalOutputLineLimit?: number | undefined;
|
|
9781
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
9296
9782
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
9297
9783
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
9298
9784
|
terminalCommandDelay?: number | undefined;
|
|
@@ -9302,6 +9788,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9302
9788
|
terminalZshP10k?: boolean | undefined;
|
|
9303
9789
|
terminalZdotdir?: boolean | undefined;
|
|
9304
9790
|
terminalCompressProgressBar?: boolean | undefined;
|
|
9791
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
9305
9792
|
experiments?: {
|
|
9306
9793
|
powerSteering?: boolean | undefined;
|
|
9307
9794
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -9319,11 +9806,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9319
9806
|
gemini?: Record<string, {
|
|
9320
9807
|
dimension: number;
|
|
9321
9808
|
}> | undefined;
|
|
9809
|
+
mistral?: Record<string, {
|
|
9810
|
+
dimension: number;
|
|
9811
|
+
}> | undefined;
|
|
9322
9812
|
} | undefined;
|
|
9323
9813
|
codebaseIndexConfig?: {
|
|
9324
9814
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9325
9815
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9326
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9816
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9327
9817
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9328
9818
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9329
9819
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9357,9 +9847,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9357
9847
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9358
9848
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9359
9849
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9360
|
-
|
|
9850
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
9851
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
9361
9852
|
includeMaxTokens?: boolean | undefined;
|
|
9362
9853
|
diffEnabled?: boolean | undefined;
|
|
9854
|
+
todoListEnabled?: boolean | undefined;
|
|
9363
9855
|
fuzzyMatchThreshold?: number | undefined;
|
|
9364
9856
|
modelTemperature?: number | null | undefined;
|
|
9365
9857
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9456,6 +9948,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9456
9948
|
mistralCodestralUrl?: string | undefined;
|
|
9457
9949
|
deepSeekBaseUrl?: string | undefined;
|
|
9458
9950
|
deepSeekApiKey?: string | undefined;
|
|
9951
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
9952
|
+
moonshotApiKey?: string | undefined;
|
|
9459
9953
|
unboundApiKey?: string | undefined;
|
|
9460
9954
|
unboundModelId?: string | undefined;
|
|
9461
9955
|
requestyApiKey?: string | undefined;
|
|
@@ -9463,6 +9957,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9463
9957
|
fakeAi?: unknown;
|
|
9464
9958
|
xaiApiKey?: string | undefined;
|
|
9465
9959
|
groqApiKey?: string | undefined;
|
|
9960
|
+
huggingFaceApiKey?: string | undefined;
|
|
9961
|
+
huggingFaceModelId?: string | undefined;
|
|
9962
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
9466
9963
|
chutesApiKey?: string | undefined;
|
|
9467
9964
|
litellmBaseUrl?: string | undefined;
|
|
9468
9965
|
litellmApiKey?: string | undefined;
|
|
@@ -9487,7 +9984,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9487
9984
|
listApiConfigMeta?: {
|
|
9488
9985
|
name: string;
|
|
9489
9986
|
id: string;
|
|
9490
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
9987
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
9491
9988
|
}[] | undefined;
|
|
9492
9989
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9493
9990
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9526,11 +10023,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9526
10023
|
allowedCommands?: string[] | undefined;
|
|
9527
10024
|
deniedCommands?: string[] | undefined;
|
|
9528
10025
|
commandExecutionTimeout?: number | undefined;
|
|
10026
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
9529
10027
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
9530
10028
|
allowedMaxRequests?: number | null | undefined;
|
|
9531
10029
|
autoCondenseContext?: boolean | undefined;
|
|
9532
10030
|
autoCondenseContextPercent?: number | undefined;
|
|
9533
10031
|
maxConcurrentFileReads?: number | undefined;
|
|
10032
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10033
|
+
maxDiagnosticMessages?: number | undefined;
|
|
9534
10034
|
browserToolEnabled?: boolean | undefined;
|
|
9535
10035
|
browserViewportSize?: string | undefined;
|
|
9536
10036
|
screenshotQuality?: number | undefined;
|
|
@@ -9547,6 +10047,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9547
10047
|
showRooIgnoredFiles?: boolean | undefined;
|
|
9548
10048
|
maxReadFileLine?: number | undefined;
|
|
9549
10049
|
terminalOutputLineLimit?: number | undefined;
|
|
10050
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
9550
10051
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
9551
10052
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
9552
10053
|
terminalCommandDelay?: number | undefined;
|
|
@@ -9556,6 +10057,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9556
10057
|
terminalZshP10k?: boolean | undefined;
|
|
9557
10058
|
terminalZdotdir?: boolean | undefined;
|
|
9558
10059
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10060
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
9559
10061
|
experiments?: {
|
|
9560
10062
|
powerSteering?: boolean | undefined;
|
|
9561
10063
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -9573,11 +10075,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9573
10075
|
gemini?: Record<string, {
|
|
9574
10076
|
dimension: number;
|
|
9575
10077
|
}> | undefined;
|
|
10078
|
+
mistral?: Record<string, {
|
|
10079
|
+
dimension: number;
|
|
10080
|
+
}> | undefined;
|
|
9576
10081
|
} | undefined;
|
|
9577
10082
|
codebaseIndexConfig?: {
|
|
9578
10083
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9579
10084
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9580
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10085
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9581
10086
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9582
10087
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9583
10088
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9617,9 +10122,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9617
10122
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9618
10123
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9619
10124
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9620
|
-
|
|
10125
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
10126
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
9621
10127
|
includeMaxTokens?: boolean | undefined;
|
|
9622
10128
|
diffEnabled?: boolean | undefined;
|
|
10129
|
+
todoListEnabled?: boolean | undefined;
|
|
9623
10130
|
fuzzyMatchThreshold?: number | undefined;
|
|
9624
10131
|
modelTemperature?: number | null | undefined;
|
|
9625
10132
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9716,6 +10223,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9716
10223
|
mistralCodestralUrl?: string | undefined;
|
|
9717
10224
|
deepSeekBaseUrl?: string | undefined;
|
|
9718
10225
|
deepSeekApiKey?: string | undefined;
|
|
10226
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
10227
|
+
moonshotApiKey?: string | undefined;
|
|
9719
10228
|
unboundApiKey?: string | undefined;
|
|
9720
10229
|
unboundModelId?: string | undefined;
|
|
9721
10230
|
requestyApiKey?: string | undefined;
|
|
@@ -9723,6 +10232,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9723
10232
|
fakeAi?: unknown;
|
|
9724
10233
|
xaiApiKey?: string | undefined;
|
|
9725
10234
|
groqApiKey?: string | undefined;
|
|
10235
|
+
huggingFaceApiKey?: string | undefined;
|
|
10236
|
+
huggingFaceModelId?: string | undefined;
|
|
10237
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
9726
10238
|
chutesApiKey?: string | undefined;
|
|
9727
10239
|
litellmBaseUrl?: string | undefined;
|
|
9728
10240
|
litellmApiKey?: string | undefined;
|
|
@@ -9747,7 +10259,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9747
10259
|
listApiConfigMeta?: {
|
|
9748
10260
|
name: string;
|
|
9749
10261
|
id: string;
|
|
9750
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
10262
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
9751
10263
|
}[] | undefined;
|
|
9752
10264
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9753
10265
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9786,11 +10298,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9786
10298
|
allowedCommands?: string[] | undefined;
|
|
9787
10299
|
deniedCommands?: string[] | undefined;
|
|
9788
10300
|
commandExecutionTimeout?: number | undefined;
|
|
10301
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
9789
10302
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
9790
10303
|
allowedMaxRequests?: number | null | undefined;
|
|
9791
10304
|
autoCondenseContext?: boolean | undefined;
|
|
9792
10305
|
autoCondenseContextPercent?: number | undefined;
|
|
9793
10306
|
maxConcurrentFileReads?: number | undefined;
|
|
10307
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10308
|
+
maxDiagnosticMessages?: number | undefined;
|
|
9794
10309
|
browserToolEnabled?: boolean | undefined;
|
|
9795
10310
|
browserViewportSize?: string | undefined;
|
|
9796
10311
|
screenshotQuality?: number | undefined;
|
|
@@ -9807,6 +10322,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9807
10322
|
showRooIgnoredFiles?: boolean | undefined;
|
|
9808
10323
|
maxReadFileLine?: number | undefined;
|
|
9809
10324
|
terminalOutputLineLimit?: number | undefined;
|
|
10325
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
9810
10326
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
9811
10327
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
9812
10328
|
terminalCommandDelay?: number | undefined;
|
|
@@ -9816,6 +10332,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9816
10332
|
terminalZshP10k?: boolean | undefined;
|
|
9817
10333
|
terminalZdotdir?: boolean | undefined;
|
|
9818
10334
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10335
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
9819
10336
|
experiments?: {
|
|
9820
10337
|
powerSteering?: boolean | undefined;
|
|
9821
10338
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -9833,11 +10350,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9833
10350
|
gemini?: Record<string, {
|
|
9834
10351
|
dimension: number;
|
|
9835
10352
|
}> | undefined;
|
|
10353
|
+
mistral?: Record<string, {
|
|
10354
|
+
dimension: number;
|
|
10355
|
+
}> | undefined;
|
|
9836
10356
|
} | undefined;
|
|
9837
10357
|
codebaseIndexConfig?: {
|
|
9838
10358
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9839
10359
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9840
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10360
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9841
10361
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9842
10362
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9843
10363
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9876,9 +10396,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9876
10396
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9877
10397
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9878
10398
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9879
|
-
|
|
10399
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
10400
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
9880
10401
|
includeMaxTokens?: boolean | undefined;
|
|
9881
10402
|
diffEnabled?: boolean | undefined;
|
|
10403
|
+
todoListEnabled?: boolean | undefined;
|
|
9882
10404
|
fuzzyMatchThreshold?: number | undefined;
|
|
9883
10405
|
modelTemperature?: number | null | undefined;
|
|
9884
10406
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9975,6 +10497,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9975
10497
|
mistralCodestralUrl?: string | undefined;
|
|
9976
10498
|
deepSeekBaseUrl?: string | undefined;
|
|
9977
10499
|
deepSeekApiKey?: string | undefined;
|
|
10500
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
10501
|
+
moonshotApiKey?: string | undefined;
|
|
9978
10502
|
unboundApiKey?: string | undefined;
|
|
9979
10503
|
unboundModelId?: string | undefined;
|
|
9980
10504
|
requestyApiKey?: string | undefined;
|
|
@@ -9982,6 +10506,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9982
10506
|
fakeAi?: unknown;
|
|
9983
10507
|
xaiApiKey?: string | undefined;
|
|
9984
10508
|
groqApiKey?: string | undefined;
|
|
10509
|
+
huggingFaceApiKey?: string | undefined;
|
|
10510
|
+
huggingFaceModelId?: string | undefined;
|
|
10511
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
9985
10512
|
chutesApiKey?: string | undefined;
|
|
9986
10513
|
litellmBaseUrl?: string | undefined;
|
|
9987
10514
|
litellmApiKey?: string | undefined;
|
|
@@ -10006,7 +10533,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10006
10533
|
listApiConfigMeta?: {
|
|
10007
10534
|
name: string;
|
|
10008
10535
|
id: string;
|
|
10009
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
10536
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10010
10537
|
}[] | undefined;
|
|
10011
10538
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10012
10539
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10045,11 +10572,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10045
10572
|
allowedCommands?: string[] | undefined;
|
|
10046
10573
|
deniedCommands?: string[] | undefined;
|
|
10047
10574
|
commandExecutionTimeout?: number | undefined;
|
|
10575
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
10048
10576
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
10049
10577
|
allowedMaxRequests?: number | null | undefined;
|
|
10050
10578
|
autoCondenseContext?: boolean | undefined;
|
|
10051
10579
|
autoCondenseContextPercent?: number | undefined;
|
|
10052
10580
|
maxConcurrentFileReads?: number | undefined;
|
|
10581
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10582
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10053
10583
|
browserToolEnabled?: boolean | undefined;
|
|
10054
10584
|
browserViewportSize?: string | undefined;
|
|
10055
10585
|
screenshotQuality?: number | undefined;
|
|
@@ -10066,6 +10596,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10066
10596
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10067
10597
|
maxReadFileLine?: number | undefined;
|
|
10068
10598
|
terminalOutputLineLimit?: number | undefined;
|
|
10599
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10069
10600
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10070
10601
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10071
10602
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10075,6 +10606,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10075
10606
|
terminalZshP10k?: boolean | undefined;
|
|
10076
10607
|
terminalZdotdir?: boolean | undefined;
|
|
10077
10608
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10609
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10078
10610
|
experiments?: {
|
|
10079
10611
|
powerSteering?: boolean | undefined;
|
|
10080
10612
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10092,11 +10624,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10092
10624
|
gemini?: Record<string, {
|
|
10093
10625
|
dimension: number;
|
|
10094
10626
|
}> | undefined;
|
|
10627
|
+
mistral?: Record<string, {
|
|
10628
|
+
dimension: number;
|
|
10629
|
+
}> | undefined;
|
|
10095
10630
|
} | undefined;
|
|
10096
10631
|
codebaseIndexConfig?: {
|
|
10097
10632
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10098
10633
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10099
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10634
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10100
10635
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10101
10636
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10102
10637
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10138,9 +10673,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10138
10673
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10139
10674
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10140
10675
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10141
|
-
|
|
10676
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
10677
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10142
10678
|
includeMaxTokens?: boolean | undefined;
|
|
10143
10679
|
diffEnabled?: boolean | undefined;
|
|
10680
|
+
todoListEnabled?: boolean | undefined;
|
|
10144
10681
|
fuzzyMatchThreshold?: number | undefined;
|
|
10145
10682
|
modelTemperature?: number | null | undefined;
|
|
10146
10683
|
rateLimitSeconds?: number | undefined;
|
|
@@ -10237,6 +10774,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10237
10774
|
mistralCodestralUrl?: string | undefined;
|
|
10238
10775
|
deepSeekBaseUrl?: string | undefined;
|
|
10239
10776
|
deepSeekApiKey?: string | undefined;
|
|
10777
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
10778
|
+
moonshotApiKey?: string | undefined;
|
|
10240
10779
|
unboundApiKey?: string | undefined;
|
|
10241
10780
|
unboundModelId?: string | undefined;
|
|
10242
10781
|
requestyApiKey?: string | undefined;
|
|
@@ -10244,6 +10783,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10244
10783
|
fakeAi?: unknown;
|
|
10245
10784
|
xaiApiKey?: string | undefined;
|
|
10246
10785
|
groqApiKey?: string | undefined;
|
|
10786
|
+
huggingFaceApiKey?: string | undefined;
|
|
10787
|
+
huggingFaceModelId?: string | undefined;
|
|
10788
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
10247
10789
|
chutesApiKey?: string | undefined;
|
|
10248
10790
|
litellmBaseUrl?: string | undefined;
|
|
10249
10791
|
litellmApiKey?: string | undefined;
|
|
@@ -10268,7 +10810,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10268
10810
|
listApiConfigMeta?: {
|
|
10269
10811
|
name: string;
|
|
10270
10812
|
id: string;
|
|
10271
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
10813
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10272
10814
|
}[] | undefined;
|
|
10273
10815
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10274
10816
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10307,11 +10849,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10307
10849
|
allowedCommands?: string[] | undefined;
|
|
10308
10850
|
deniedCommands?: string[] | undefined;
|
|
10309
10851
|
commandExecutionTimeout?: number | undefined;
|
|
10852
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
10310
10853
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
10311
10854
|
allowedMaxRequests?: number | null | undefined;
|
|
10312
10855
|
autoCondenseContext?: boolean | undefined;
|
|
10313
10856
|
autoCondenseContextPercent?: number | undefined;
|
|
10314
10857
|
maxConcurrentFileReads?: number | undefined;
|
|
10858
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10859
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10315
10860
|
browserToolEnabled?: boolean | undefined;
|
|
10316
10861
|
browserViewportSize?: string | undefined;
|
|
10317
10862
|
screenshotQuality?: number | undefined;
|
|
@@ -10328,6 +10873,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10328
10873
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10329
10874
|
maxReadFileLine?: number | undefined;
|
|
10330
10875
|
terminalOutputLineLimit?: number | undefined;
|
|
10876
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10331
10877
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10332
10878
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10333
10879
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10337,6 +10883,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10337
10883
|
terminalZshP10k?: boolean | undefined;
|
|
10338
10884
|
terminalZdotdir?: boolean | undefined;
|
|
10339
10885
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10886
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10340
10887
|
experiments?: {
|
|
10341
10888
|
powerSteering?: boolean | undefined;
|
|
10342
10889
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10354,11 +10901,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10354
10901
|
gemini?: Record<string, {
|
|
10355
10902
|
dimension: number;
|
|
10356
10903
|
}> | undefined;
|
|
10904
|
+
mistral?: Record<string, {
|
|
10905
|
+
dimension: number;
|
|
10906
|
+
}> | undefined;
|
|
10357
10907
|
} | undefined;
|
|
10358
10908
|
codebaseIndexConfig?: {
|
|
10359
10909
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10360
10910
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10361
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10911
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10362
10912
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10363
10913
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10364
10914
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10400,9 +10950,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10400
10950
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10401
10951
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10402
10952
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10403
|
-
|
|
10953
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
10954
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10404
10955
|
includeMaxTokens?: boolean | undefined;
|
|
10405
10956
|
diffEnabled?: boolean | undefined;
|
|
10957
|
+
todoListEnabled?: boolean | undefined;
|
|
10406
10958
|
fuzzyMatchThreshold?: number | undefined;
|
|
10407
10959
|
modelTemperature?: number | null | undefined;
|
|
10408
10960
|
rateLimitSeconds?: number | undefined;
|
|
@@ -10499,6 +11051,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10499
11051
|
mistralCodestralUrl?: string | undefined;
|
|
10500
11052
|
deepSeekBaseUrl?: string | undefined;
|
|
10501
11053
|
deepSeekApiKey?: string | undefined;
|
|
11054
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
11055
|
+
moonshotApiKey?: string | undefined;
|
|
10502
11056
|
unboundApiKey?: string | undefined;
|
|
10503
11057
|
unboundModelId?: string | undefined;
|
|
10504
11058
|
requestyApiKey?: string | undefined;
|
|
@@ -10506,6 +11060,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10506
11060
|
fakeAi?: unknown;
|
|
10507
11061
|
xaiApiKey?: string | undefined;
|
|
10508
11062
|
groqApiKey?: string | undefined;
|
|
11063
|
+
huggingFaceApiKey?: string | undefined;
|
|
11064
|
+
huggingFaceModelId?: string | undefined;
|
|
11065
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
10509
11066
|
chutesApiKey?: string | undefined;
|
|
10510
11067
|
litellmBaseUrl?: string | undefined;
|
|
10511
11068
|
litellmApiKey?: string | undefined;
|
|
@@ -10530,7 +11087,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10530
11087
|
listApiConfigMeta?: {
|
|
10531
11088
|
name: string;
|
|
10532
11089
|
id: string;
|
|
10533
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
11090
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10534
11091
|
}[] | undefined;
|
|
10535
11092
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10536
11093
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10569,11 +11126,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10569
11126
|
allowedCommands?: string[] | undefined;
|
|
10570
11127
|
deniedCommands?: string[] | undefined;
|
|
10571
11128
|
commandExecutionTimeout?: number | undefined;
|
|
11129
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
10572
11130
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
10573
11131
|
allowedMaxRequests?: number | null | undefined;
|
|
10574
11132
|
autoCondenseContext?: boolean | undefined;
|
|
10575
11133
|
autoCondenseContextPercent?: number | undefined;
|
|
10576
11134
|
maxConcurrentFileReads?: number | undefined;
|
|
11135
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
11136
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10577
11137
|
browserToolEnabled?: boolean | undefined;
|
|
10578
11138
|
browserViewportSize?: string | undefined;
|
|
10579
11139
|
screenshotQuality?: number | undefined;
|
|
@@ -10590,6 +11150,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10590
11150
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10591
11151
|
maxReadFileLine?: number | undefined;
|
|
10592
11152
|
terminalOutputLineLimit?: number | undefined;
|
|
11153
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10593
11154
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10594
11155
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10595
11156
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10599,6 +11160,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10599
11160
|
terminalZshP10k?: boolean | undefined;
|
|
10600
11161
|
terminalZdotdir?: boolean | undefined;
|
|
10601
11162
|
terminalCompressProgressBar?: boolean | undefined;
|
|
11163
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10602
11164
|
experiments?: {
|
|
10603
11165
|
powerSteering?: boolean | undefined;
|
|
10604
11166
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10616,11 +11178,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10616
11178
|
gemini?: Record<string, {
|
|
10617
11179
|
dimension: number;
|
|
10618
11180
|
}> | undefined;
|
|
11181
|
+
mistral?: Record<string, {
|
|
11182
|
+
dimension: number;
|
|
11183
|
+
}> | undefined;
|
|
10619
11184
|
} | undefined;
|
|
10620
11185
|
codebaseIndexConfig?: {
|
|
10621
11186
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10622
11187
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10623
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11188
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10624
11189
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10625
11190
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10626
11191
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10684,9 +11249,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10684
11249
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10685
11250
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10686
11251
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10687
|
-
|
|
11252
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
11253
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10688
11254
|
includeMaxTokens?: boolean | undefined;
|
|
10689
11255
|
diffEnabled?: boolean | undefined;
|
|
11256
|
+
todoListEnabled?: boolean | undefined;
|
|
10690
11257
|
fuzzyMatchThreshold?: number | undefined;
|
|
10691
11258
|
modelTemperature?: number | null | undefined;
|
|
10692
11259
|
rateLimitSeconds?: number | undefined;
|
|
@@ -10783,6 +11350,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10783
11350
|
mistralCodestralUrl?: string | undefined;
|
|
10784
11351
|
deepSeekBaseUrl?: string | undefined;
|
|
10785
11352
|
deepSeekApiKey?: string | undefined;
|
|
11353
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
11354
|
+
moonshotApiKey?: string | undefined;
|
|
10786
11355
|
unboundApiKey?: string | undefined;
|
|
10787
11356
|
unboundModelId?: string | undefined;
|
|
10788
11357
|
requestyApiKey?: string | undefined;
|
|
@@ -10790,6 +11359,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10790
11359
|
fakeAi?: unknown;
|
|
10791
11360
|
xaiApiKey?: string | undefined;
|
|
10792
11361
|
groqApiKey?: string | undefined;
|
|
11362
|
+
huggingFaceApiKey?: string | undefined;
|
|
11363
|
+
huggingFaceModelId?: string | undefined;
|
|
11364
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
10793
11365
|
chutesApiKey?: string | undefined;
|
|
10794
11366
|
litellmBaseUrl?: string | undefined;
|
|
10795
11367
|
litellmApiKey?: string | undefined;
|
|
@@ -10814,7 +11386,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10814
11386
|
listApiConfigMeta?: {
|
|
10815
11387
|
name: string;
|
|
10816
11388
|
id: string;
|
|
10817
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
11389
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10818
11390
|
}[] | undefined;
|
|
10819
11391
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10820
11392
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10853,11 +11425,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10853
11425
|
allowedCommands?: string[] | undefined;
|
|
10854
11426
|
deniedCommands?: string[] | undefined;
|
|
10855
11427
|
commandExecutionTimeout?: number | undefined;
|
|
11428
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
10856
11429
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
10857
11430
|
allowedMaxRequests?: number | null | undefined;
|
|
10858
11431
|
autoCondenseContext?: boolean | undefined;
|
|
10859
11432
|
autoCondenseContextPercent?: number | undefined;
|
|
10860
11433
|
maxConcurrentFileReads?: number | undefined;
|
|
11434
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
11435
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10861
11436
|
browserToolEnabled?: boolean | undefined;
|
|
10862
11437
|
browserViewportSize?: string | undefined;
|
|
10863
11438
|
screenshotQuality?: number | undefined;
|
|
@@ -10874,6 +11449,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10874
11449
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10875
11450
|
maxReadFileLine?: number | undefined;
|
|
10876
11451
|
terminalOutputLineLimit?: number | undefined;
|
|
11452
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10877
11453
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10878
11454
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10879
11455
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10883,6 +11459,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10883
11459
|
terminalZshP10k?: boolean | undefined;
|
|
10884
11460
|
terminalZdotdir?: boolean | undefined;
|
|
10885
11461
|
terminalCompressProgressBar?: boolean | undefined;
|
|
11462
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10886
11463
|
experiments?: {
|
|
10887
11464
|
powerSteering?: boolean | undefined;
|
|
10888
11465
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10900,11 +11477,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10900
11477
|
gemini?: Record<string, {
|
|
10901
11478
|
dimension: number;
|
|
10902
11479
|
}> | undefined;
|
|
11480
|
+
mistral?: Record<string, {
|
|
11481
|
+
dimension: number;
|
|
11482
|
+
}> | undefined;
|
|
10903
11483
|
} | undefined;
|
|
10904
11484
|
codebaseIndexConfig?: {
|
|
10905
11485
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10906
11486
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10907
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11487
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10908
11488
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10909
11489
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10910
11490
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10957,9 +11537,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10957
11537
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10958
11538
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10959
11539
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10960
|
-
|
|
11540
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
11541
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
10961
11542
|
includeMaxTokens?: boolean | undefined;
|
|
10962
11543
|
diffEnabled?: boolean | undefined;
|
|
11544
|
+
todoListEnabled?: boolean | undefined;
|
|
10963
11545
|
fuzzyMatchThreshold?: number | undefined;
|
|
10964
11546
|
modelTemperature?: number | null | undefined;
|
|
10965
11547
|
rateLimitSeconds?: number | undefined;
|
|
@@ -11056,6 +11638,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11056
11638
|
mistralCodestralUrl?: string | undefined;
|
|
11057
11639
|
deepSeekBaseUrl?: string | undefined;
|
|
11058
11640
|
deepSeekApiKey?: string | undefined;
|
|
11641
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
11642
|
+
moonshotApiKey?: string | undefined;
|
|
11059
11643
|
unboundApiKey?: string | undefined;
|
|
11060
11644
|
unboundModelId?: string | undefined;
|
|
11061
11645
|
requestyApiKey?: string | undefined;
|
|
@@ -11063,6 +11647,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11063
11647
|
fakeAi?: unknown;
|
|
11064
11648
|
xaiApiKey?: string | undefined;
|
|
11065
11649
|
groqApiKey?: string | undefined;
|
|
11650
|
+
huggingFaceApiKey?: string | undefined;
|
|
11651
|
+
huggingFaceModelId?: string | undefined;
|
|
11652
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
11066
11653
|
chutesApiKey?: string | undefined;
|
|
11067
11654
|
litellmBaseUrl?: string | undefined;
|
|
11068
11655
|
litellmApiKey?: string | undefined;
|
|
@@ -11087,7 +11674,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11087
11674
|
listApiConfigMeta?: {
|
|
11088
11675
|
name: string;
|
|
11089
11676
|
id: string;
|
|
11090
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
11677
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
11091
11678
|
}[] | undefined;
|
|
11092
11679
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11093
11680
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11126,11 +11713,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11126
11713
|
allowedCommands?: string[] | undefined;
|
|
11127
11714
|
deniedCommands?: string[] | undefined;
|
|
11128
11715
|
commandExecutionTimeout?: number | undefined;
|
|
11716
|
+
commandTimeoutAllowlist?: string[] | undefined;
|
|
11129
11717
|
preventCompletionWithOpenTodos?: boolean | undefined;
|
|
11130
11718
|
allowedMaxRequests?: number | null | undefined;
|
|
11131
11719
|
autoCondenseContext?: boolean | undefined;
|
|
11132
11720
|
autoCondenseContextPercent?: number | undefined;
|
|
11133
11721
|
maxConcurrentFileReads?: number | undefined;
|
|
11722
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
11723
|
+
maxDiagnosticMessages?: number | undefined;
|
|
11134
11724
|
browserToolEnabled?: boolean | undefined;
|
|
11135
11725
|
browserViewportSize?: string | undefined;
|
|
11136
11726
|
screenshotQuality?: number | undefined;
|
|
@@ -11147,6 +11737,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11147
11737
|
showRooIgnoredFiles?: boolean | undefined;
|
|
11148
11738
|
maxReadFileLine?: number | undefined;
|
|
11149
11739
|
terminalOutputLineLimit?: number | undefined;
|
|
11740
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
11150
11741
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
11151
11742
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
11152
11743
|
terminalCommandDelay?: number | undefined;
|
|
@@ -11156,6 +11747,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11156
11747
|
terminalZshP10k?: boolean | undefined;
|
|
11157
11748
|
terminalZdotdir?: boolean | undefined;
|
|
11158
11749
|
terminalCompressProgressBar?: boolean | undefined;
|
|
11750
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
11159
11751
|
experiments?: {
|
|
11160
11752
|
powerSteering?: boolean | undefined;
|
|
11161
11753
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -11173,11 +11765,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11173
11765
|
gemini?: Record<string, {
|
|
11174
11766
|
dimension: number;
|
|
11175
11767
|
}> | undefined;
|
|
11768
|
+
mistral?: Record<string, {
|
|
11769
|
+
dimension: number;
|
|
11770
|
+
}> | undefined;
|
|
11176
11771
|
} | undefined;
|
|
11177
11772
|
codebaseIndexConfig?: {
|
|
11178
11773
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11179
11774
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11180
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11775
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
11181
11776
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11182
11777
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11183
11778
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12082,7 +12677,7 @@ declare const CODEBASE_INDEX_DEFAULTS: {
|
|
|
12082
12677
|
declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
12083
12678
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
12084
12679
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
12085
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
12680
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
12086
12681
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
12087
12682
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
12088
12683
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12093,7 +12688,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
|
12093
12688
|
}, "strip", z.ZodTypeAny, {
|
|
12094
12689
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12095
12690
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12096
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
12691
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
12097
12692
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12098
12693
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12099
12694
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12104,7 +12699,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
|
12104
12699
|
}, {
|
|
12105
12700
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12106
12701
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12107
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
12702
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
12108
12703
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12109
12704
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12110
12705
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12146,6 +12741,13 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
12146
12741
|
}, {
|
|
12147
12742
|
dimension: number;
|
|
12148
12743
|
}>>>;
|
|
12744
|
+
mistral: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12745
|
+
dimension: z.ZodNumber;
|
|
12746
|
+
}, "strip", z.ZodTypeAny, {
|
|
12747
|
+
dimension: number;
|
|
12748
|
+
}, {
|
|
12749
|
+
dimension: number;
|
|
12750
|
+
}>>>;
|
|
12149
12751
|
}, "strip", z.ZodTypeAny, {
|
|
12150
12752
|
openai?: Record<string, {
|
|
12151
12753
|
dimension: number;
|
|
@@ -12159,6 +12761,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
12159
12761
|
gemini?: Record<string, {
|
|
12160
12762
|
dimension: number;
|
|
12161
12763
|
}> | undefined;
|
|
12764
|
+
mistral?: Record<string, {
|
|
12765
|
+
dimension: number;
|
|
12766
|
+
}> | undefined;
|
|
12162
12767
|
}, {
|
|
12163
12768
|
openai?: Record<string, {
|
|
12164
12769
|
dimension: number;
|
|
@@ -12172,6 +12777,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
12172
12777
|
gemini?: Record<string, {
|
|
12173
12778
|
dimension: number;
|
|
12174
12779
|
}> | undefined;
|
|
12780
|
+
mistral?: Record<string, {
|
|
12781
|
+
dimension: number;
|
|
12782
|
+
}> | undefined;
|
|
12175
12783
|
}>;
|
|
12176
12784
|
type CodebaseIndexModels = z.infer<typeof codebaseIndexModelsSchema>;
|
|
12177
12785
|
/**
|
|
@@ -12184,6 +12792,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
12184
12792
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
12185
12793
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
12186
12794
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
12795
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
12187
12796
|
}, "strip", z.ZodTypeAny, {
|
|
12188
12797
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
12189
12798
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
@@ -12191,6 +12800,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
12191
12800
|
codeIndexQdrantApiKey?: string | undefined;
|
|
12192
12801
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12193
12802
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12803
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
12194
12804
|
}, {
|
|
12195
12805
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
12196
12806
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
@@ -12198,6 +12808,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
12198
12808
|
codeIndexQdrantApiKey?: string | undefined;
|
|
12199
12809
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12200
12810
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12811
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
12201
12812
|
}>;
|
|
12202
12813
|
type CodebaseIndexProvider = z.infer<typeof codebaseIndexProviderSchema>;
|
|
12203
12814
|
|
|
@@ -13307,6 +13918,10 @@ type CustomModePrompts = z.infer<typeof customModePromptsSchema>;
|
|
|
13307
13918
|
*/
|
|
13308
13919
|
declare const customSupportPromptsSchema: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>;
|
|
13309
13920
|
type CustomSupportPrompts = z.infer<typeof customSupportPromptsSchema>;
|
|
13921
|
+
/**
|
|
13922
|
+
* DEFAULT_MODES
|
|
13923
|
+
*/
|
|
13924
|
+
declare const DEFAULT_MODES: readonly ModeConfig[];
|
|
13310
13925
|
|
|
13311
13926
|
/**
|
|
13312
13927
|
* Types related to task sharing functionality
|
|
@@ -13398,7 +14013,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
13398
14013
|
}>;
|
|
13399
14014
|
declare const taskPropertiesSchema: z.ZodObject<{
|
|
13400
14015
|
taskId: z.ZodOptional<z.ZodString>;
|
|
13401
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
14016
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
13402
14017
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13403
14018
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13404
14019
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13419,7 +14034,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
13419
14034
|
pending: number;
|
|
13420
14035
|
}>>;
|
|
13421
14036
|
}, "strip", z.ZodTypeAny, {
|
|
13422
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14037
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13423
14038
|
taskId?: string | undefined;
|
|
13424
14039
|
modelId?: string | undefined;
|
|
13425
14040
|
diffStrategy?: string | undefined;
|
|
@@ -13431,7 +14046,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
13431
14046
|
pending: number;
|
|
13432
14047
|
} | undefined;
|
|
13433
14048
|
}, {
|
|
13434
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14049
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13435
14050
|
taskId?: string | undefined;
|
|
13436
14051
|
modelId?: string | undefined;
|
|
13437
14052
|
diffStrategy?: string | undefined;
|
|
@@ -13461,7 +14076,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
13461
14076
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13462
14077
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
13463
14078
|
taskId: z.ZodOptional<z.ZodString>;
|
|
13464
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
14079
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
13465
14080
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13466
14081
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13467
14082
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13497,7 +14112,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
13497
14112
|
editorName: string;
|
|
13498
14113
|
language: string;
|
|
13499
14114
|
mode: string;
|
|
13500
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14115
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13501
14116
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13502
14117
|
taskId?: string | undefined;
|
|
13503
14118
|
modelId?: string | undefined;
|
|
@@ -13520,7 +14135,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
13520
14135
|
editorName: string;
|
|
13521
14136
|
language: string;
|
|
13522
14137
|
mode: string;
|
|
13523
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14138
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13524
14139
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13525
14140
|
taskId?: string | undefined;
|
|
13526
14141
|
modelId?: string | undefined;
|
|
@@ -13555,7 +14170,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13555
14170
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13556
14171
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
13557
14172
|
taskId: z.ZodOptional<z.ZodString>;
|
|
13558
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
14173
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
13559
14174
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13560
14175
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13561
14176
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13591,7 +14206,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13591
14206
|
editorName: string;
|
|
13592
14207
|
language: string;
|
|
13593
14208
|
mode: string;
|
|
13594
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14209
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13595
14210
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13596
14211
|
taskId?: string | undefined;
|
|
13597
14212
|
modelId?: string | undefined;
|
|
@@ -13614,7 +14229,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13614
14229
|
editorName: string;
|
|
13615
14230
|
language: string;
|
|
13616
14231
|
mode: string;
|
|
13617
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14232
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13618
14233
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13619
14234
|
taskId?: string | undefined;
|
|
13620
14235
|
modelId?: string | undefined;
|
|
@@ -13640,7 +14255,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13640
14255
|
editorName: string;
|
|
13641
14256
|
language: string;
|
|
13642
14257
|
mode: string;
|
|
13643
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14258
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13644
14259
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13645
14260
|
taskId?: string | undefined;
|
|
13646
14261
|
modelId?: string | undefined;
|
|
@@ -13666,7 +14281,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13666
14281
|
editorName: string;
|
|
13667
14282
|
language: string;
|
|
13668
14283
|
mode: string;
|
|
13669
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14284
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13670
14285
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13671
14286
|
taskId?: string | undefined;
|
|
13672
14287
|
modelId?: string | undefined;
|
|
@@ -13775,7 +14390,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13775
14390
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
13776
14391
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13777
14392
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
13778
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
14393
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
13779
14394
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13780
14395
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13781
14396
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13836,7 +14451,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13836
14451
|
language: string;
|
|
13837
14452
|
mode: string;
|
|
13838
14453
|
taskId: string;
|
|
13839
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14454
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13840
14455
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13841
14456
|
modelId?: string | undefined;
|
|
13842
14457
|
diffStrategy?: string | undefined;
|
|
@@ -13883,7 +14498,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13883
14498
|
language: string;
|
|
13884
14499
|
mode: string;
|
|
13885
14500
|
taskId: string;
|
|
13886
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14501
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13887
14502
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13888
14503
|
modelId?: string | undefined;
|
|
13889
14504
|
diffStrategy?: string | undefined;
|
|
@@ -13933,7 +14548,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13933
14548
|
language: string;
|
|
13934
14549
|
mode: string;
|
|
13935
14550
|
taskId: string;
|
|
13936
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14551
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13937
14552
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13938
14553
|
modelId?: string | undefined;
|
|
13939
14554
|
diffStrategy?: string | undefined;
|
|
@@ -13983,7 +14598,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13983
14598
|
language: string;
|
|
13984
14599
|
mode: string;
|
|
13985
14600
|
taskId: string;
|
|
13986
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14601
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
13987
14602
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13988
14603
|
modelId?: string | undefined;
|
|
13989
14604
|
diffStrategy?: string | undefined;
|
|
@@ -14010,7 +14625,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14010
14625
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
14011
14626
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
14012
14627
|
taskId: z.ZodOptional<z.ZodString>;
|
|
14013
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
14628
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface"]>>;
|
|
14014
14629
|
modelId: z.ZodOptional<z.ZodString>;
|
|
14015
14630
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
14016
14631
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14048,7 +14663,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14048
14663
|
mode: string;
|
|
14049
14664
|
inputTokens: number;
|
|
14050
14665
|
outputTokens: number;
|
|
14051
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14666
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
14052
14667
|
cost?: number | undefined;
|
|
14053
14668
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14054
14669
|
taskId?: string | undefined;
|
|
@@ -14076,7 +14691,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14076
14691
|
mode: string;
|
|
14077
14692
|
inputTokens: number;
|
|
14078
14693
|
outputTokens: number;
|
|
14079
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14694
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
14080
14695
|
cost?: number | undefined;
|
|
14081
14696
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14082
14697
|
taskId?: string | undefined;
|
|
@@ -14107,7 +14722,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14107
14722
|
mode: string;
|
|
14108
14723
|
inputTokens: number;
|
|
14109
14724
|
outputTokens: number;
|
|
14110
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14725
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
14111
14726
|
cost?: number | undefined;
|
|
14112
14727
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14113
14728
|
taskId?: string | undefined;
|
|
@@ -14138,7 +14753,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14138
14753
|
mode: string;
|
|
14139
14754
|
inputTokens: number;
|
|
14140
14755
|
outputTokens: number;
|
|
14141
|
-
apiProvider?: "openai" | "ollama" | "gemini" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "
|
|
14756
|
+
apiProvider?: "openai" | "ollama" | "gemini" | "mistral" | "anthropic" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | undefined;
|
|
14142
14757
|
cost?: number | undefined;
|
|
14143
14758
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14144
14759
|
taskId?: string | undefined;
|
|
@@ -14299,4 +14914,4 @@ declare const todoItemSchema: z.ZodObject<{
|
|
|
14299
14914
|
}>;
|
|
14300
14915
|
type TodoItem = z.infer<typeof todoItemSchema>;
|
|
14301
14916
|
|
|
14302
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudOrganization, type CloudOrganizationMembership, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, type DeepSeekModelId, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, type HistoryItem, type InstallMarketplaceItemOptions, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type IsSubtask, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODEL_ID_KEYS, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ReasoningEffort, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SecretState, type ShareResponse, type ShareVisibility, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, experimentIds, experimentIdsSchema, experimentsSchema, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, installMarketplaceItemOptionsSchema, ipcMessageSchema, isGlobalStateKey, isLanguage, isModelParameter, isSecretStateKey, isSubtaskSchema, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, shareResponseSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|
|
14917
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudOrganization, type CloudOrganizationMembership, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, type DeepSeekModelId, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, type HistoryItem, type InstallMarketplaceItemOptions, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type IsSubtask, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ReasoningEffort, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SecretState, type ShareResponse, type ShareVisibility, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, experimentIds, experimentIdsSchema, experimentsSchema, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, installMarketplaceItemOptionsSchema, ipcMessageSchema, isGlobalStateKey, isLanguage, isModelParameter, isSecretStateKey, isSubtaskSchema, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, shareResponseSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|