@roo-code/types 1.36.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 +148 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +709 -116
- package/dist/index.d.ts +709 -116
- package/dist/index.js +142 -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>;
|
|
@@ -3911,6 +4149,16 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3911
4149
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
3912
4150
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
3913
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>;
|
|
3914
4162
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3915
4163
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
3916
4164
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3927,6 +4175,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3927
4175
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
3928
4176
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
3929
4177
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
4178
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
3930
4179
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
3931
4180
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
3932
4181
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3936,6 +4185,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3936
4185
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
3937
4186
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
3938
4187
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
4188
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3939
4189
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
3940
4190
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3941
4191
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3978,6 +4228,13 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3978
4228
|
}, {
|
|
3979
4229
|
dimension: number;
|
|
3980
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
|
+
}>>>;
|
|
3981
4238
|
}, "strip", z.ZodTypeAny, {
|
|
3982
4239
|
openai?: Record<string, {
|
|
3983
4240
|
dimension: number;
|
|
@@ -3991,6 +4248,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3991
4248
|
gemini?: Record<string, {
|
|
3992
4249
|
dimension: number;
|
|
3993
4250
|
}> | undefined;
|
|
4251
|
+
mistral?: Record<string, {
|
|
4252
|
+
dimension: number;
|
|
4253
|
+
}> | undefined;
|
|
3994
4254
|
}, {
|
|
3995
4255
|
openai?: Record<string, {
|
|
3996
4256
|
dimension: number;
|
|
@@ -4004,11 +4264,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4004
4264
|
gemini?: Record<string, {
|
|
4005
4265
|
dimension: number;
|
|
4006
4266
|
}> | undefined;
|
|
4267
|
+
mistral?: Record<string, {
|
|
4268
|
+
dimension: number;
|
|
4269
|
+
}> | undefined;
|
|
4007
4270
|
}>>;
|
|
4008
4271
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
4009
4272
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4010
4273
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
4011
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
4274
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
4012
4275
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4013
4276
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
4014
4277
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4019,7 +4282,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4019
4282
|
}, "strip", z.ZodTypeAny, {
|
|
4020
4283
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4021
4284
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4022
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4285
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4023
4286
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4024
4287
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4025
4288
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4030,7 +4293,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4030
4293
|
}, {
|
|
4031
4294
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4032
4295
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4033
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4296
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4034
4297
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4035
4298
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4036
4299
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4141,7 +4404,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4141
4404
|
listApiConfigMeta?: {
|
|
4142
4405
|
name: string;
|
|
4143
4406
|
id: string;
|
|
4144
|
-
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;
|
|
4145
4408
|
}[] | undefined;
|
|
4146
4409
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4147
4410
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4186,6 +4449,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4186
4449
|
autoCondenseContext?: boolean | undefined;
|
|
4187
4450
|
autoCondenseContextPercent?: number | undefined;
|
|
4188
4451
|
maxConcurrentFileReads?: number | undefined;
|
|
4452
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
4453
|
+
maxDiagnosticMessages?: number | undefined;
|
|
4189
4454
|
browserToolEnabled?: boolean | undefined;
|
|
4190
4455
|
browserViewportSize?: string | undefined;
|
|
4191
4456
|
screenshotQuality?: number | undefined;
|
|
@@ -4202,6 +4467,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4202
4467
|
showRooIgnoredFiles?: boolean | undefined;
|
|
4203
4468
|
maxReadFileLine?: number | undefined;
|
|
4204
4469
|
terminalOutputLineLimit?: number | undefined;
|
|
4470
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
4205
4471
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
4206
4472
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
4207
4473
|
terminalCommandDelay?: number | undefined;
|
|
@@ -4211,6 +4477,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4211
4477
|
terminalZshP10k?: boolean | undefined;
|
|
4212
4478
|
terminalZdotdir?: boolean | undefined;
|
|
4213
4479
|
terminalCompressProgressBar?: boolean | undefined;
|
|
4480
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
4214
4481
|
experiments?: {
|
|
4215
4482
|
powerSteering?: boolean | undefined;
|
|
4216
4483
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -4228,11 +4495,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4228
4495
|
gemini?: Record<string, {
|
|
4229
4496
|
dimension: number;
|
|
4230
4497
|
}> | undefined;
|
|
4498
|
+
mistral?: Record<string, {
|
|
4499
|
+
dimension: number;
|
|
4500
|
+
}> | undefined;
|
|
4231
4501
|
} | undefined;
|
|
4232
4502
|
codebaseIndexConfig?: {
|
|
4233
4503
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4234
4504
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4235
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4505
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4236
4506
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4237
4507
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4238
4508
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4282,7 +4552,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4282
4552
|
listApiConfigMeta?: {
|
|
4283
4553
|
name: string;
|
|
4284
4554
|
id: string;
|
|
4285
|
-
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;
|
|
4286
4556
|
}[] | undefined;
|
|
4287
4557
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
4288
4558
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -4327,6 +4597,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4327
4597
|
autoCondenseContext?: boolean | undefined;
|
|
4328
4598
|
autoCondenseContextPercent?: number | undefined;
|
|
4329
4599
|
maxConcurrentFileReads?: number | undefined;
|
|
4600
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
4601
|
+
maxDiagnosticMessages?: number | undefined;
|
|
4330
4602
|
browserToolEnabled?: boolean | undefined;
|
|
4331
4603
|
browserViewportSize?: string | undefined;
|
|
4332
4604
|
screenshotQuality?: number | undefined;
|
|
@@ -4343,6 +4615,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4343
4615
|
showRooIgnoredFiles?: boolean | undefined;
|
|
4344
4616
|
maxReadFileLine?: number | undefined;
|
|
4345
4617
|
terminalOutputLineLimit?: number | undefined;
|
|
4618
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
4346
4619
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
4347
4620
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
4348
4621
|
terminalCommandDelay?: number | undefined;
|
|
@@ -4352,6 +4625,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4352
4625
|
terminalZshP10k?: boolean | undefined;
|
|
4353
4626
|
terminalZdotdir?: boolean | undefined;
|
|
4354
4627
|
terminalCompressProgressBar?: boolean | undefined;
|
|
4628
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
4355
4629
|
experiments?: {
|
|
4356
4630
|
powerSteering?: boolean | undefined;
|
|
4357
4631
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -4369,11 +4643,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4369
4643
|
gemini?: Record<string, {
|
|
4370
4644
|
dimension: number;
|
|
4371
4645
|
}> | undefined;
|
|
4646
|
+
mistral?: Record<string, {
|
|
4647
|
+
dimension: number;
|
|
4648
|
+
}> | undefined;
|
|
4372
4649
|
} | undefined;
|
|
4373
4650
|
codebaseIndexConfig?: {
|
|
4374
4651
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4375
4652
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4376
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
4653
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4377
4654
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4378
4655
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4379
4656
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4401,7 +4678,7 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
4401
4678
|
lastModeImportPath?: string | undefined;
|
|
4402
4679
|
}>;
|
|
4403
4680
|
type GlobalSettings = z.infer<typeof globalSettingsSchema>;
|
|
4404
|
-
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", "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"];
|
|
4405
4682
|
/**
|
|
4406
4683
|
* RooCodeSettings
|
|
4407
4684
|
*/
|
|
@@ -4412,7 +4689,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4412
4689
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
4413
4690
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
4414
4691
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
4692
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
4415
4693
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
4694
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4416
4695
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4417
4696
|
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
4418
4697
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4424,6 +4703,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4424
4703
|
litellmModelId: z.ZodOptional<z.ZodString>;
|
|
4425
4704
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
4426
4705
|
chutesApiKey: z.ZodOptional<z.ZodString>;
|
|
4706
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
4707
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
4708
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
4427
4709
|
groqApiKey: z.ZodOptional<z.ZodString>;
|
|
4428
4710
|
xaiApiKey: z.ZodOptional<z.ZodString>;
|
|
4429
4711
|
fakeAi: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -4431,6 +4713,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4431
4713
|
requestyModelId: z.ZodOptional<z.ZodString>;
|
|
4432
4714
|
unboundApiKey: z.ZodOptional<z.ZodString>;
|
|
4433
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>;
|
|
4434
4718
|
deepSeekBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4435
4719
|
deepSeekApiKey: z.ZodOptional<z.ZodString>;
|
|
4436
4720
|
mistralApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -4595,21 +4879,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4595
4879
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
4596
4880
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4597
4881
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
4598
|
-
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"]>>;
|
|
4599
4883
|
} & {
|
|
4600
4884
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
4601
4885
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4602
4886
|
id: z.ZodString;
|
|
4603
4887
|
name: z.ZodString;
|
|
4604
|
-
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"]>>;
|
|
4605
4889
|
}, "strip", z.ZodTypeAny, {
|
|
4606
4890
|
name: string;
|
|
4607
4891
|
id: string;
|
|
4608
|
-
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;
|
|
4609
4893
|
}, {
|
|
4610
4894
|
name: string;
|
|
4611
4895
|
id: string;
|
|
4612
|
-
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;
|
|
4613
4897
|
}>, "many">>;
|
|
4614
4898
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
4615
4899
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -4679,6 +4963,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4679
4963
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
4680
4964
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
4681
4965
|
maxConcurrentFileReads: z.ZodOptional<z.ZodNumber>;
|
|
4966
|
+
includeDiagnosticMessages: z.ZodOptional<z.ZodBoolean>;
|
|
4967
|
+
maxDiagnosticMessages: z.ZodOptional<z.ZodNumber>;
|
|
4682
4968
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4683
4969
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
4684
4970
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4695,6 +4981,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4695
4981
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
4696
4982
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
4697
4983
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
4984
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
4698
4985
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
4699
4986
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
4700
4987
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4704,6 +4991,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4704
4991
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
4705
4992
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
4706
4993
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
4994
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4707
4995
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
4708
4996
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4709
4997
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4746,6 +5034,13 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4746
5034
|
}, {
|
|
4747
5035
|
dimension: number;
|
|
4748
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
|
+
}>>>;
|
|
4749
5044
|
}, "strip", z.ZodTypeAny, {
|
|
4750
5045
|
openai?: Record<string, {
|
|
4751
5046
|
dimension: number;
|
|
@@ -4759,6 +5054,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4759
5054
|
gemini?: Record<string, {
|
|
4760
5055
|
dimension: number;
|
|
4761
5056
|
}> | undefined;
|
|
5057
|
+
mistral?: Record<string, {
|
|
5058
|
+
dimension: number;
|
|
5059
|
+
}> | undefined;
|
|
4762
5060
|
}, {
|
|
4763
5061
|
openai?: Record<string, {
|
|
4764
5062
|
dimension: number;
|
|
@@ -4772,11 +5070,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4772
5070
|
gemini?: Record<string, {
|
|
4773
5071
|
dimension: number;
|
|
4774
5072
|
}> | undefined;
|
|
5073
|
+
mistral?: Record<string, {
|
|
5074
|
+
dimension: number;
|
|
5075
|
+
}> | undefined;
|
|
4775
5076
|
}>>;
|
|
4776
5077
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
4777
5078
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4778
5079
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
4779
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
5080
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
4780
5081
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4781
5082
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
4782
5083
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4787,7 +5088,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4787
5088
|
}, "strip", z.ZodTypeAny, {
|
|
4788
5089
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4789
5090
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4790
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5091
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4791
5092
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4792
5093
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4793
5094
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4798,7 +5099,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4798
5099
|
}, {
|
|
4799
5100
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4800
5101
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4801
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5102
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
4802
5103
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4803
5104
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4804
5105
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -4893,9 +5194,11 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4893
5194
|
codeIndexQdrantApiKey?: string | undefined;
|
|
4894
5195
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4895
5196
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
4896
|
-
|
|
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;
|
|
4897
5199
|
includeMaxTokens?: boolean | undefined;
|
|
4898
5200
|
diffEnabled?: boolean | undefined;
|
|
5201
|
+
todoListEnabled?: boolean | undefined;
|
|
4899
5202
|
fuzzyMatchThreshold?: number | undefined;
|
|
4900
5203
|
modelTemperature?: number | null | undefined;
|
|
4901
5204
|
rateLimitSeconds?: number | undefined;
|
|
@@ -4992,6 +5295,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4992
5295
|
mistralCodestralUrl?: string | undefined;
|
|
4993
5296
|
deepSeekBaseUrl?: string | undefined;
|
|
4994
5297
|
deepSeekApiKey?: string | undefined;
|
|
5298
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
5299
|
+
moonshotApiKey?: string | undefined;
|
|
4995
5300
|
unboundApiKey?: string | undefined;
|
|
4996
5301
|
unboundModelId?: string | undefined;
|
|
4997
5302
|
requestyApiKey?: string | undefined;
|
|
@@ -4999,6 +5304,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4999
5304
|
fakeAi?: unknown;
|
|
5000
5305
|
xaiApiKey?: string | undefined;
|
|
5001
5306
|
groqApiKey?: string | undefined;
|
|
5307
|
+
huggingFaceApiKey?: string | undefined;
|
|
5308
|
+
huggingFaceModelId?: string | undefined;
|
|
5309
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
5002
5310
|
chutesApiKey?: string | undefined;
|
|
5003
5311
|
litellmBaseUrl?: string | undefined;
|
|
5004
5312
|
litellmApiKey?: string | undefined;
|
|
@@ -5023,7 +5331,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5023
5331
|
listApiConfigMeta?: {
|
|
5024
5332
|
name: string;
|
|
5025
5333
|
id: string;
|
|
5026
|
-
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;
|
|
5027
5335
|
}[] | undefined;
|
|
5028
5336
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
5029
5337
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -5068,6 +5376,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5068
5376
|
autoCondenseContext?: boolean | undefined;
|
|
5069
5377
|
autoCondenseContextPercent?: number | undefined;
|
|
5070
5378
|
maxConcurrentFileReads?: number | undefined;
|
|
5379
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
5380
|
+
maxDiagnosticMessages?: number | undefined;
|
|
5071
5381
|
browserToolEnabled?: boolean | undefined;
|
|
5072
5382
|
browserViewportSize?: string | undefined;
|
|
5073
5383
|
screenshotQuality?: number | undefined;
|
|
@@ -5084,6 +5394,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5084
5394
|
showRooIgnoredFiles?: boolean | undefined;
|
|
5085
5395
|
maxReadFileLine?: number | undefined;
|
|
5086
5396
|
terminalOutputLineLimit?: number | undefined;
|
|
5397
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
5087
5398
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
5088
5399
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
5089
5400
|
terminalCommandDelay?: number | undefined;
|
|
@@ -5093,6 +5404,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5093
5404
|
terminalZshP10k?: boolean | undefined;
|
|
5094
5405
|
terminalZdotdir?: boolean | undefined;
|
|
5095
5406
|
terminalCompressProgressBar?: boolean | undefined;
|
|
5407
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
5096
5408
|
experiments?: {
|
|
5097
5409
|
powerSteering?: boolean | undefined;
|
|
5098
5410
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -5110,11 +5422,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5110
5422
|
gemini?: Record<string, {
|
|
5111
5423
|
dimension: number;
|
|
5112
5424
|
}> | undefined;
|
|
5425
|
+
mistral?: Record<string, {
|
|
5426
|
+
dimension: number;
|
|
5427
|
+
}> | undefined;
|
|
5113
5428
|
} | undefined;
|
|
5114
5429
|
codebaseIndexConfig?: {
|
|
5115
5430
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5116
5431
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5117
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5432
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
5118
5433
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5119
5434
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5120
5435
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -5148,9 +5463,11 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5148
5463
|
codeIndexQdrantApiKey?: string | undefined;
|
|
5149
5464
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
5150
5465
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
5151
|
-
|
|
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;
|
|
5152
5468
|
includeMaxTokens?: boolean | undefined;
|
|
5153
5469
|
diffEnabled?: boolean | undefined;
|
|
5470
|
+
todoListEnabled?: boolean | undefined;
|
|
5154
5471
|
fuzzyMatchThreshold?: number | undefined;
|
|
5155
5472
|
modelTemperature?: number | null | undefined;
|
|
5156
5473
|
rateLimitSeconds?: number | undefined;
|
|
@@ -5247,6 +5564,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5247
5564
|
mistralCodestralUrl?: string | undefined;
|
|
5248
5565
|
deepSeekBaseUrl?: string | undefined;
|
|
5249
5566
|
deepSeekApiKey?: string | undefined;
|
|
5567
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
5568
|
+
moonshotApiKey?: string | undefined;
|
|
5250
5569
|
unboundApiKey?: string | undefined;
|
|
5251
5570
|
unboundModelId?: string | undefined;
|
|
5252
5571
|
requestyApiKey?: string | undefined;
|
|
@@ -5254,6 +5573,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5254
5573
|
fakeAi?: unknown;
|
|
5255
5574
|
xaiApiKey?: string | undefined;
|
|
5256
5575
|
groqApiKey?: string | undefined;
|
|
5576
|
+
huggingFaceApiKey?: string | undefined;
|
|
5577
|
+
huggingFaceModelId?: string | undefined;
|
|
5578
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
5257
5579
|
chutesApiKey?: string | undefined;
|
|
5258
5580
|
litellmBaseUrl?: string | undefined;
|
|
5259
5581
|
litellmApiKey?: string | undefined;
|
|
@@ -5278,7 +5600,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5278
5600
|
listApiConfigMeta?: {
|
|
5279
5601
|
name: string;
|
|
5280
5602
|
id: string;
|
|
5281
|
-
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;
|
|
5282
5604
|
}[] | undefined;
|
|
5283
5605
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
5284
5606
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -5323,6 +5645,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5323
5645
|
autoCondenseContext?: boolean | undefined;
|
|
5324
5646
|
autoCondenseContextPercent?: number | undefined;
|
|
5325
5647
|
maxConcurrentFileReads?: number | undefined;
|
|
5648
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
5649
|
+
maxDiagnosticMessages?: number | undefined;
|
|
5326
5650
|
browserToolEnabled?: boolean | undefined;
|
|
5327
5651
|
browserViewportSize?: string | undefined;
|
|
5328
5652
|
screenshotQuality?: number | undefined;
|
|
@@ -5339,6 +5663,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5339
5663
|
showRooIgnoredFiles?: boolean | undefined;
|
|
5340
5664
|
maxReadFileLine?: number | undefined;
|
|
5341
5665
|
terminalOutputLineLimit?: number | undefined;
|
|
5666
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
5342
5667
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
5343
5668
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
5344
5669
|
terminalCommandDelay?: number | undefined;
|
|
@@ -5348,6 +5673,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5348
5673
|
terminalZshP10k?: boolean | undefined;
|
|
5349
5674
|
terminalZdotdir?: boolean | undefined;
|
|
5350
5675
|
terminalCompressProgressBar?: boolean | undefined;
|
|
5676
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
5351
5677
|
experiments?: {
|
|
5352
5678
|
powerSteering?: boolean | undefined;
|
|
5353
5679
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -5365,11 +5691,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
5365
5691
|
gemini?: Record<string, {
|
|
5366
5692
|
dimension: number;
|
|
5367
5693
|
}> | undefined;
|
|
5694
|
+
mistral?: Record<string, {
|
|
5695
|
+
dimension: number;
|
|
5696
|
+
}> | undefined;
|
|
5368
5697
|
} | undefined;
|
|
5369
5698
|
codebaseIndexConfig?: {
|
|
5370
5699
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5371
5700
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5372
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
5701
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
5373
5702
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5374
5703
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5375
5704
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -5400,7 +5729,7 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
5400
5729
|
/**
|
|
5401
5730
|
* SecretState
|
|
5402
5731
|
*/
|
|
5403
|
-
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"];
|
|
5404
5733
|
type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
|
|
5405
5734
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
5406
5735
|
/**
|
|
@@ -6057,7 +6386,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6057
6386
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
6058
6387
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
6059
6388
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
6389
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
6060
6390
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
6391
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6061
6392
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6062
6393
|
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
6063
6394
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6069,6 +6400,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6069
6400
|
litellmModelId: z.ZodOptional<z.ZodString>;
|
|
6070
6401
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6071
6402
|
chutesApiKey: z.ZodOptional<z.ZodString>;
|
|
6403
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
6404
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
6405
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
6072
6406
|
groqApiKey: z.ZodOptional<z.ZodString>;
|
|
6073
6407
|
xaiApiKey: z.ZodOptional<z.ZodString>;
|
|
6074
6408
|
fakeAi: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -6076,6 +6410,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6076
6410
|
requestyModelId: z.ZodOptional<z.ZodString>;
|
|
6077
6411
|
unboundApiKey: z.ZodOptional<z.ZodString>;
|
|
6078
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>;
|
|
6079
6415
|
deepSeekBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6080
6416
|
deepSeekApiKey: z.ZodOptional<z.ZodString>;
|
|
6081
6417
|
mistralApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -6240,21 +6576,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6240
6576
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
6241
6577
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6242
6578
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
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"]>>;
|
|
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"]>>;
|
|
6244
6580
|
} & {
|
|
6245
6581
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
6246
6582
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6247
6583
|
id: z.ZodString;
|
|
6248
6584
|
name: z.ZodString;
|
|
6249
|
-
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"]>>;
|
|
6250
6586
|
}, "strip", z.ZodTypeAny, {
|
|
6251
6587
|
name: string;
|
|
6252
6588
|
id: string;
|
|
6253
|
-
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;
|
|
6254
6590
|
}, {
|
|
6255
6591
|
name: string;
|
|
6256
6592
|
id: string;
|
|
6257
|
-
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;
|
|
6258
6594
|
}>, "many">>;
|
|
6259
6595
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6260
6596
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6324,6 +6660,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6324
6660
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
6325
6661
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
6326
6662
|
maxConcurrentFileReads: z.ZodOptional<z.ZodNumber>;
|
|
6663
|
+
includeDiagnosticMessages: z.ZodOptional<z.ZodBoolean>;
|
|
6664
|
+
maxDiagnosticMessages: z.ZodOptional<z.ZodNumber>;
|
|
6327
6665
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6328
6666
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
6329
6667
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6340,6 +6678,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6340
6678
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
6341
6679
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
6342
6680
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
6681
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
6343
6682
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
6344
6683
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
6345
6684
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6349,6 +6688,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6349
6688
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
6350
6689
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
6351
6690
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
6691
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6352
6692
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
6353
6693
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6354
6694
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6391,6 +6731,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6391
6731
|
}, {
|
|
6392
6732
|
dimension: number;
|
|
6393
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
|
+
}>>>;
|
|
6394
6741
|
}, "strip", z.ZodTypeAny, {
|
|
6395
6742
|
openai?: Record<string, {
|
|
6396
6743
|
dimension: number;
|
|
@@ -6404,6 +6751,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6404
6751
|
gemini?: Record<string, {
|
|
6405
6752
|
dimension: number;
|
|
6406
6753
|
}> | undefined;
|
|
6754
|
+
mistral?: Record<string, {
|
|
6755
|
+
dimension: number;
|
|
6756
|
+
}> | undefined;
|
|
6407
6757
|
}, {
|
|
6408
6758
|
openai?: Record<string, {
|
|
6409
6759
|
dimension: number;
|
|
@@ -6417,11 +6767,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6417
6767
|
gemini?: Record<string, {
|
|
6418
6768
|
dimension: number;
|
|
6419
6769
|
}> | undefined;
|
|
6770
|
+
mistral?: Record<string, {
|
|
6771
|
+
dimension: number;
|
|
6772
|
+
}> | undefined;
|
|
6420
6773
|
}>>;
|
|
6421
6774
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
6422
6775
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6423
6776
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
6424
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
6777
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
6425
6778
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6426
6779
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
6427
6780
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6432,7 +6785,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6432
6785
|
}, "strip", z.ZodTypeAny, {
|
|
6433
6786
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6434
6787
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6435
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6788
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6436
6789
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6437
6790
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6438
6791
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6443,7 +6796,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6443
6796
|
}, {
|
|
6444
6797
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6445
6798
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6446
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
6799
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6447
6800
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6448
6801
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6449
6802
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6538,9 +6891,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6538
6891
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6539
6892
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6540
6893
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
6541
|
-
|
|
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;
|
|
6542
6896
|
includeMaxTokens?: boolean | undefined;
|
|
6543
6897
|
diffEnabled?: boolean | undefined;
|
|
6898
|
+
todoListEnabled?: boolean | undefined;
|
|
6544
6899
|
fuzzyMatchThreshold?: number | undefined;
|
|
6545
6900
|
modelTemperature?: number | null | undefined;
|
|
6546
6901
|
rateLimitSeconds?: number | undefined;
|
|
@@ -6637,6 +6992,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6637
6992
|
mistralCodestralUrl?: string | undefined;
|
|
6638
6993
|
deepSeekBaseUrl?: string | undefined;
|
|
6639
6994
|
deepSeekApiKey?: string | undefined;
|
|
6995
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
6996
|
+
moonshotApiKey?: string | undefined;
|
|
6640
6997
|
unboundApiKey?: string | undefined;
|
|
6641
6998
|
unboundModelId?: string | undefined;
|
|
6642
6999
|
requestyApiKey?: string | undefined;
|
|
@@ -6644,6 +7001,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6644
7001
|
fakeAi?: unknown;
|
|
6645
7002
|
xaiApiKey?: string | undefined;
|
|
6646
7003
|
groqApiKey?: string | undefined;
|
|
7004
|
+
huggingFaceApiKey?: string | undefined;
|
|
7005
|
+
huggingFaceModelId?: string | undefined;
|
|
7006
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
6647
7007
|
chutesApiKey?: string | undefined;
|
|
6648
7008
|
litellmBaseUrl?: string | undefined;
|
|
6649
7009
|
litellmApiKey?: string | undefined;
|
|
@@ -6668,7 +7028,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6668
7028
|
listApiConfigMeta?: {
|
|
6669
7029
|
name: string;
|
|
6670
7030
|
id: string;
|
|
6671
|
-
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;
|
|
6672
7032
|
}[] | undefined;
|
|
6673
7033
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6674
7034
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6713,6 +7073,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6713
7073
|
autoCondenseContext?: boolean | undefined;
|
|
6714
7074
|
autoCondenseContextPercent?: number | undefined;
|
|
6715
7075
|
maxConcurrentFileReads?: number | undefined;
|
|
7076
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7077
|
+
maxDiagnosticMessages?: number | undefined;
|
|
6716
7078
|
browserToolEnabled?: boolean | undefined;
|
|
6717
7079
|
browserViewportSize?: string | undefined;
|
|
6718
7080
|
screenshotQuality?: number | undefined;
|
|
@@ -6729,6 +7091,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6729
7091
|
showRooIgnoredFiles?: boolean | undefined;
|
|
6730
7092
|
maxReadFileLine?: number | undefined;
|
|
6731
7093
|
terminalOutputLineLimit?: number | undefined;
|
|
7094
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
6732
7095
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
6733
7096
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
6734
7097
|
terminalCommandDelay?: number | undefined;
|
|
@@ -6738,6 +7101,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6738
7101
|
terminalZshP10k?: boolean | undefined;
|
|
6739
7102
|
terminalZdotdir?: boolean | undefined;
|
|
6740
7103
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7104
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
6741
7105
|
experiments?: {
|
|
6742
7106
|
powerSteering?: boolean | undefined;
|
|
6743
7107
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -6755,11 +7119,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6755
7119
|
gemini?: Record<string, {
|
|
6756
7120
|
dimension: number;
|
|
6757
7121
|
}> | undefined;
|
|
7122
|
+
mistral?: Record<string, {
|
|
7123
|
+
dimension: number;
|
|
7124
|
+
}> | undefined;
|
|
6758
7125
|
} | undefined;
|
|
6759
7126
|
codebaseIndexConfig?: {
|
|
6760
7127
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6761
7128
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6762
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7129
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
6763
7130
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6764
7131
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6765
7132
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -6793,9 +7160,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6793
7160
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6794
7161
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6795
7162
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
6796
|
-
|
|
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;
|
|
6797
7165
|
includeMaxTokens?: boolean | undefined;
|
|
6798
7166
|
diffEnabled?: boolean | undefined;
|
|
7167
|
+
todoListEnabled?: boolean | undefined;
|
|
6799
7168
|
fuzzyMatchThreshold?: number | undefined;
|
|
6800
7169
|
modelTemperature?: number | null | undefined;
|
|
6801
7170
|
rateLimitSeconds?: number | undefined;
|
|
@@ -6892,6 +7261,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6892
7261
|
mistralCodestralUrl?: string | undefined;
|
|
6893
7262
|
deepSeekBaseUrl?: string | undefined;
|
|
6894
7263
|
deepSeekApiKey?: string | undefined;
|
|
7264
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
7265
|
+
moonshotApiKey?: string | undefined;
|
|
6895
7266
|
unboundApiKey?: string | undefined;
|
|
6896
7267
|
unboundModelId?: string | undefined;
|
|
6897
7268
|
requestyApiKey?: string | undefined;
|
|
@@ -6899,6 +7270,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6899
7270
|
fakeAi?: unknown;
|
|
6900
7271
|
xaiApiKey?: string | undefined;
|
|
6901
7272
|
groqApiKey?: string | undefined;
|
|
7273
|
+
huggingFaceApiKey?: string | undefined;
|
|
7274
|
+
huggingFaceModelId?: string | undefined;
|
|
7275
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
6902
7276
|
chutesApiKey?: string | undefined;
|
|
6903
7277
|
litellmBaseUrl?: string | undefined;
|
|
6904
7278
|
litellmApiKey?: string | undefined;
|
|
@@ -6923,7 +7297,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6923
7297
|
listApiConfigMeta?: {
|
|
6924
7298
|
name: string;
|
|
6925
7299
|
id: string;
|
|
6926
|
-
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;
|
|
6927
7301
|
}[] | undefined;
|
|
6928
7302
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6929
7303
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6968,6 +7342,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6968
7342
|
autoCondenseContext?: boolean | undefined;
|
|
6969
7343
|
autoCondenseContextPercent?: number | undefined;
|
|
6970
7344
|
maxConcurrentFileReads?: number | undefined;
|
|
7345
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7346
|
+
maxDiagnosticMessages?: number | undefined;
|
|
6971
7347
|
browserToolEnabled?: boolean | undefined;
|
|
6972
7348
|
browserViewportSize?: string | undefined;
|
|
6973
7349
|
screenshotQuality?: number | undefined;
|
|
@@ -6984,6 +7360,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6984
7360
|
showRooIgnoredFiles?: boolean | undefined;
|
|
6985
7361
|
maxReadFileLine?: number | undefined;
|
|
6986
7362
|
terminalOutputLineLimit?: number | undefined;
|
|
7363
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
6987
7364
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
6988
7365
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
6989
7366
|
terminalCommandDelay?: number | undefined;
|
|
@@ -6993,6 +7370,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6993
7370
|
terminalZshP10k?: boolean | undefined;
|
|
6994
7371
|
terminalZdotdir?: boolean | undefined;
|
|
6995
7372
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7373
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
6996
7374
|
experiments?: {
|
|
6997
7375
|
powerSteering?: boolean | undefined;
|
|
6998
7376
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7010,11 +7388,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7010
7388
|
gemini?: Record<string, {
|
|
7011
7389
|
dimension: number;
|
|
7012
7390
|
}> | undefined;
|
|
7391
|
+
mistral?: Record<string, {
|
|
7392
|
+
dimension: number;
|
|
7393
|
+
}> | undefined;
|
|
7013
7394
|
} | undefined;
|
|
7014
7395
|
codebaseIndexConfig?: {
|
|
7015
7396
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7016
7397
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7017
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7398
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7018
7399
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7019
7400
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7020
7401
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7054,9 +7435,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7054
7435
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7055
7436
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7056
7437
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7057
|
-
|
|
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;
|
|
7058
7440
|
includeMaxTokens?: boolean | undefined;
|
|
7059
7441
|
diffEnabled?: boolean | undefined;
|
|
7442
|
+
todoListEnabled?: boolean | undefined;
|
|
7060
7443
|
fuzzyMatchThreshold?: number | undefined;
|
|
7061
7444
|
modelTemperature?: number | null | undefined;
|
|
7062
7445
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7153,6 +7536,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7153
7536
|
mistralCodestralUrl?: string | undefined;
|
|
7154
7537
|
deepSeekBaseUrl?: string | undefined;
|
|
7155
7538
|
deepSeekApiKey?: string | undefined;
|
|
7539
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
7540
|
+
moonshotApiKey?: string | undefined;
|
|
7156
7541
|
unboundApiKey?: string | undefined;
|
|
7157
7542
|
unboundModelId?: string | undefined;
|
|
7158
7543
|
requestyApiKey?: string | undefined;
|
|
@@ -7160,6 +7545,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7160
7545
|
fakeAi?: unknown;
|
|
7161
7546
|
xaiApiKey?: string | undefined;
|
|
7162
7547
|
groqApiKey?: string | undefined;
|
|
7548
|
+
huggingFaceApiKey?: string | undefined;
|
|
7549
|
+
huggingFaceModelId?: string | undefined;
|
|
7550
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7163
7551
|
chutesApiKey?: string | undefined;
|
|
7164
7552
|
litellmBaseUrl?: string | undefined;
|
|
7165
7553
|
litellmApiKey?: string | undefined;
|
|
@@ -7184,7 +7572,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7184
7572
|
listApiConfigMeta?: {
|
|
7185
7573
|
name: string;
|
|
7186
7574
|
id: string;
|
|
7187
|
-
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;
|
|
7188
7576
|
}[] | undefined;
|
|
7189
7577
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7190
7578
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7229,6 +7617,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7229
7617
|
autoCondenseContext?: boolean | undefined;
|
|
7230
7618
|
autoCondenseContextPercent?: number | undefined;
|
|
7231
7619
|
maxConcurrentFileReads?: number | undefined;
|
|
7620
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7621
|
+
maxDiagnosticMessages?: number | undefined;
|
|
7232
7622
|
browserToolEnabled?: boolean | undefined;
|
|
7233
7623
|
browserViewportSize?: string | undefined;
|
|
7234
7624
|
screenshotQuality?: number | undefined;
|
|
@@ -7245,6 +7635,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7245
7635
|
showRooIgnoredFiles?: boolean | undefined;
|
|
7246
7636
|
maxReadFileLine?: number | undefined;
|
|
7247
7637
|
terminalOutputLineLimit?: number | undefined;
|
|
7638
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
7248
7639
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
7249
7640
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
7250
7641
|
terminalCommandDelay?: number | undefined;
|
|
@@ -7254,6 +7645,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7254
7645
|
terminalZshP10k?: boolean | undefined;
|
|
7255
7646
|
terminalZdotdir?: boolean | undefined;
|
|
7256
7647
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7648
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
7257
7649
|
experiments?: {
|
|
7258
7650
|
powerSteering?: boolean | undefined;
|
|
7259
7651
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7271,11 +7663,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7271
7663
|
gemini?: Record<string, {
|
|
7272
7664
|
dimension: number;
|
|
7273
7665
|
}> | undefined;
|
|
7666
|
+
mistral?: Record<string, {
|
|
7667
|
+
dimension: number;
|
|
7668
|
+
}> | undefined;
|
|
7274
7669
|
} | undefined;
|
|
7275
7670
|
codebaseIndexConfig?: {
|
|
7276
7671
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7277
7672
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7278
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7673
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7279
7674
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7280
7675
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7281
7676
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7314,9 +7709,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7314
7709
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7315
7710
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7316
7711
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7317
|
-
|
|
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;
|
|
7318
7714
|
includeMaxTokens?: boolean | undefined;
|
|
7319
7715
|
diffEnabled?: boolean | undefined;
|
|
7716
|
+
todoListEnabled?: boolean | undefined;
|
|
7320
7717
|
fuzzyMatchThreshold?: number | undefined;
|
|
7321
7718
|
modelTemperature?: number | null | undefined;
|
|
7322
7719
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7413,6 +7810,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7413
7810
|
mistralCodestralUrl?: string | undefined;
|
|
7414
7811
|
deepSeekBaseUrl?: string | undefined;
|
|
7415
7812
|
deepSeekApiKey?: string | undefined;
|
|
7813
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
7814
|
+
moonshotApiKey?: string | undefined;
|
|
7416
7815
|
unboundApiKey?: string | undefined;
|
|
7417
7816
|
unboundModelId?: string | undefined;
|
|
7418
7817
|
requestyApiKey?: string | undefined;
|
|
@@ -7420,6 +7819,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7420
7819
|
fakeAi?: unknown;
|
|
7421
7820
|
xaiApiKey?: string | undefined;
|
|
7422
7821
|
groqApiKey?: string | undefined;
|
|
7822
|
+
huggingFaceApiKey?: string | undefined;
|
|
7823
|
+
huggingFaceModelId?: string | undefined;
|
|
7824
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7423
7825
|
chutesApiKey?: string | undefined;
|
|
7424
7826
|
litellmBaseUrl?: string | undefined;
|
|
7425
7827
|
litellmApiKey?: string | undefined;
|
|
@@ -7444,7 +7846,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7444
7846
|
listApiConfigMeta?: {
|
|
7445
7847
|
name: string;
|
|
7446
7848
|
id: string;
|
|
7447
|
-
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;
|
|
7448
7850
|
}[] | undefined;
|
|
7449
7851
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7450
7852
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7489,6 +7891,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7489
7891
|
autoCondenseContext?: boolean | undefined;
|
|
7490
7892
|
autoCondenseContextPercent?: number | undefined;
|
|
7491
7893
|
maxConcurrentFileReads?: number | undefined;
|
|
7894
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
7895
|
+
maxDiagnosticMessages?: number | undefined;
|
|
7492
7896
|
browserToolEnabled?: boolean | undefined;
|
|
7493
7897
|
browserViewportSize?: string | undefined;
|
|
7494
7898
|
screenshotQuality?: number | undefined;
|
|
@@ -7505,6 +7909,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7505
7909
|
showRooIgnoredFiles?: boolean | undefined;
|
|
7506
7910
|
maxReadFileLine?: number | undefined;
|
|
7507
7911
|
terminalOutputLineLimit?: number | undefined;
|
|
7912
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
7508
7913
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
7509
7914
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
7510
7915
|
terminalCommandDelay?: number | undefined;
|
|
@@ -7514,6 +7919,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7514
7919
|
terminalZshP10k?: boolean | undefined;
|
|
7515
7920
|
terminalZdotdir?: boolean | undefined;
|
|
7516
7921
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7922
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
7517
7923
|
experiments?: {
|
|
7518
7924
|
powerSteering?: boolean | undefined;
|
|
7519
7925
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7531,11 +7937,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7531
7937
|
gemini?: Record<string, {
|
|
7532
7938
|
dimension: number;
|
|
7533
7939
|
}> | undefined;
|
|
7940
|
+
mistral?: Record<string, {
|
|
7941
|
+
dimension: number;
|
|
7942
|
+
}> | undefined;
|
|
7534
7943
|
} | undefined;
|
|
7535
7944
|
codebaseIndexConfig?: {
|
|
7536
7945
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7537
7946
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7538
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
7947
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7539
7948
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7540
7949
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7541
7950
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7577,9 +7986,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7577
7986
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7578
7987
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7579
7988
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7580
|
-
|
|
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;
|
|
7581
7991
|
includeMaxTokens?: boolean | undefined;
|
|
7582
7992
|
diffEnabled?: boolean | undefined;
|
|
7993
|
+
todoListEnabled?: boolean | undefined;
|
|
7583
7994
|
fuzzyMatchThreshold?: number | undefined;
|
|
7584
7995
|
modelTemperature?: number | null | undefined;
|
|
7585
7996
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7676,6 +8087,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7676
8087
|
mistralCodestralUrl?: string | undefined;
|
|
7677
8088
|
deepSeekBaseUrl?: string | undefined;
|
|
7678
8089
|
deepSeekApiKey?: string | undefined;
|
|
8090
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
8091
|
+
moonshotApiKey?: string | undefined;
|
|
7679
8092
|
unboundApiKey?: string | undefined;
|
|
7680
8093
|
unboundModelId?: string | undefined;
|
|
7681
8094
|
requestyApiKey?: string | undefined;
|
|
@@ -7683,6 +8096,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7683
8096
|
fakeAi?: unknown;
|
|
7684
8097
|
xaiApiKey?: string | undefined;
|
|
7685
8098
|
groqApiKey?: string | undefined;
|
|
8099
|
+
huggingFaceApiKey?: string | undefined;
|
|
8100
|
+
huggingFaceModelId?: string | undefined;
|
|
8101
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7686
8102
|
chutesApiKey?: string | undefined;
|
|
7687
8103
|
litellmBaseUrl?: string | undefined;
|
|
7688
8104
|
litellmApiKey?: string | undefined;
|
|
@@ -7707,7 +8123,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7707
8123
|
listApiConfigMeta?: {
|
|
7708
8124
|
name: string;
|
|
7709
8125
|
id: string;
|
|
7710
|
-
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;
|
|
7711
8127
|
}[] | undefined;
|
|
7712
8128
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7713
8129
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7752,6 +8168,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7752
8168
|
autoCondenseContext?: boolean | undefined;
|
|
7753
8169
|
autoCondenseContextPercent?: number | undefined;
|
|
7754
8170
|
maxConcurrentFileReads?: number | undefined;
|
|
8171
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
8172
|
+
maxDiagnosticMessages?: number | undefined;
|
|
7755
8173
|
browserToolEnabled?: boolean | undefined;
|
|
7756
8174
|
browserViewportSize?: string | undefined;
|
|
7757
8175
|
screenshotQuality?: number | undefined;
|
|
@@ -7768,6 +8186,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7768
8186
|
showRooIgnoredFiles?: boolean | undefined;
|
|
7769
8187
|
maxReadFileLine?: number | undefined;
|
|
7770
8188
|
terminalOutputLineLimit?: number | undefined;
|
|
8189
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
7771
8190
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
7772
8191
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
7773
8192
|
terminalCommandDelay?: number | undefined;
|
|
@@ -7777,6 +8196,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7777
8196
|
terminalZshP10k?: boolean | undefined;
|
|
7778
8197
|
terminalZdotdir?: boolean | undefined;
|
|
7779
8198
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8199
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
7780
8200
|
experiments?: {
|
|
7781
8201
|
powerSteering?: boolean | undefined;
|
|
7782
8202
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -7794,11 +8214,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7794
8214
|
gemini?: Record<string, {
|
|
7795
8215
|
dimension: number;
|
|
7796
8216
|
}> | undefined;
|
|
8217
|
+
mistral?: Record<string, {
|
|
8218
|
+
dimension: number;
|
|
8219
|
+
}> | undefined;
|
|
7797
8220
|
} | undefined;
|
|
7798
8221
|
codebaseIndexConfig?: {
|
|
7799
8222
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7800
8223
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7801
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
8224
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
7802
8225
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7803
8226
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7804
8227
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -7840,9 +8263,11 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7840
8263
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7841
8264
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7842
8265
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7843
|
-
|
|
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;
|
|
7844
8268
|
includeMaxTokens?: boolean | undefined;
|
|
7845
8269
|
diffEnabled?: boolean | undefined;
|
|
8270
|
+
todoListEnabled?: boolean | undefined;
|
|
7846
8271
|
fuzzyMatchThreshold?: number | undefined;
|
|
7847
8272
|
modelTemperature?: number | null | undefined;
|
|
7848
8273
|
rateLimitSeconds?: number | undefined;
|
|
@@ -7939,6 +8364,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7939
8364
|
mistralCodestralUrl?: string | undefined;
|
|
7940
8365
|
deepSeekBaseUrl?: string | undefined;
|
|
7941
8366
|
deepSeekApiKey?: string | undefined;
|
|
8367
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
8368
|
+
moonshotApiKey?: string | undefined;
|
|
7942
8369
|
unboundApiKey?: string | undefined;
|
|
7943
8370
|
unboundModelId?: string | undefined;
|
|
7944
8371
|
requestyApiKey?: string | undefined;
|
|
@@ -7946,6 +8373,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7946
8373
|
fakeAi?: unknown;
|
|
7947
8374
|
xaiApiKey?: string | undefined;
|
|
7948
8375
|
groqApiKey?: string | undefined;
|
|
8376
|
+
huggingFaceApiKey?: string | undefined;
|
|
8377
|
+
huggingFaceModelId?: string | undefined;
|
|
8378
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
7949
8379
|
chutesApiKey?: string | undefined;
|
|
7950
8380
|
litellmBaseUrl?: string | undefined;
|
|
7951
8381
|
litellmApiKey?: string | undefined;
|
|
@@ -7970,7 +8400,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7970
8400
|
listApiConfigMeta?: {
|
|
7971
8401
|
name: string;
|
|
7972
8402
|
id: string;
|
|
7973
|
-
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;
|
|
7974
8404
|
}[] | undefined;
|
|
7975
8405
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7976
8406
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8015,6 +8445,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8015
8445
|
autoCondenseContext?: boolean | undefined;
|
|
8016
8446
|
autoCondenseContextPercent?: number | undefined;
|
|
8017
8447
|
maxConcurrentFileReads?: number | undefined;
|
|
8448
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
8449
|
+
maxDiagnosticMessages?: number | undefined;
|
|
8018
8450
|
browserToolEnabled?: boolean | undefined;
|
|
8019
8451
|
browserViewportSize?: string | undefined;
|
|
8020
8452
|
screenshotQuality?: number | undefined;
|
|
@@ -8031,6 +8463,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8031
8463
|
showRooIgnoredFiles?: boolean | undefined;
|
|
8032
8464
|
maxReadFileLine?: number | undefined;
|
|
8033
8465
|
terminalOutputLineLimit?: number | undefined;
|
|
8466
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
8034
8467
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
8035
8468
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
8036
8469
|
terminalCommandDelay?: number | undefined;
|
|
@@ -8040,6 +8473,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8040
8473
|
terminalZshP10k?: boolean | undefined;
|
|
8041
8474
|
terminalZdotdir?: boolean | undefined;
|
|
8042
8475
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8476
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
8043
8477
|
experiments?: {
|
|
8044
8478
|
powerSteering?: boolean | undefined;
|
|
8045
8479
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -8057,11 +8491,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8057
8491
|
gemini?: Record<string, {
|
|
8058
8492
|
dimension: number;
|
|
8059
8493
|
}> | undefined;
|
|
8494
|
+
mistral?: Record<string, {
|
|
8495
|
+
dimension: number;
|
|
8496
|
+
}> | undefined;
|
|
8060
8497
|
} | undefined;
|
|
8061
8498
|
codebaseIndexConfig?: {
|
|
8062
8499
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8063
8500
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8064
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
8501
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
8065
8502
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8066
8503
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8067
8504
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -8636,7 +9073,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8636
9073
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
8637
9074
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
8638
9075
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
9076
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
8639
9077
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
9078
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8640
9079
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8641
9080
|
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
8642
9081
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8648,6 +9087,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8648
9087
|
litellmModelId: z.ZodOptional<z.ZodString>;
|
|
8649
9088
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
8650
9089
|
chutesApiKey: z.ZodOptional<z.ZodString>;
|
|
9090
|
+
huggingFaceApiKey: z.ZodOptional<z.ZodString>;
|
|
9091
|
+
huggingFaceModelId: z.ZodOptional<z.ZodString>;
|
|
9092
|
+
huggingFaceInferenceProvider: z.ZodOptional<z.ZodString>;
|
|
8651
9093
|
groqApiKey: z.ZodOptional<z.ZodString>;
|
|
8652
9094
|
xaiApiKey: z.ZodOptional<z.ZodString>;
|
|
8653
9095
|
fakeAi: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -8655,6 +9097,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8655
9097
|
requestyModelId: z.ZodOptional<z.ZodString>;
|
|
8656
9098
|
unboundApiKey: z.ZodOptional<z.ZodString>;
|
|
8657
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>;
|
|
8658
9102
|
deepSeekBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8659
9103
|
deepSeekApiKey: z.ZodOptional<z.ZodString>;
|
|
8660
9104
|
mistralApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -8819,21 +9263,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8819
9263
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
8820
9264
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8821
9265
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
8822
|
-
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"]>>;
|
|
8823
9267
|
} & {
|
|
8824
9268
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
8825
9269
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8826
9270
|
id: z.ZodString;
|
|
8827
9271
|
name: z.ZodString;
|
|
8828
|
-
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"]>>;
|
|
8829
9273
|
}, "strip", z.ZodTypeAny, {
|
|
8830
9274
|
name: string;
|
|
8831
9275
|
id: string;
|
|
8832
|
-
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;
|
|
8833
9277
|
}, {
|
|
8834
9278
|
name: string;
|
|
8835
9279
|
id: string;
|
|
8836
|
-
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;
|
|
8837
9281
|
}>, "many">>;
|
|
8838
9282
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8839
9283
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8903,6 +9347,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8903
9347
|
autoCondenseContext: z.ZodOptional<z.ZodBoolean>;
|
|
8904
9348
|
autoCondenseContextPercent: z.ZodOptional<z.ZodNumber>;
|
|
8905
9349
|
maxConcurrentFileReads: z.ZodOptional<z.ZodNumber>;
|
|
9350
|
+
includeDiagnosticMessages: z.ZodOptional<z.ZodBoolean>;
|
|
9351
|
+
maxDiagnosticMessages: z.ZodOptional<z.ZodNumber>;
|
|
8906
9352
|
browserToolEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8907
9353
|
browserViewportSize: z.ZodOptional<z.ZodString>;
|
|
8908
9354
|
screenshotQuality: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8919,6 +9365,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8919
9365
|
showRooIgnoredFiles: z.ZodOptional<z.ZodBoolean>;
|
|
8920
9366
|
maxReadFileLine: z.ZodOptional<z.ZodNumber>;
|
|
8921
9367
|
terminalOutputLineLimit: z.ZodOptional<z.ZodNumber>;
|
|
9368
|
+
terminalOutputCharacterLimit: z.ZodOptional<z.ZodNumber>;
|
|
8922
9369
|
terminalShellIntegrationTimeout: z.ZodOptional<z.ZodNumber>;
|
|
8923
9370
|
terminalShellIntegrationDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
8924
9371
|
terminalCommandDelay: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8928,6 +9375,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8928
9375
|
terminalZshP10k: z.ZodOptional<z.ZodBoolean>;
|
|
8929
9376
|
terminalZdotdir: z.ZodOptional<z.ZodBoolean>;
|
|
8930
9377
|
terminalCompressProgressBar: z.ZodOptional<z.ZodBoolean>;
|
|
9378
|
+
diagnosticsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8931
9379
|
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
8932
9380
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
8933
9381
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8970,6 +9418,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8970
9418
|
}, {
|
|
8971
9419
|
dimension: number;
|
|
8972
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
|
+
}>>>;
|
|
8973
9428
|
}, "strip", z.ZodTypeAny, {
|
|
8974
9429
|
openai?: Record<string, {
|
|
8975
9430
|
dimension: number;
|
|
@@ -8983,6 +9438,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8983
9438
|
gemini?: Record<string, {
|
|
8984
9439
|
dimension: number;
|
|
8985
9440
|
}> | undefined;
|
|
9441
|
+
mistral?: Record<string, {
|
|
9442
|
+
dimension: number;
|
|
9443
|
+
}> | undefined;
|
|
8986
9444
|
}, {
|
|
8987
9445
|
openai?: Record<string, {
|
|
8988
9446
|
dimension: number;
|
|
@@ -8996,11 +9454,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8996
9454
|
gemini?: Record<string, {
|
|
8997
9455
|
dimension: number;
|
|
8998
9456
|
}> | undefined;
|
|
9457
|
+
mistral?: Record<string, {
|
|
9458
|
+
dimension: number;
|
|
9459
|
+
}> | undefined;
|
|
8999
9460
|
}>>;
|
|
9000
9461
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
9001
9462
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
9002
9463
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
9003
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
9464
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
9004
9465
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
9005
9466
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
9006
9467
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9011,7 +9472,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9011
9472
|
}, "strip", z.ZodTypeAny, {
|
|
9012
9473
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9013
9474
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9014
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9475
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9015
9476
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9016
9477
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9017
9478
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9022,7 +9483,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9022
9483
|
}, {
|
|
9023
9484
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9024
9485
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9025
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9486
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9026
9487
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9027
9488
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9028
9489
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9117,9 +9578,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9117
9578
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9118
9579
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9119
9580
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9120
|
-
|
|
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;
|
|
9121
9583
|
includeMaxTokens?: boolean | undefined;
|
|
9122
9584
|
diffEnabled?: boolean | undefined;
|
|
9585
|
+
todoListEnabled?: boolean | undefined;
|
|
9123
9586
|
fuzzyMatchThreshold?: number | undefined;
|
|
9124
9587
|
modelTemperature?: number | null | undefined;
|
|
9125
9588
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9216,6 +9679,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9216
9679
|
mistralCodestralUrl?: string | undefined;
|
|
9217
9680
|
deepSeekBaseUrl?: string | undefined;
|
|
9218
9681
|
deepSeekApiKey?: string | undefined;
|
|
9682
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
9683
|
+
moonshotApiKey?: string | undefined;
|
|
9219
9684
|
unboundApiKey?: string | undefined;
|
|
9220
9685
|
unboundModelId?: string | undefined;
|
|
9221
9686
|
requestyApiKey?: string | undefined;
|
|
@@ -9223,6 +9688,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9223
9688
|
fakeAi?: unknown;
|
|
9224
9689
|
xaiApiKey?: string | undefined;
|
|
9225
9690
|
groqApiKey?: string | undefined;
|
|
9691
|
+
huggingFaceApiKey?: string | undefined;
|
|
9692
|
+
huggingFaceModelId?: string | undefined;
|
|
9693
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
9226
9694
|
chutesApiKey?: string | undefined;
|
|
9227
9695
|
litellmBaseUrl?: string | undefined;
|
|
9228
9696
|
litellmApiKey?: string | undefined;
|
|
@@ -9247,7 +9715,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9247
9715
|
listApiConfigMeta?: {
|
|
9248
9716
|
name: string;
|
|
9249
9717
|
id: string;
|
|
9250
|
-
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;
|
|
9251
9719
|
}[] | undefined;
|
|
9252
9720
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9253
9721
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9292,6 +9760,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9292
9760
|
autoCondenseContext?: boolean | undefined;
|
|
9293
9761
|
autoCondenseContextPercent?: number | undefined;
|
|
9294
9762
|
maxConcurrentFileReads?: number | undefined;
|
|
9763
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
9764
|
+
maxDiagnosticMessages?: number | undefined;
|
|
9295
9765
|
browserToolEnabled?: boolean | undefined;
|
|
9296
9766
|
browserViewportSize?: string | undefined;
|
|
9297
9767
|
screenshotQuality?: number | undefined;
|
|
@@ -9308,6 +9778,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9308
9778
|
showRooIgnoredFiles?: boolean | undefined;
|
|
9309
9779
|
maxReadFileLine?: number | undefined;
|
|
9310
9780
|
terminalOutputLineLimit?: number | undefined;
|
|
9781
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
9311
9782
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
9312
9783
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
9313
9784
|
terminalCommandDelay?: number | undefined;
|
|
@@ -9317,6 +9788,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9317
9788
|
terminalZshP10k?: boolean | undefined;
|
|
9318
9789
|
terminalZdotdir?: boolean | undefined;
|
|
9319
9790
|
terminalCompressProgressBar?: boolean | undefined;
|
|
9791
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
9320
9792
|
experiments?: {
|
|
9321
9793
|
powerSteering?: boolean | undefined;
|
|
9322
9794
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -9334,11 +9806,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9334
9806
|
gemini?: Record<string, {
|
|
9335
9807
|
dimension: number;
|
|
9336
9808
|
}> | undefined;
|
|
9809
|
+
mistral?: Record<string, {
|
|
9810
|
+
dimension: number;
|
|
9811
|
+
}> | undefined;
|
|
9337
9812
|
} | undefined;
|
|
9338
9813
|
codebaseIndexConfig?: {
|
|
9339
9814
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9340
9815
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9341
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
9816
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9342
9817
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9343
9818
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9344
9819
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9372,9 +9847,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9372
9847
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9373
9848
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9374
9849
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9375
|
-
|
|
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;
|
|
9376
9852
|
includeMaxTokens?: boolean | undefined;
|
|
9377
9853
|
diffEnabled?: boolean | undefined;
|
|
9854
|
+
todoListEnabled?: boolean | undefined;
|
|
9378
9855
|
fuzzyMatchThreshold?: number | undefined;
|
|
9379
9856
|
modelTemperature?: number | null | undefined;
|
|
9380
9857
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9471,6 +9948,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9471
9948
|
mistralCodestralUrl?: string | undefined;
|
|
9472
9949
|
deepSeekBaseUrl?: string | undefined;
|
|
9473
9950
|
deepSeekApiKey?: string | undefined;
|
|
9951
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
9952
|
+
moonshotApiKey?: string | undefined;
|
|
9474
9953
|
unboundApiKey?: string | undefined;
|
|
9475
9954
|
unboundModelId?: string | undefined;
|
|
9476
9955
|
requestyApiKey?: string | undefined;
|
|
@@ -9478,6 +9957,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9478
9957
|
fakeAi?: unknown;
|
|
9479
9958
|
xaiApiKey?: string | undefined;
|
|
9480
9959
|
groqApiKey?: string | undefined;
|
|
9960
|
+
huggingFaceApiKey?: string | undefined;
|
|
9961
|
+
huggingFaceModelId?: string | undefined;
|
|
9962
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
9481
9963
|
chutesApiKey?: string | undefined;
|
|
9482
9964
|
litellmBaseUrl?: string | undefined;
|
|
9483
9965
|
litellmApiKey?: string | undefined;
|
|
@@ -9502,7 +9984,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9502
9984
|
listApiConfigMeta?: {
|
|
9503
9985
|
name: string;
|
|
9504
9986
|
id: string;
|
|
9505
|
-
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;
|
|
9506
9988
|
}[] | undefined;
|
|
9507
9989
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9508
9990
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9547,6 +10029,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9547
10029
|
autoCondenseContext?: boolean | undefined;
|
|
9548
10030
|
autoCondenseContextPercent?: number | undefined;
|
|
9549
10031
|
maxConcurrentFileReads?: number | undefined;
|
|
10032
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10033
|
+
maxDiagnosticMessages?: number | undefined;
|
|
9550
10034
|
browserToolEnabled?: boolean | undefined;
|
|
9551
10035
|
browserViewportSize?: string | undefined;
|
|
9552
10036
|
screenshotQuality?: number | undefined;
|
|
@@ -9563,6 +10047,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9563
10047
|
showRooIgnoredFiles?: boolean | undefined;
|
|
9564
10048
|
maxReadFileLine?: number | undefined;
|
|
9565
10049
|
terminalOutputLineLimit?: number | undefined;
|
|
10050
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
9566
10051
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
9567
10052
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
9568
10053
|
terminalCommandDelay?: number | undefined;
|
|
@@ -9572,6 +10057,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9572
10057
|
terminalZshP10k?: boolean | undefined;
|
|
9573
10058
|
terminalZdotdir?: boolean | undefined;
|
|
9574
10059
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10060
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
9575
10061
|
experiments?: {
|
|
9576
10062
|
powerSteering?: boolean | undefined;
|
|
9577
10063
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -9589,11 +10075,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9589
10075
|
gemini?: Record<string, {
|
|
9590
10076
|
dimension: number;
|
|
9591
10077
|
}> | undefined;
|
|
10078
|
+
mistral?: Record<string, {
|
|
10079
|
+
dimension: number;
|
|
10080
|
+
}> | undefined;
|
|
9592
10081
|
} | undefined;
|
|
9593
10082
|
codebaseIndexConfig?: {
|
|
9594
10083
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9595
10084
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9596
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10085
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9597
10086
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9598
10087
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9599
10088
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9633,9 +10122,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9633
10122
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9634
10123
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9635
10124
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9636
|
-
|
|
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;
|
|
9637
10127
|
includeMaxTokens?: boolean | undefined;
|
|
9638
10128
|
diffEnabled?: boolean | undefined;
|
|
10129
|
+
todoListEnabled?: boolean | undefined;
|
|
9639
10130
|
fuzzyMatchThreshold?: number | undefined;
|
|
9640
10131
|
modelTemperature?: number | null | undefined;
|
|
9641
10132
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9732,6 +10223,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9732
10223
|
mistralCodestralUrl?: string | undefined;
|
|
9733
10224
|
deepSeekBaseUrl?: string | undefined;
|
|
9734
10225
|
deepSeekApiKey?: string | undefined;
|
|
10226
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
10227
|
+
moonshotApiKey?: string | undefined;
|
|
9735
10228
|
unboundApiKey?: string | undefined;
|
|
9736
10229
|
unboundModelId?: string | undefined;
|
|
9737
10230
|
requestyApiKey?: string | undefined;
|
|
@@ -9739,6 +10232,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9739
10232
|
fakeAi?: unknown;
|
|
9740
10233
|
xaiApiKey?: string | undefined;
|
|
9741
10234
|
groqApiKey?: string | undefined;
|
|
10235
|
+
huggingFaceApiKey?: string | undefined;
|
|
10236
|
+
huggingFaceModelId?: string | undefined;
|
|
10237
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
9742
10238
|
chutesApiKey?: string | undefined;
|
|
9743
10239
|
litellmBaseUrl?: string | undefined;
|
|
9744
10240
|
litellmApiKey?: string | undefined;
|
|
@@ -9763,7 +10259,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9763
10259
|
listApiConfigMeta?: {
|
|
9764
10260
|
name: string;
|
|
9765
10261
|
id: string;
|
|
9766
|
-
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;
|
|
9767
10263
|
}[] | undefined;
|
|
9768
10264
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9769
10265
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9808,6 +10304,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9808
10304
|
autoCondenseContext?: boolean | undefined;
|
|
9809
10305
|
autoCondenseContextPercent?: number | undefined;
|
|
9810
10306
|
maxConcurrentFileReads?: number | undefined;
|
|
10307
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10308
|
+
maxDiagnosticMessages?: number | undefined;
|
|
9811
10309
|
browserToolEnabled?: boolean | undefined;
|
|
9812
10310
|
browserViewportSize?: string | undefined;
|
|
9813
10311
|
screenshotQuality?: number | undefined;
|
|
@@ -9824,6 +10322,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9824
10322
|
showRooIgnoredFiles?: boolean | undefined;
|
|
9825
10323
|
maxReadFileLine?: number | undefined;
|
|
9826
10324
|
terminalOutputLineLimit?: number | undefined;
|
|
10325
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
9827
10326
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
9828
10327
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
9829
10328
|
terminalCommandDelay?: number | undefined;
|
|
@@ -9833,6 +10332,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9833
10332
|
terminalZshP10k?: boolean | undefined;
|
|
9834
10333
|
terminalZdotdir?: boolean | undefined;
|
|
9835
10334
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10335
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
9836
10336
|
experiments?: {
|
|
9837
10337
|
powerSteering?: boolean | undefined;
|
|
9838
10338
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -9850,11 +10350,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9850
10350
|
gemini?: Record<string, {
|
|
9851
10351
|
dimension: number;
|
|
9852
10352
|
}> | undefined;
|
|
10353
|
+
mistral?: Record<string, {
|
|
10354
|
+
dimension: number;
|
|
10355
|
+
}> | undefined;
|
|
9853
10356
|
} | undefined;
|
|
9854
10357
|
codebaseIndexConfig?: {
|
|
9855
10358
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9856
10359
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9857
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10360
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
9858
10361
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9859
10362
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9860
10363
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -9893,9 +10396,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9893
10396
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9894
10397
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9895
10398
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9896
|
-
|
|
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;
|
|
9897
10401
|
includeMaxTokens?: boolean | undefined;
|
|
9898
10402
|
diffEnabled?: boolean | undefined;
|
|
10403
|
+
todoListEnabled?: boolean | undefined;
|
|
9899
10404
|
fuzzyMatchThreshold?: number | undefined;
|
|
9900
10405
|
modelTemperature?: number | null | undefined;
|
|
9901
10406
|
rateLimitSeconds?: number | undefined;
|
|
@@ -9992,6 +10497,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9992
10497
|
mistralCodestralUrl?: string | undefined;
|
|
9993
10498
|
deepSeekBaseUrl?: string | undefined;
|
|
9994
10499
|
deepSeekApiKey?: string | undefined;
|
|
10500
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
10501
|
+
moonshotApiKey?: string | undefined;
|
|
9995
10502
|
unboundApiKey?: string | undefined;
|
|
9996
10503
|
unboundModelId?: string | undefined;
|
|
9997
10504
|
requestyApiKey?: string | undefined;
|
|
@@ -9999,6 +10506,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9999
10506
|
fakeAi?: unknown;
|
|
10000
10507
|
xaiApiKey?: string | undefined;
|
|
10001
10508
|
groqApiKey?: string | undefined;
|
|
10509
|
+
huggingFaceApiKey?: string | undefined;
|
|
10510
|
+
huggingFaceModelId?: string | undefined;
|
|
10511
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
10002
10512
|
chutesApiKey?: string | undefined;
|
|
10003
10513
|
litellmBaseUrl?: string | undefined;
|
|
10004
10514
|
litellmApiKey?: string | undefined;
|
|
@@ -10023,7 +10533,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10023
10533
|
listApiConfigMeta?: {
|
|
10024
10534
|
name: string;
|
|
10025
10535
|
id: string;
|
|
10026
|
-
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;
|
|
10027
10537
|
}[] | undefined;
|
|
10028
10538
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10029
10539
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10068,6 +10578,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10068
10578
|
autoCondenseContext?: boolean | undefined;
|
|
10069
10579
|
autoCondenseContextPercent?: number | undefined;
|
|
10070
10580
|
maxConcurrentFileReads?: number | undefined;
|
|
10581
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10582
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10071
10583
|
browserToolEnabled?: boolean | undefined;
|
|
10072
10584
|
browserViewportSize?: string | undefined;
|
|
10073
10585
|
screenshotQuality?: number | undefined;
|
|
@@ -10084,6 +10596,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10084
10596
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10085
10597
|
maxReadFileLine?: number | undefined;
|
|
10086
10598
|
terminalOutputLineLimit?: number | undefined;
|
|
10599
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10087
10600
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10088
10601
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10089
10602
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10093,6 +10606,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10093
10606
|
terminalZshP10k?: boolean | undefined;
|
|
10094
10607
|
terminalZdotdir?: boolean | undefined;
|
|
10095
10608
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10609
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10096
10610
|
experiments?: {
|
|
10097
10611
|
powerSteering?: boolean | undefined;
|
|
10098
10612
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10110,11 +10624,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10110
10624
|
gemini?: Record<string, {
|
|
10111
10625
|
dimension: number;
|
|
10112
10626
|
}> | undefined;
|
|
10627
|
+
mistral?: Record<string, {
|
|
10628
|
+
dimension: number;
|
|
10629
|
+
}> | undefined;
|
|
10113
10630
|
} | undefined;
|
|
10114
10631
|
codebaseIndexConfig?: {
|
|
10115
10632
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10116
10633
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10117
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10634
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10118
10635
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10119
10636
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10120
10637
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10156,9 +10673,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10156
10673
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10157
10674
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10158
10675
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10159
|
-
|
|
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;
|
|
10160
10678
|
includeMaxTokens?: boolean | undefined;
|
|
10161
10679
|
diffEnabled?: boolean | undefined;
|
|
10680
|
+
todoListEnabled?: boolean | undefined;
|
|
10162
10681
|
fuzzyMatchThreshold?: number | undefined;
|
|
10163
10682
|
modelTemperature?: number | null | undefined;
|
|
10164
10683
|
rateLimitSeconds?: number | undefined;
|
|
@@ -10255,6 +10774,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10255
10774
|
mistralCodestralUrl?: string | undefined;
|
|
10256
10775
|
deepSeekBaseUrl?: string | undefined;
|
|
10257
10776
|
deepSeekApiKey?: string | undefined;
|
|
10777
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
10778
|
+
moonshotApiKey?: string | undefined;
|
|
10258
10779
|
unboundApiKey?: string | undefined;
|
|
10259
10780
|
unboundModelId?: string | undefined;
|
|
10260
10781
|
requestyApiKey?: string | undefined;
|
|
@@ -10262,6 +10783,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10262
10783
|
fakeAi?: unknown;
|
|
10263
10784
|
xaiApiKey?: string | undefined;
|
|
10264
10785
|
groqApiKey?: string | undefined;
|
|
10786
|
+
huggingFaceApiKey?: string | undefined;
|
|
10787
|
+
huggingFaceModelId?: string | undefined;
|
|
10788
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
10265
10789
|
chutesApiKey?: string | undefined;
|
|
10266
10790
|
litellmBaseUrl?: string | undefined;
|
|
10267
10791
|
litellmApiKey?: string | undefined;
|
|
@@ -10286,7 +10810,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10286
10810
|
listApiConfigMeta?: {
|
|
10287
10811
|
name: string;
|
|
10288
10812
|
id: string;
|
|
10289
|
-
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;
|
|
10290
10814
|
}[] | undefined;
|
|
10291
10815
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10292
10816
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10331,6 +10855,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10331
10855
|
autoCondenseContext?: boolean | undefined;
|
|
10332
10856
|
autoCondenseContextPercent?: number | undefined;
|
|
10333
10857
|
maxConcurrentFileReads?: number | undefined;
|
|
10858
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
10859
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10334
10860
|
browserToolEnabled?: boolean | undefined;
|
|
10335
10861
|
browserViewportSize?: string | undefined;
|
|
10336
10862
|
screenshotQuality?: number | undefined;
|
|
@@ -10347,6 +10873,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10347
10873
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10348
10874
|
maxReadFileLine?: number | undefined;
|
|
10349
10875
|
terminalOutputLineLimit?: number | undefined;
|
|
10876
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10350
10877
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10351
10878
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10352
10879
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10356,6 +10883,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10356
10883
|
terminalZshP10k?: boolean | undefined;
|
|
10357
10884
|
terminalZdotdir?: boolean | undefined;
|
|
10358
10885
|
terminalCompressProgressBar?: boolean | undefined;
|
|
10886
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10359
10887
|
experiments?: {
|
|
10360
10888
|
powerSteering?: boolean | undefined;
|
|
10361
10889
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10373,11 +10901,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10373
10901
|
gemini?: Record<string, {
|
|
10374
10902
|
dimension: number;
|
|
10375
10903
|
}> | undefined;
|
|
10904
|
+
mistral?: Record<string, {
|
|
10905
|
+
dimension: number;
|
|
10906
|
+
}> | undefined;
|
|
10376
10907
|
} | undefined;
|
|
10377
10908
|
codebaseIndexConfig?: {
|
|
10378
10909
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10379
10910
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10380
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
10911
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10381
10912
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10382
10913
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10383
10914
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10419,9 +10950,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10419
10950
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10420
10951
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10421
10952
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10422
|
-
|
|
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;
|
|
10423
10955
|
includeMaxTokens?: boolean | undefined;
|
|
10424
10956
|
diffEnabled?: boolean | undefined;
|
|
10957
|
+
todoListEnabled?: boolean | undefined;
|
|
10425
10958
|
fuzzyMatchThreshold?: number | undefined;
|
|
10426
10959
|
modelTemperature?: number | null | undefined;
|
|
10427
10960
|
rateLimitSeconds?: number | undefined;
|
|
@@ -10518,6 +11051,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10518
11051
|
mistralCodestralUrl?: string | undefined;
|
|
10519
11052
|
deepSeekBaseUrl?: string | undefined;
|
|
10520
11053
|
deepSeekApiKey?: string | undefined;
|
|
11054
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
11055
|
+
moonshotApiKey?: string | undefined;
|
|
10521
11056
|
unboundApiKey?: string | undefined;
|
|
10522
11057
|
unboundModelId?: string | undefined;
|
|
10523
11058
|
requestyApiKey?: string | undefined;
|
|
@@ -10525,6 +11060,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10525
11060
|
fakeAi?: unknown;
|
|
10526
11061
|
xaiApiKey?: string | undefined;
|
|
10527
11062
|
groqApiKey?: string | undefined;
|
|
11063
|
+
huggingFaceApiKey?: string | undefined;
|
|
11064
|
+
huggingFaceModelId?: string | undefined;
|
|
11065
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
10528
11066
|
chutesApiKey?: string | undefined;
|
|
10529
11067
|
litellmBaseUrl?: string | undefined;
|
|
10530
11068
|
litellmApiKey?: string | undefined;
|
|
@@ -10549,7 +11087,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10549
11087
|
listApiConfigMeta?: {
|
|
10550
11088
|
name: string;
|
|
10551
11089
|
id: string;
|
|
10552
|
-
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;
|
|
10553
11091
|
}[] | undefined;
|
|
10554
11092
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10555
11093
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10594,6 +11132,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10594
11132
|
autoCondenseContext?: boolean | undefined;
|
|
10595
11133
|
autoCondenseContextPercent?: number | undefined;
|
|
10596
11134
|
maxConcurrentFileReads?: number | undefined;
|
|
11135
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
11136
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10597
11137
|
browserToolEnabled?: boolean | undefined;
|
|
10598
11138
|
browserViewportSize?: string | undefined;
|
|
10599
11139
|
screenshotQuality?: number | undefined;
|
|
@@ -10610,6 +11150,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10610
11150
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10611
11151
|
maxReadFileLine?: number | undefined;
|
|
10612
11152
|
terminalOutputLineLimit?: number | undefined;
|
|
11153
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10613
11154
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10614
11155
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10615
11156
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10619,6 +11160,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10619
11160
|
terminalZshP10k?: boolean | undefined;
|
|
10620
11161
|
terminalZdotdir?: boolean | undefined;
|
|
10621
11162
|
terminalCompressProgressBar?: boolean | undefined;
|
|
11163
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10622
11164
|
experiments?: {
|
|
10623
11165
|
powerSteering?: boolean | undefined;
|
|
10624
11166
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10636,11 +11178,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10636
11178
|
gemini?: Record<string, {
|
|
10637
11179
|
dimension: number;
|
|
10638
11180
|
}> | undefined;
|
|
11181
|
+
mistral?: Record<string, {
|
|
11182
|
+
dimension: number;
|
|
11183
|
+
}> | undefined;
|
|
10639
11184
|
} | undefined;
|
|
10640
11185
|
codebaseIndexConfig?: {
|
|
10641
11186
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10642
11187
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10643
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11188
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10644
11189
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10645
11190
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10646
11191
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10704,9 +11249,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10704
11249
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10705
11250
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10706
11251
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10707
|
-
|
|
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;
|
|
10708
11254
|
includeMaxTokens?: boolean | undefined;
|
|
10709
11255
|
diffEnabled?: boolean | undefined;
|
|
11256
|
+
todoListEnabled?: boolean | undefined;
|
|
10710
11257
|
fuzzyMatchThreshold?: number | undefined;
|
|
10711
11258
|
modelTemperature?: number | null | undefined;
|
|
10712
11259
|
rateLimitSeconds?: number | undefined;
|
|
@@ -10803,6 +11350,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10803
11350
|
mistralCodestralUrl?: string | undefined;
|
|
10804
11351
|
deepSeekBaseUrl?: string | undefined;
|
|
10805
11352
|
deepSeekApiKey?: string | undefined;
|
|
11353
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
11354
|
+
moonshotApiKey?: string | undefined;
|
|
10806
11355
|
unboundApiKey?: string | undefined;
|
|
10807
11356
|
unboundModelId?: string | undefined;
|
|
10808
11357
|
requestyApiKey?: string | undefined;
|
|
@@ -10810,6 +11359,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10810
11359
|
fakeAi?: unknown;
|
|
10811
11360
|
xaiApiKey?: string | undefined;
|
|
10812
11361
|
groqApiKey?: string | undefined;
|
|
11362
|
+
huggingFaceApiKey?: string | undefined;
|
|
11363
|
+
huggingFaceModelId?: string | undefined;
|
|
11364
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
10813
11365
|
chutesApiKey?: string | undefined;
|
|
10814
11366
|
litellmBaseUrl?: string | undefined;
|
|
10815
11367
|
litellmApiKey?: string | undefined;
|
|
@@ -10834,7 +11386,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10834
11386
|
listApiConfigMeta?: {
|
|
10835
11387
|
name: string;
|
|
10836
11388
|
id: string;
|
|
10837
|
-
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;
|
|
10838
11390
|
}[] | undefined;
|
|
10839
11391
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10840
11392
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10879,6 +11431,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10879
11431
|
autoCondenseContext?: boolean | undefined;
|
|
10880
11432
|
autoCondenseContextPercent?: number | undefined;
|
|
10881
11433
|
maxConcurrentFileReads?: number | undefined;
|
|
11434
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
11435
|
+
maxDiagnosticMessages?: number | undefined;
|
|
10882
11436
|
browserToolEnabled?: boolean | undefined;
|
|
10883
11437
|
browserViewportSize?: string | undefined;
|
|
10884
11438
|
screenshotQuality?: number | undefined;
|
|
@@ -10895,6 +11449,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10895
11449
|
showRooIgnoredFiles?: boolean | undefined;
|
|
10896
11450
|
maxReadFileLine?: number | undefined;
|
|
10897
11451
|
terminalOutputLineLimit?: number | undefined;
|
|
11452
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
10898
11453
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
10899
11454
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
10900
11455
|
terminalCommandDelay?: number | undefined;
|
|
@@ -10904,6 +11459,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10904
11459
|
terminalZshP10k?: boolean | undefined;
|
|
10905
11460
|
terminalZdotdir?: boolean | undefined;
|
|
10906
11461
|
terminalCompressProgressBar?: boolean | undefined;
|
|
11462
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
10907
11463
|
experiments?: {
|
|
10908
11464
|
powerSteering?: boolean | undefined;
|
|
10909
11465
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -10921,11 +11477,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10921
11477
|
gemini?: Record<string, {
|
|
10922
11478
|
dimension: number;
|
|
10923
11479
|
}> | undefined;
|
|
11480
|
+
mistral?: Record<string, {
|
|
11481
|
+
dimension: number;
|
|
11482
|
+
}> | undefined;
|
|
10924
11483
|
} | undefined;
|
|
10925
11484
|
codebaseIndexConfig?: {
|
|
10926
11485
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10927
11486
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10928
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11487
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
10929
11488
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10930
11489
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10931
11490
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -10978,9 +11537,11 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10978
11537
|
codeIndexQdrantApiKey?: string | undefined;
|
|
10979
11538
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10980
11539
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10981
|
-
|
|
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;
|
|
10982
11542
|
includeMaxTokens?: boolean | undefined;
|
|
10983
11543
|
diffEnabled?: boolean | undefined;
|
|
11544
|
+
todoListEnabled?: boolean | undefined;
|
|
10984
11545
|
fuzzyMatchThreshold?: number | undefined;
|
|
10985
11546
|
modelTemperature?: number | null | undefined;
|
|
10986
11547
|
rateLimitSeconds?: number | undefined;
|
|
@@ -11077,6 +11638,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11077
11638
|
mistralCodestralUrl?: string | undefined;
|
|
11078
11639
|
deepSeekBaseUrl?: string | undefined;
|
|
11079
11640
|
deepSeekApiKey?: string | undefined;
|
|
11641
|
+
moonshotBaseUrl?: "https://api.moonshot.ai/v1" | "https://api.moonshot.cn/v1" | undefined;
|
|
11642
|
+
moonshotApiKey?: string | undefined;
|
|
11080
11643
|
unboundApiKey?: string | undefined;
|
|
11081
11644
|
unboundModelId?: string | undefined;
|
|
11082
11645
|
requestyApiKey?: string | undefined;
|
|
@@ -11084,6 +11647,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11084
11647
|
fakeAi?: unknown;
|
|
11085
11648
|
xaiApiKey?: string | undefined;
|
|
11086
11649
|
groqApiKey?: string | undefined;
|
|
11650
|
+
huggingFaceApiKey?: string | undefined;
|
|
11651
|
+
huggingFaceModelId?: string | undefined;
|
|
11652
|
+
huggingFaceInferenceProvider?: string | undefined;
|
|
11087
11653
|
chutesApiKey?: string | undefined;
|
|
11088
11654
|
litellmBaseUrl?: string | undefined;
|
|
11089
11655
|
litellmApiKey?: string | undefined;
|
|
@@ -11108,7 +11674,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11108
11674
|
listApiConfigMeta?: {
|
|
11109
11675
|
name: string;
|
|
11110
11676
|
id: string;
|
|
11111
|
-
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;
|
|
11112
11678
|
}[] | undefined;
|
|
11113
11679
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11114
11680
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11153,6 +11719,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11153
11719
|
autoCondenseContext?: boolean | undefined;
|
|
11154
11720
|
autoCondenseContextPercent?: number | undefined;
|
|
11155
11721
|
maxConcurrentFileReads?: number | undefined;
|
|
11722
|
+
includeDiagnosticMessages?: boolean | undefined;
|
|
11723
|
+
maxDiagnosticMessages?: number | undefined;
|
|
11156
11724
|
browserToolEnabled?: boolean | undefined;
|
|
11157
11725
|
browserViewportSize?: string | undefined;
|
|
11158
11726
|
screenshotQuality?: number | undefined;
|
|
@@ -11169,6 +11737,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11169
11737
|
showRooIgnoredFiles?: boolean | undefined;
|
|
11170
11738
|
maxReadFileLine?: number | undefined;
|
|
11171
11739
|
terminalOutputLineLimit?: number | undefined;
|
|
11740
|
+
terminalOutputCharacterLimit?: number | undefined;
|
|
11172
11741
|
terminalShellIntegrationTimeout?: number | undefined;
|
|
11173
11742
|
terminalShellIntegrationDisabled?: boolean | undefined;
|
|
11174
11743
|
terminalCommandDelay?: number | undefined;
|
|
@@ -11178,6 +11747,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11178
11747
|
terminalZshP10k?: boolean | undefined;
|
|
11179
11748
|
terminalZdotdir?: boolean | undefined;
|
|
11180
11749
|
terminalCompressProgressBar?: boolean | undefined;
|
|
11750
|
+
diagnosticsEnabled?: boolean | undefined;
|
|
11181
11751
|
experiments?: {
|
|
11182
11752
|
powerSteering?: boolean | undefined;
|
|
11183
11753
|
multiFileApplyDiff?: boolean | undefined;
|
|
@@ -11195,11 +11765,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11195
11765
|
gemini?: Record<string, {
|
|
11196
11766
|
dimension: number;
|
|
11197
11767
|
}> | undefined;
|
|
11768
|
+
mistral?: Record<string, {
|
|
11769
|
+
dimension: number;
|
|
11770
|
+
}> | undefined;
|
|
11198
11771
|
} | undefined;
|
|
11199
11772
|
codebaseIndexConfig?: {
|
|
11200
11773
|
codebaseIndexEnabled?: boolean | undefined;
|
|
11201
11774
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
11202
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
11775
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
11203
11776
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
11204
11777
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
11205
11778
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12104,7 +12677,7 @@ declare const CODEBASE_INDEX_DEFAULTS: {
|
|
|
12104
12677
|
declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
12105
12678
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
12106
12679
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
12107
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini"]>>;
|
|
12680
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible", "gemini", "mistral"]>>;
|
|
12108
12681
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
12109
12682
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
12110
12683
|
codebaseIndexEmbedderModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12115,7 +12688,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
|
12115
12688
|
}, "strip", z.ZodTypeAny, {
|
|
12116
12689
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12117
12690
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12118
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
12691
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
12119
12692
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12120
12693
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12121
12694
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12126,7 +12699,7 @@ declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
|
12126
12699
|
}, {
|
|
12127
12700
|
codebaseIndexEnabled?: boolean | undefined;
|
|
12128
12701
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
12129
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | undefined;
|
|
12702
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | "gemini" | "mistral" | undefined;
|
|
12130
12703
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
12131
12704
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
12132
12705
|
codebaseIndexEmbedderModelDimension?: number | undefined;
|
|
@@ -12168,6 +12741,13 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
12168
12741
|
}, {
|
|
12169
12742
|
dimension: number;
|
|
12170
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
|
+
}>>>;
|
|
12171
12751
|
}, "strip", z.ZodTypeAny, {
|
|
12172
12752
|
openai?: Record<string, {
|
|
12173
12753
|
dimension: number;
|
|
@@ -12181,6 +12761,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
12181
12761
|
gemini?: Record<string, {
|
|
12182
12762
|
dimension: number;
|
|
12183
12763
|
}> | undefined;
|
|
12764
|
+
mistral?: Record<string, {
|
|
12765
|
+
dimension: number;
|
|
12766
|
+
}> | undefined;
|
|
12184
12767
|
}, {
|
|
12185
12768
|
openai?: Record<string, {
|
|
12186
12769
|
dimension: number;
|
|
@@ -12194,6 +12777,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
12194
12777
|
gemini?: Record<string, {
|
|
12195
12778
|
dimension: number;
|
|
12196
12779
|
}> | undefined;
|
|
12780
|
+
mistral?: Record<string, {
|
|
12781
|
+
dimension: number;
|
|
12782
|
+
}> | undefined;
|
|
12197
12783
|
}>;
|
|
12198
12784
|
type CodebaseIndexModels = z.infer<typeof codebaseIndexModelsSchema>;
|
|
12199
12785
|
/**
|
|
@@ -12206,6 +12792,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
12206
12792
|
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
12207
12793
|
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
12208
12794
|
codebaseIndexGeminiApiKey: z.ZodOptional<z.ZodString>;
|
|
12795
|
+
codebaseIndexMistralApiKey: z.ZodOptional<z.ZodString>;
|
|
12209
12796
|
}, "strip", z.ZodTypeAny, {
|
|
12210
12797
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
12211
12798
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
@@ -12213,6 +12800,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
12213
12800
|
codeIndexQdrantApiKey?: string | undefined;
|
|
12214
12801
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12215
12802
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12803
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
12216
12804
|
}, {
|
|
12217
12805
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
12218
12806
|
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
@@ -12220,6 +12808,7 @@ declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
|
12220
12808
|
codeIndexQdrantApiKey?: string | undefined;
|
|
12221
12809
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12222
12810
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12811
|
+
codebaseIndexMistralApiKey?: string | undefined;
|
|
12223
12812
|
}>;
|
|
12224
12813
|
type CodebaseIndexProvider = z.infer<typeof codebaseIndexProviderSchema>;
|
|
12225
12814
|
|
|
@@ -13329,6 +13918,10 @@ type CustomModePrompts = z.infer<typeof customModePromptsSchema>;
|
|
|
13329
13918
|
*/
|
|
13330
13919
|
declare const customSupportPromptsSchema: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>;
|
|
13331
13920
|
type CustomSupportPrompts = z.infer<typeof customSupportPromptsSchema>;
|
|
13921
|
+
/**
|
|
13922
|
+
* DEFAULT_MODES
|
|
13923
|
+
*/
|
|
13924
|
+
declare const DEFAULT_MODES: readonly ModeConfig[];
|
|
13332
13925
|
|
|
13333
13926
|
/**
|
|
13334
13927
|
* Types related to task sharing functionality
|
|
@@ -13420,7 +14013,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
13420
14013
|
}>;
|
|
13421
14014
|
declare const taskPropertiesSchema: z.ZodObject<{
|
|
13422
14015
|
taskId: z.ZodOptional<z.ZodString>;
|
|
13423
|
-
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"]>>;
|
|
13424
14017
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13425
14018
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13426
14019
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13441,7 +14034,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
13441
14034
|
pending: number;
|
|
13442
14035
|
}>>;
|
|
13443
14036
|
}, "strip", z.ZodTypeAny, {
|
|
13444
|
-
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;
|
|
13445
14038
|
taskId?: string | undefined;
|
|
13446
14039
|
modelId?: string | undefined;
|
|
13447
14040
|
diffStrategy?: string | undefined;
|
|
@@ -13453,7 +14046,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
13453
14046
|
pending: number;
|
|
13454
14047
|
} | undefined;
|
|
13455
14048
|
}, {
|
|
13456
|
-
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;
|
|
13457
14050
|
taskId?: string | undefined;
|
|
13458
14051
|
modelId?: string | undefined;
|
|
13459
14052
|
diffStrategy?: string | undefined;
|
|
@@ -13483,7 +14076,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
13483
14076
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13484
14077
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
13485
14078
|
taskId: z.ZodOptional<z.ZodString>;
|
|
13486
|
-
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"]>>;
|
|
13487
14080
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13488
14081
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13489
14082
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13519,7 +14112,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
13519
14112
|
editorName: string;
|
|
13520
14113
|
language: string;
|
|
13521
14114
|
mode: string;
|
|
13522
|
-
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;
|
|
13523
14116
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13524
14117
|
taskId?: string | undefined;
|
|
13525
14118
|
modelId?: string | undefined;
|
|
@@ -13542,7 +14135,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
13542
14135
|
editorName: string;
|
|
13543
14136
|
language: string;
|
|
13544
14137
|
mode: string;
|
|
13545
|
-
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;
|
|
13546
14139
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13547
14140
|
taskId?: string | undefined;
|
|
13548
14141
|
modelId?: string | undefined;
|
|
@@ -13577,7 +14170,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13577
14170
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13578
14171
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
13579
14172
|
taskId: z.ZodOptional<z.ZodString>;
|
|
13580
|
-
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"]>>;
|
|
13581
14174
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13582
14175
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13583
14176
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13613,7 +14206,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13613
14206
|
editorName: string;
|
|
13614
14207
|
language: string;
|
|
13615
14208
|
mode: string;
|
|
13616
|
-
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;
|
|
13617
14210
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13618
14211
|
taskId?: string | undefined;
|
|
13619
14212
|
modelId?: string | undefined;
|
|
@@ -13636,7 +14229,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13636
14229
|
editorName: string;
|
|
13637
14230
|
language: string;
|
|
13638
14231
|
mode: string;
|
|
13639
|
-
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;
|
|
13640
14233
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13641
14234
|
taskId?: string | undefined;
|
|
13642
14235
|
modelId?: string | undefined;
|
|
@@ -13662,7 +14255,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13662
14255
|
editorName: string;
|
|
13663
14256
|
language: string;
|
|
13664
14257
|
mode: string;
|
|
13665
|
-
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;
|
|
13666
14259
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13667
14260
|
taskId?: string | undefined;
|
|
13668
14261
|
modelId?: string | undefined;
|
|
@@ -13688,7 +14281,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13688
14281
|
editorName: string;
|
|
13689
14282
|
language: string;
|
|
13690
14283
|
mode: string;
|
|
13691
|
-
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;
|
|
13692
14285
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13693
14286
|
taskId?: string | undefined;
|
|
13694
14287
|
modelId?: string | undefined;
|
|
@@ -13797,7 +14390,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13797
14390
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
13798
14391
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
13799
14392
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
13800
|
-
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"]>>;
|
|
13801
14394
|
modelId: z.ZodOptional<z.ZodString>;
|
|
13802
14395
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
13803
14396
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -13858,7 +14451,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13858
14451
|
language: string;
|
|
13859
14452
|
mode: string;
|
|
13860
14453
|
taskId: string;
|
|
13861
|
-
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;
|
|
13862
14455
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13863
14456
|
modelId?: string | undefined;
|
|
13864
14457
|
diffStrategy?: string | undefined;
|
|
@@ -13905,7 +14498,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13905
14498
|
language: string;
|
|
13906
14499
|
mode: string;
|
|
13907
14500
|
taskId: string;
|
|
13908
|
-
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;
|
|
13909
14502
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13910
14503
|
modelId?: string | undefined;
|
|
13911
14504
|
diffStrategy?: string | undefined;
|
|
@@ -13955,7 +14548,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
13955
14548
|
language: string;
|
|
13956
14549
|
mode: string;
|
|
13957
14550
|
taskId: string;
|
|
13958
|
-
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;
|
|
13959
14552
|
cloudIsAuthenticated?: boolean | undefined;
|
|
13960
14553
|
modelId?: string | undefined;
|
|
13961
14554
|
diffStrategy?: string | undefined;
|
|
@@ -14005,7 +14598,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14005
14598
|
language: string;
|
|
14006
14599
|
mode: string;
|
|
14007
14600
|
taskId: string;
|
|
14008
|
-
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;
|
|
14009
14602
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14010
14603
|
modelId?: string | undefined;
|
|
14011
14604
|
diffStrategy?: string | undefined;
|
|
@@ -14032,7 +14625,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14032
14625
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
14033
14626
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
14034
14627
|
taskId: z.ZodOptional<z.ZodString>;
|
|
14035
|
-
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"]>>;
|
|
14036
14629
|
modelId: z.ZodOptional<z.ZodString>;
|
|
14037
14630
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
14038
14631
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14070,7 +14663,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14070
14663
|
mode: string;
|
|
14071
14664
|
inputTokens: number;
|
|
14072
14665
|
outputTokens: number;
|
|
14073
|
-
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;
|
|
14074
14667
|
cost?: number | undefined;
|
|
14075
14668
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14076
14669
|
taskId?: string | undefined;
|
|
@@ -14098,7 +14691,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14098
14691
|
mode: string;
|
|
14099
14692
|
inputTokens: number;
|
|
14100
14693
|
outputTokens: number;
|
|
14101
|
-
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;
|
|
14102
14695
|
cost?: number | undefined;
|
|
14103
14696
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14104
14697
|
taskId?: string | undefined;
|
|
@@ -14129,7 +14722,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14129
14722
|
mode: string;
|
|
14130
14723
|
inputTokens: number;
|
|
14131
14724
|
outputTokens: number;
|
|
14132
|
-
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;
|
|
14133
14726
|
cost?: number | undefined;
|
|
14134
14727
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14135
14728
|
taskId?: string | undefined;
|
|
@@ -14160,7 +14753,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
14160
14753
|
mode: string;
|
|
14161
14754
|
inputTokens: number;
|
|
14162
14755
|
outputTokens: number;
|
|
14163
|
-
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;
|
|
14164
14757
|
cost?: number | undefined;
|
|
14165
14758
|
cloudIsAuthenticated?: boolean | undefined;
|
|
14166
14759
|
taskId?: string | undefined;
|
|
@@ -14321,4 +14914,4 @@ declare const todoItemSchema: z.ZodObject<{
|
|
|
14321
14914
|
}>;
|
|
14322
14915
|
type TodoItem = z.infer<typeof todoItemSchema>;
|
|
14323
14916
|
|
|
14324
|
-
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 };
|