@roo-code/types 1.54.0 → 1.56.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 +1961 -1747
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +572 -338
- package/dist/index.d.ts +572 -338
- package/dist/index.js +1955 -1746
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1065,14 +1065,11 @@ type Values<T> = T[keyof T];
|
|
|
1065
1065
|
type Equals<X, Y> = (<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y ? 1 : 2 ? true : false;
|
|
1066
1066
|
type AssertEqual<T extends true> = T;
|
|
1067
1067
|
|
|
1068
|
-
declare const BEDROCK_CLAUDE_SONNET_4_MODEL_ID = "anthropic.claude-sonnet-4-20250514-v1:0";
|
|
1069
|
-
declare const extendedReasoningEffortsSchema: z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>;
|
|
1070
|
-
type ReasoningEffortWithMinimal = z.infer<typeof extendedReasoningEffortsSchema>;
|
|
1071
1068
|
/**
|
|
1072
1069
|
* ProviderName
|
|
1073
1070
|
*/
|
|
1074
|
-
declare const providerNames: readonly ["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"];
|
|
1075
|
-
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>;
|
|
1071
|
+
declare const providerNames: readonly ["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"];
|
|
1072
|
+
declare const providerNamesSchema: z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>;
|
|
1076
1073
|
type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
1077
1074
|
/**
|
|
1078
1075
|
* ProviderSettingsEntry
|
|
@@ -1080,15 +1077,15 @@ type ProviderName = z.infer<typeof providerNamesSchema>;
|
|
|
1080
1077
|
declare const providerSettingsEntrySchema: z.ZodObject<{
|
|
1081
1078
|
id: z.ZodString;
|
|
1082
1079
|
name: z.ZodString;
|
|
1083
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
1080
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
1084
1081
|
}, "strip", z.ZodTypeAny, {
|
|
1085
|
-
id: string;
|
|
1086
1082
|
name: string;
|
|
1087
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
1088
|
-
}, {
|
|
1089
1083
|
id: string;
|
|
1084
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
1085
|
+
}, {
|
|
1090
1086
|
name: string;
|
|
1091
|
-
|
|
1087
|
+
id: string;
|
|
1088
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
1092
1089
|
}>;
|
|
1093
1090
|
type ProviderSettingsEntry = z.infer<typeof providerSettingsEntrySchema>;
|
|
1094
1091
|
/**
|
|
@@ -1773,15 +1770,15 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1773
1770
|
version: z.ZodOptional<z.ZodString>;
|
|
1774
1771
|
id: z.ZodOptional<z.ZodString>;
|
|
1775
1772
|
}, "strip", z.ZodTypeAny, {
|
|
1776
|
-
id?: string | undefined;
|
|
1777
|
-
vendor?: string | undefined;
|
|
1778
1773
|
family?: string | undefined;
|
|
1779
1774
|
version?: string | undefined;
|
|
1780
|
-
}, {
|
|
1781
1775
|
id?: string | undefined;
|
|
1782
1776
|
vendor?: string | undefined;
|
|
1777
|
+
}, {
|
|
1783
1778
|
family?: string | undefined;
|
|
1784
1779
|
version?: string | undefined;
|
|
1780
|
+
id?: string | undefined;
|
|
1781
|
+
vendor?: string | undefined;
|
|
1785
1782
|
}>>;
|
|
1786
1783
|
} & {
|
|
1787
1784
|
apiProvider: z.ZodLiteral<"vscode-lm">;
|
|
@@ -1800,10 +1797,10 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1800
1797
|
modelMaxThinkingTokens?: number | undefined;
|
|
1801
1798
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
1802
1799
|
vsCodeLmModelSelector?: {
|
|
1803
|
-
id?: string | undefined;
|
|
1804
|
-
vendor?: string | undefined;
|
|
1805
1800
|
family?: string | undefined;
|
|
1806
1801
|
version?: string | undefined;
|
|
1802
|
+
id?: string | undefined;
|
|
1803
|
+
vendor?: string | undefined;
|
|
1807
1804
|
} | undefined;
|
|
1808
1805
|
}, {
|
|
1809
1806
|
apiProvider: "vscode-lm";
|
|
@@ -1820,10 +1817,10 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
1820
1817
|
modelMaxThinkingTokens?: number | undefined;
|
|
1821
1818
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
1822
1819
|
vsCodeLmModelSelector?: {
|
|
1823
|
-
id?: string | undefined;
|
|
1824
|
-
vendor?: string | undefined;
|
|
1825
1820
|
family?: string | undefined;
|
|
1826
1821
|
version?: string | undefined;
|
|
1822
|
+
id?: string | undefined;
|
|
1823
|
+
vendor?: string | undefined;
|
|
1827
1824
|
} | undefined;
|
|
1828
1825
|
}>, z.ZodObject<{
|
|
1829
1826
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2942,6 +2939,57 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
2942
2939
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
2943
2940
|
} & {
|
|
2944
2941
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
2942
|
+
} & {
|
|
2943
|
+
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
2944
|
+
} & {
|
|
2945
|
+
apiProvider: z.ZodLiteral<"featherless">;
|
|
2946
|
+
}, "strip", z.ZodTypeAny, {
|
|
2947
|
+
apiProvider: "featherless";
|
|
2948
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
2949
|
+
includeMaxTokens?: boolean | undefined;
|
|
2950
|
+
diffEnabled?: boolean | undefined;
|
|
2951
|
+
todoListEnabled?: boolean | undefined;
|
|
2952
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
2953
|
+
modelTemperature?: number | null | undefined;
|
|
2954
|
+
rateLimitSeconds?: number | undefined;
|
|
2955
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
2956
|
+
enableReasoningEffort?: boolean | undefined;
|
|
2957
|
+
modelMaxTokens?: number | undefined;
|
|
2958
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
2959
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
2960
|
+
apiModelId?: string | undefined;
|
|
2961
|
+
featherlessApiKey?: string | undefined;
|
|
2962
|
+
}, {
|
|
2963
|
+
apiProvider: "featherless";
|
|
2964
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
2965
|
+
includeMaxTokens?: boolean | undefined;
|
|
2966
|
+
diffEnabled?: boolean | undefined;
|
|
2967
|
+
todoListEnabled?: boolean | undefined;
|
|
2968
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
2969
|
+
modelTemperature?: number | null | undefined;
|
|
2970
|
+
rateLimitSeconds?: number | undefined;
|
|
2971
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
2972
|
+
enableReasoningEffort?: boolean | undefined;
|
|
2973
|
+
modelMaxTokens?: number | undefined;
|
|
2974
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
2975
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
2976
|
+
apiModelId?: string | undefined;
|
|
2977
|
+
featherlessApiKey?: string | undefined;
|
|
2978
|
+
}>, z.ZodObject<{
|
|
2979
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
2980
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2981
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
2982
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
2983
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2984
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
2985
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
2986
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
2987
|
+
reasoningEffort: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>>;
|
|
2988
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
2989
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
2990
|
+
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
2991
|
+
} & {
|
|
2992
|
+
apiModelId: z.ZodOptional<z.ZodString>;
|
|
2945
2993
|
} & {
|
|
2946
2994
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
2947
2995
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -3058,6 +3106,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3058
3106
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3059
3107
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
3060
3108
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
3109
|
+
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
3061
3110
|
fireworksApiKey: z.ZodOptional<z.ZodString>;
|
|
3062
3111
|
zaiApiKey: z.ZodOptional<z.ZodString>;
|
|
3063
3112
|
zaiApiLine: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"china">, z.ZodLiteral<"international">]>>;
|
|
@@ -3105,15 +3154,15 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3105
3154
|
version: z.ZodOptional<z.ZodString>;
|
|
3106
3155
|
id: z.ZodOptional<z.ZodString>;
|
|
3107
3156
|
}, "strip", z.ZodTypeAny, {
|
|
3108
|
-
id?: string | undefined;
|
|
3109
|
-
vendor?: string | undefined;
|
|
3110
3157
|
family?: string | undefined;
|
|
3111
3158
|
version?: string | undefined;
|
|
3112
|
-
}, {
|
|
3113
3159
|
id?: string | undefined;
|
|
3114
3160
|
vendor?: string | undefined;
|
|
3161
|
+
}, {
|
|
3115
3162
|
family?: string | undefined;
|
|
3116
3163
|
version?: string | undefined;
|
|
3164
|
+
id?: string | undefined;
|
|
3165
|
+
vendor?: string | undefined;
|
|
3117
3166
|
}>>;
|
|
3118
3167
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3119
3168
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3256,7 +3305,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3256
3305
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3257
3306
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3258
3307
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
3259
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
3308
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
3260
3309
|
}, "strip", z.ZodTypeAny, {
|
|
3261
3310
|
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
3262
3311
|
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
@@ -3266,7 +3315,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3266
3315
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3267
3316
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3268
3317
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3269
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
3318
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3270
3319
|
includeMaxTokens?: boolean | undefined;
|
|
3271
3320
|
diffEnabled?: boolean | undefined;
|
|
3272
3321
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3353,10 +3402,10 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3353
3402
|
ollamaModelId?: string | undefined;
|
|
3354
3403
|
ollamaBaseUrl?: string | undefined;
|
|
3355
3404
|
vsCodeLmModelSelector?: {
|
|
3356
|
-
id?: string | undefined;
|
|
3357
|
-
vendor?: string | undefined;
|
|
3358
3405
|
family?: string | undefined;
|
|
3359
3406
|
version?: string | undefined;
|
|
3407
|
+
id?: string | undefined;
|
|
3408
|
+
vendor?: string | undefined;
|
|
3360
3409
|
} | undefined;
|
|
3361
3410
|
lmStudioModelId?: string | undefined;
|
|
3362
3411
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -3399,6 +3448,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3399
3448
|
zaiApiKey?: string | undefined;
|
|
3400
3449
|
zaiApiLine?: "china" | "international" | undefined;
|
|
3401
3450
|
fireworksApiKey?: string | undefined;
|
|
3451
|
+
featherlessApiKey?: string | undefined;
|
|
3402
3452
|
ioIntelligenceModelId?: string | undefined;
|
|
3403
3453
|
ioIntelligenceApiKey?: string | undefined;
|
|
3404
3454
|
}, {
|
|
@@ -3410,7 +3460,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3410
3460
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3411
3461
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3412
3462
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3413
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
3463
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3414
3464
|
includeMaxTokens?: boolean | undefined;
|
|
3415
3465
|
diffEnabled?: boolean | undefined;
|
|
3416
3466
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3497,10 +3547,10 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3497
3547
|
ollamaModelId?: string | undefined;
|
|
3498
3548
|
ollamaBaseUrl?: string | undefined;
|
|
3499
3549
|
vsCodeLmModelSelector?: {
|
|
3500
|
-
id?: string | undefined;
|
|
3501
|
-
vendor?: string | undefined;
|
|
3502
3550
|
family?: string | undefined;
|
|
3503
3551
|
version?: string | undefined;
|
|
3552
|
+
id?: string | undefined;
|
|
3553
|
+
vendor?: string | undefined;
|
|
3504
3554
|
} | undefined;
|
|
3505
3555
|
lmStudioModelId?: string | undefined;
|
|
3506
3556
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -3543,6 +3593,7 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3543
3593
|
zaiApiKey?: string | undefined;
|
|
3544
3594
|
zaiApiLine?: "china" | "international" | undefined;
|
|
3545
3595
|
fireworksApiKey?: string | undefined;
|
|
3596
|
+
featherlessApiKey?: string | undefined;
|
|
3546
3597
|
ioIntelligenceModelId?: string | undefined;
|
|
3547
3598
|
ioIntelligenceApiKey?: string | undefined;
|
|
3548
3599
|
}>;
|
|
@@ -3570,6 +3621,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3570
3621
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
3571
3622
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
3572
3623
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
3624
|
+
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
3573
3625
|
fireworksApiKey: z.ZodOptional<z.ZodString>;
|
|
3574
3626
|
zaiApiKey: z.ZodOptional<z.ZodString>;
|
|
3575
3627
|
zaiApiLine: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"china">, z.ZodLiteral<"international">]>>;
|
|
@@ -3617,15 +3669,15 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3617
3669
|
version: z.ZodOptional<z.ZodString>;
|
|
3618
3670
|
id: z.ZodOptional<z.ZodString>;
|
|
3619
3671
|
}, "strip", z.ZodTypeAny, {
|
|
3620
|
-
id?: string | undefined;
|
|
3621
|
-
vendor?: string | undefined;
|
|
3622
3672
|
family?: string | undefined;
|
|
3623
3673
|
version?: string | undefined;
|
|
3624
|
-
}, {
|
|
3625
3674
|
id?: string | undefined;
|
|
3626
3675
|
vendor?: string | undefined;
|
|
3676
|
+
}, {
|
|
3627
3677
|
family?: string | undefined;
|
|
3628
3678
|
version?: string | undefined;
|
|
3679
|
+
id?: string | undefined;
|
|
3680
|
+
vendor?: string | undefined;
|
|
3629
3681
|
}>>;
|
|
3630
3682
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3631
3683
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3768,7 +3820,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3768
3820
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3769
3821
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
3770
3822
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
3771
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
3823
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
3772
3824
|
} & {
|
|
3773
3825
|
id: z.ZodOptional<z.ZodString>;
|
|
3774
3826
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3781,7 +3833,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3781
3833
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3782
3834
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3783
3835
|
id?: string | undefined;
|
|
3784
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
3836
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3785
3837
|
includeMaxTokens?: boolean | undefined;
|
|
3786
3838
|
diffEnabled?: boolean | undefined;
|
|
3787
3839
|
todoListEnabled?: boolean | undefined;
|
|
@@ -3868,10 +3920,10 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3868
3920
|
ollamaModelId?: string | undefined;
|
|
3869
3921
|
ollamaBaseUrl?: string | undefined;
|
|
3870
3922
|
vsCodeLmModelSelector?: {
|
|
3871
|
-
id?: string | undefined;
|
|
3872
|
-
vendor?: string | undefined;
|
|
3873
3923
|
family?: string | undefined;
|
|
3874
3924
|
version?: string | undefined;
|
|
3925
|
+
id?: string | undefined;
|
|
3926
|
+
vendor?: string | undefined;
|
|
3875
3927
|
} | undefined;
|
|
3876
3928
|
lmStudioModelId?: string | undefined;
|
|
3877
3929
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -3914,6 +3966,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3914
3966
|
zaiApiKey?: string | undefined;
|
|
3915
3967
|
zaiApiLine?: "china" | "international" | undefined;
|
|
3916
3968
|
fireworksApiKey?: string | undefined;
|
|
3969
|
+
featherlessApiKey?: string | undefined;
|
|
3917
3970
|
ioIntelligenceModelId?: string | undefined;
|
|
3918
3971
|
ioIntelligenceApiKey?: string | undefined;
|
|
3919
3972
|
}, {
|
|
@@ -3926,7 +3979,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3926
3979
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
3927
3980
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
3928
3981
|
id?: string | undefined;
|
|
3929
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
3982
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
3930
3983
|
includeMaxTokens?: boolean | undefined;
|
|
3931
3984
|
diffEnabled?: boolean | undefined;
|
|
3932
3985
|
todoListEnabled?: boolean | undefined;
|
|
@@ -4013,10 +4066,10 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4013
4066
|
ollamaModelId?: string | undefined;
|
|
4014
4067
|
ollamaBaseUrl?: string | undefined;
|
|
4015
4068
|
vsCodeLmModelSelector?: {
|
|
4016
|
-
id?: string | undefined;
|
|
4017
|
-
vendor?: string | undefined;
|
|
4018
4069
|
family?: string | undefined;
|
|
4019
4070
|
version?: string | undefined;
|
|
4071
|
+
id?: string | undefined;
|
|
4072
|
+
vendor?: string | undefined;
|
|
4020
4073
|
} | undefined;
|
|
4021
4074
|
lmStudioModelId?: string | undefined;
|
|
4022
4075
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -4059,6 +4112,7 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4059
4112
|
zaiApiKey?: string | undefined;
|
|
4060
4113
|
zaiApiLine?: "china" | "international" | undefined;
|
|
4061
4114
|
fireworksApiKey?: string | undefined;
|
|
4115
|
+
featherlessApiKey?: string | undefined;
|
|
4062
4116
|
ioIntelligenceModelId?: string | undefined;
|
|
4063
4117
|
ioIntelligenceApiKey?: string | undefined;
|
|
4064
4118
|
}>;
|
|
@@ -4737,15 +4791,15 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4737
4791
|
version: z.ZodOptional<z.ZodString>;
|
|
4738
4792
|
id: z.ZodOptional<z.ZodString>;
|
|
4739
4793
|
}, "strip", z.ZodTypeAny, {
|
|
4740
|
-
id?: string | undefined;
|
|
4741
|
-
vendor?: string | undefined;
|
|
4742
4794
|
family?: string | undefined;
|
|
4743
4795
|
version?: string | undefined;
|
|
4744
|
-
}, {
|
|
4745
4796
|
id?: string | undefined;
|
|
4746
4797
|
vendor?: string | undefined;
|
|
4798
|
+
}, {
|
|
4747
4799
|
family?: string | undefined;
|
|
4748
4800
|
version?: string | undefined;
|
|
4801
|
+
id?: string | undefined;
|
|
4802
|
+
vendor?: string | undefined;
|
|
4749
4803
|
}>>;
|
|
4750
4804
|
} & {
|
|
4751
4805
|
apiProvider: z.ZodLiteral<"vscode-lm">;
|
|
@@ -4764,10 +4818,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4764
4818
|
modelMaxThinkingTokens?: number | undefined;
|
|
4765
4819
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4766
4820
|
vsCodeLmModelSelector?: {
|
|
4767
|
-
id?: string | undefined;
|
|
4768
|
-
vendor?: string | undefined;
|
|
4769
4821
|
family?: string | undefined;
|
|
4770
4822
|
version?: string | undefined;
|
|
4823
|
+
id?: string | undefined;
|
|
4824
|
+
vendor?: string | undefined;
|
|
4771
4825
|
} | undefined;
|
|
4772
4826
|
}, {
|
|
4773
4827
|
apiProvider: "vscode-lm";
|
|
@@ -4784,10 +4838,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4784
4838
|
modelMaxThinkingTokens?: number | undefined;
|
|
4785
4839
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4786
4840
|
vsCodeLmModelSelector?: {
|
|
4787
|
-
id?: string | undefined;
|
|
4788
|
-
vendor?: string | undefined;
|
|
4789
4841
|
family?: string | undefined;
|
|
4790
4842
|
version?: string | undefined;
|
|
4843
|
+
id?: string | undefined;
|
|
4844
|
+
vendor?: string | undefined;
|
|
4791
4845
|
} | undefined;
|
|
4792
4846
|
}>, z.ZodObject<{
|
|
4793
4847
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5906,6 +5960,57 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
5906
5960
|
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
5907
5961
|
} & {
|
|
5908
5962
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
5963
|
+
} & {
|
|
5964
|
+
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
5965
|
+
} & {
|
|
5966
|
+
apiProvider: z.ZodLiteral<"featherless">;
|
|
5967
|
+
}, "strip", z.ZodTypeAny, {
|
|
5968
|
+
apiProvider: "featherless";
|
|
5969
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
5970
|
+
includeMaxTokens?: boolean | undefined;
|
|
5971
|
+
diffEnabled?: boolean | undefined;
|
|
5972
|
+
todoListEnabled?: boolean | undefined;
|
|
5973
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
5974
|
+
modelTemperature?: number | null | undefined;
|
|
5975
|
+
rateLimitSeconds?: number | undefined;
|
|
5976
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
5977
|
+
enableReasoningEffort?: boolean | undefined;
|
|
5978
|
+
modelMaxTokens?: number | undefined;
|
|
5979
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
5980
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
5981
|
+
apiModelId?: string | undefined;
|
|
5982
|
+
featherlessApiKey?: string | undefined;
|
|
5983
|
+
}, {
|
|
5984
|
+
apiProvider: "featherless";
|
|
5985
|
+
reasoningEffort?: "low" | "medium" | "high" | "minimal" | undefined;
|
|
5986
|
+
includeMaxTokens?: boolean | undefined;
|
|
5987
|
+
diffEnabled?: boolean | undefined;
|
|
5988
|
+
todoListEnabled?: boolean | undefined;
|
|
5989
|
+
fuzzyMatchThreshold?: number | undefined;
|
|
5990
|
+
modelTemperature?: number | null | undefined;
|
|
5991
|
+
rateLimitSeconds?: number | undefined;
|
|
5992
|
+
consecutiveMistakeLimit?: number | undefined;
|
|
5993
|
+
enableReasoningEffort?: boolean | undefined;
|
|
5994
|
+
modelMaxTokens?: number | undefined;
|
|
5995
|
+
modelMaxThinkingTokens?: number | undefined;
|
|
5996
|
+
verbosity?: "low" | "medium" | "high" | undefined;
|
|
5997
|
+
apiModelId?: string | undefined;
|
|
5998
|
+
featherlessApiKey?: string | undefined;
|
|
5999
|
+
}>, z.ZodObject<{
|
|
6000
|
+
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
6001
|
+
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6002
|
+
todoListEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
6003
|
+
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
6004
|
+
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6005
|
+
rateLimitSeconds: z.ZodOptional<z.ZodNumber>;
|
|
6006
|
+
consecutiveMistakeLimit: z.ZodOptional<z.ZodNumber>;
|
|
6007
|
+
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
6008
|
+
reasoningEffort: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>>;
|
|
6009
|
+
modelMaxTokens: z.ZodOptional<z.ZodNumber>;
|
|
6010
|
+
modelMaxThinkingTokens: z.ZodOptional<z.ZodNumber>;
|
|
6011
|
+
verbosity: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
6012
|
+
} & {
|
|
6013
|
+
apiModelId: z.ZodOptional<z.ZodString>;
|
|
5909
6014
|
} & {
|
|
5910
6015
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
5911
6016
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
@@ -6006,11 +6111,16 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
6006
6111
|
id?: string | undefined;
|
|
6007
6112
|
}>>;
|
|
6008
6113
|
type ProviderSettingsWithId = z.infer<typeof providerSettingsWithIdSchema>;
|
|
6009
|
-
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "enableUrlContext", "enableGrounding", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "unboundApiKey", "unboundModelId", "requestyBaseUrl", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId", "litellmUsePromptCache", "cerebrasApiKey", "sambaNovaApiKey", "zaiApiKey", "zaiApiLine", "fireworksApiKey", "ioIntelligenceModelId", "ioIntelligenceApiKey"];
|
|
6114
|
+
declare const PROVIDER_SETTINGS_KEYS: ["reasoningEffort", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleModelDimension", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "apiProvider", "includeMaxTokens", "diffEnabled", "todoListEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "consecutiveMistakeLimit", "enableReasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "verbosity", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "anthropicBeta1MContext", "claudeCodePath", "claudeCodeMaxOutputTokens", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsApiKey", "awsUseApiKey", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "awsBedrock1MContext", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "enableUrlContext", "enableGrounding", "geminiCliOAuthPath", "geminiCliProjectId", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "doubaoBaseUrl", "doubaoApiKey", "moonshotBaseUrl", "moonshotApiKey", "unboundApiKey", "unboundModelId", "requestyBaseUrl", "requestyApiKey", "requestyModelId", "fakeAi", "xaiApiKey", "groqApiKey", "huggingFaceApiKey", "huggingFaceModelId", "huggingFaceInferenceProvider", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId", "litellmUsePromptCache", "cerebrasApiKey", "sambaNovaApiKey", "zaiApiKey", "zaiApiLine", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceModelId", "ioIntelligenceApiKey"];
|
|
6010
6115
|
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
6011
6116
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6012
6117
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
6013
6118
|
declare const getApiProtocol: (provider: ProviderName | undefined, modelId?: string) => "anthropic" | "openai";
|
|
6119
|
+
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "claude-code">, {
|
|
6120
|
+
id: ProviderName;
|
|
6121
|
+
label: string;
|
|
6122
|
+
models: string[];
|
|
6123
|
+
}>;
|
|
6014
6124
|
|
|
6015
6125
|
/**
|
|
6016
6126
|
* Default delay in milliseconds after writes to allow diagnostics to detect potential problems.
|
|
@@ -6032,15 +6142,15 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6032
6142
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6033
6143
|
id: z.ZodString;
|
|
6034
6144
|
name: z.ZodString;
|
|
6035
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
6145
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
6036
6146
|
}, "strip", z.ZodTypeAny, {
|
|
6037
|
-
id: string;
|
|
6038
6147
|
name: string;
|
|
6039
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
6040
|
-
}, {
|
|
6041
6148
|
id: string;
|
|
6149
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6150
|
+
}, {
|
|
6042
6151
|
name: string;
|
|
6043
|
-
|
|
6152
|
+
id: string;
|
|
6153
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6044
6154
|
}>, "many">>;
|
|
6045
6155
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6046
6156
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -6377,9 +6487,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6377
6487
|
}[] | undefined;
|
|
6378
6488
|
currentApiConfigName?: string | undefined;
|
|
6379
6489
|
listApiConfigMeta?: {
|
|
6380
|
-
id: string;
|
|
6381
6490
|
name: string;
|
|
6382
|
-
|
|
6491
|
+
id: string;
|
|
6492
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6383
6493
|
}[] | undefined;
|
|
6384
6494
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6385
6495
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6533,9 +6643,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6533
6643
|
}[] | undefined;
|
|
6534
6644
|
currentApiConfigName?: string | undefined;
|
|
6535
6645
|
listApiConfigMeta?: {
|
|
6536
|
-
id: string;
|
|
6537
6646
|
name: string;
|
|
6538
|
-
|
|
6647
|
+
id: string;
|
|
6648
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6539
6649
|
}[] | undefined;
|
|
6540
6650
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
6541
6651
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -6693,6 +6803,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
6693
6803
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
6694
6804
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
6695
6805
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
6806
|
+
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
6696
6807
|
fireworksApiKey: z.ZodOptional<z.ZodString>;
|
|
6697
6808
|
zaiApiKey: z.ZodOptional<z.ZodString>;
|
|
6698
6809
|
zaiApiLine: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"china">, z.ZodLiteral<"international">]>>;
|
|
@@ -6740,15 +6851,15 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
6740
6851
|
version: z.ZodOptional<z.ZodString>;
|
|
6741
6852
|
id: z.ZodOptional<z.ZodString>;
|
|
6742
6853
|
}, "strip", z.ZodTypeAny, {
|
|
6743
|
-
id?: string | undefined;
|
|
6744
|
-
vendor?: string | undefined;
|
|
6745
6854
|
family?: string | undefined;
|
|
6746
6855
|
version?: string | undefined;
|
|
6747
|
-
}, {
|
|
6748
6856
|
id?: string | undefined;
|
|
6749
6857
|
vendor?: string | undefined;
|
|
6858
|
+
}, {
|
|
6750
6859
|
family?: string | undefined;
|
|
6751
6860
|
version?: string | undefined;
|
|
6861
|
+
id?: string | undefined;
|
|
6862
|
+
vendor?: string | undefined;
|
|
6752
6863
|
}>>;
|
|
6753
6864
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
6754
6865
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -6891,21 +7002,21 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
6891
7002
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
6892
7003
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
6893
7004
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
6894
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
7005
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
6895
7006
|
} & {
|
|
6896
7007
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
6897
7008
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6898
7009
|
id: z.ZodString;
|
|
6899
7010
|
name: z.ZodString;
|
|
6900
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
7011
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
6901
7012
|
}, "strip", z.ZodTypeAny, {
|
|
6902
|
-
id: string;
|
|
6903
7013
|
name: string;
|
|
6904
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
6905
|
-
}, {
|
|
6906
7014
|
id: string;
|
|
7015
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7016
|
+
}, {
|
|
6907
7017
|
name: string;
|
|
6908
|
-
|
|
7018
|
+
id: string;
|
|
7019
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
6909
7020
|
}>, "many">>;
|
|
6910
7021
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
6911
7022
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -7221,7 +7332,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7221
7332
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7222
7333
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7223
7334
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7224
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
7335
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7225
7336
|
includeMaxTokens?: boolean | undefined;
|
|
7226
7337
|
diffEnabled?: boolean | undefined;
|
|
7227
7338
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7308,10 +7419,10 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7308
7419
|
ollamaModelId?: string | undefined;
|
|
7309
7420
|
ollamaBaseUrl?: string | undefined;
|
|
7310
7421
|
vsCodeLmModelSelector?: {
|
|
7311
|
-
id?: string | undefined;
|
|
7312
|
-
vendor?: string | undefined;
|
|
7313
7422
|
family?: string | undefined;
|
|
7314
7423
|
version?: string | undefined;
|
|
7424
|
+
id?: string | undefined;
|
|
7425
|
+
vendor?: string | undefined;
|
|
7315
7426
|
} | undefined;
|
|
7316
7427
|
lmStudioModelId?: string | undefined;
|
|
7317
7428
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -7354,6 +7465,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7354
7465
|
zaiApiKey?: string | undefined;
|
|
7355
7466
|
zaiApiLine?: "china" | "international" | undefined;
|
|
7356
7467
|
fireworksApiKey?: string | undefined;
|
|
7468
|
+
featherlessApiKey?: string | undefined;
|
|
7357
7469
|
ioIntelligenceModelId?: string | undefined;
|
|
7358
7470
|
ioIntelligenceApiKey?: string | undefined;
|
|
7359
7471
|
mode?: string | undefined;
|
|
@@ -7374,9 +7486,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7374
7486
|
}[] | undefined;
|
|
7375
7487
|
currentApiConfigName?: string | undefined;
|
|
7376
7488
|
listApiConfigMeta?: {
|
|
7377
|
-
id: string;
|
|
7378
7489
|
name: string;
|
|
7379
|
-
|
|
7490
|
+
id: string;
|
|
7491
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7380
7492
|
}[] | undefined;
|
|
7381
7493
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7382
7494
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7517,7 +7629,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7517
7629
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7518
7630
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
7519
7631
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
7520
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
7632
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7521
7633
|
includeMaxTokens?: boolean | undefined;
|
|
7522
7634
|
diffEnabled?: boolean | undefined;
|
|
7523
7635
|
todoListEnabled?: boolean | undefined;
|
|
@@ -7604,10 +7716,10 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7604
7716
|
ollamaModelId?: string | undefined;
|
|
7605
7717
|
ollamaBaseUrl?: string | undefined;
|
|
7606
7718
|
vsCodeLmModelSelector?: {
|
|
7607
|
-
id?: string | undefined;
|
|
7608
|
-
vendor?: string | undefined;
|
|
7609
7719
|
family?: string | undefined;
|
|
7610
7720
|
version?: string | undefined;
|
|
7721
|
+
id?: string | undefined;
|
|
7722
|
+
vendor?: string | undefined;
|
|
7611
7723
|
} | undefined;
|
|
7612
7724
|
lmStudioModelId?: string | undefined;
|
|
7613
7725
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -7650,6 +7762,7 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7650
7762
|
zaiApiKey?: string | undefined;
|
|
7651
7763
|
zaiApiLine?: "china" | "international" | undefined;
|
|
7652
7764
|
fireworksApiKey?: string | undefined;
|
|
7765
|
+
featherlessApiKey?: string | undefined;
|
|
7653
7766
|
ioIntelligenceModelId?: string | undefined;
|
|
7654
7767
|
ioIntelligenceApiKey?: string | undefined;
|
|
7655
7768
|
mode?: string | undefined;
|
|
@@ -7670,9 +7783,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7670
7783
|
}[] | undefined;
|
|
7671
7784
|
currentApiConfigName?: string | undefined;
|
|
7672
7785
|
listApiConfigMeta?: {
|
|
7673
|
-
id: string;
|
|
7674
7786
|
name: string;
|
|
7675
|
-
|
|
7787
|
+
id: string;
|
|
7788
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
7676
7789
|
}[] | undefined;
|
|
7677
7790
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
7678
7791
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -7809,7 +7922,7 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
7809
7922
|
/**
|
|
7810
7923
|
* SecretState
|
|
7811
7924
|
*/
|
|
7812
|
-
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsApiKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "cerebrasApiKey", "deepSeekApiKey", "moonshotApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "huggingFaceApiKey", "sambaNovaApiKey", "fireworksApiKey", "ioIntelligenceApiKey"];
|
|
7925
|
+
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsApiKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "cerebrasApiKey", "deepSeekApiKey", "doubaoApiKey", "moonshotApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexGeminiApiKey", "codebaseIndexMistralApiKey", "huggingFaceApiKey", "sambaNovaApiKey", "zaiApiKey", "fireworksApiKey", "featherlessApiKey", "ioIntelligenceApiKey"];
|
|
7813
7926
|
type SecretState = Pick<ProviderSettings, (typeof SECRET_STATE_KEYS)[number]>;
|
|
7814
7927
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
7815
7928
|
/**
|
|
@@ -7893,6 +8006,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7893
8006
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
7894
8007
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
7895
8008
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
8009
|
+
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
7896
8010
|
fireworksApiKey: z.ZodOptional<z.ZodString>;
|
|
7897
8011
|
zaiApiKey: z.ZodOptional<z.ZodString>;
|
|
7898
8012
|
zaiApiLine: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"china">, z.ZodLiteral<"international">]>>;
|
|
@@ -7940,15 +8054,15 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7940
8054
|
version: z.ZodOptional<z.ZodString>;
|
|
7941
8055
|
id: z.ZodOptional<z.ZodString>;
|
|
7942
8056
|
}, "strip", z.ZodTypeAny, {
|
|
7943
|
-
id?: string | undefined;
|
|
7944
|
-
vendor?: string | undefined;
|
|
7945
8057
|
family?: string | undefined;
|
|
7946
8058
|
version?: string | undefined;
|
|
7947
|
-
}, {
|
|
7948
8059
|
id?: string | undefined;
|
|
7949
8060
|
vendor?: string | undefined;
|
|
8061
|
+
}, {
|
|
7950
8062
|
family?: string | undefined;
|
|
7951
8063
|
version?: string | undefined;
|
|
8064
|
+
id?: string | undefined;
|
|
8065
|
+
vendor?: string | undefined;
|
|
7952
8066
|
}>>;
|
|
7953
8067
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
7954
8068
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -8091,21 +8205,21 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8091
8205
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
8092
8206
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
8093
8207
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
8094
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
8208
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
8095
8209
|
} & {
|
|
8096
8210
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
8097
8211
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8098
8212
|
id: z.ZodString;
|
|
8099
8213
|
name: z.ZodString;
|
|
8100
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
8214
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
8101
8215
|
}, "strip", z.ZodTypeAny, {
|
|
8102
|
-
id: string;
|
|
8103
8216
|
name: string;
|
|
8104
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
8105
|
-
}, {
|
|
8106
8217
|
id: string;
|
|
8218
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8219
|
+
}, {
|
|
8107
8220
|
name: string;
|
|
8108
|
-
|
|
8221
|
+
id: string;
|
|
8222
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8109
8223
|
}>, "many">>;
|
|
8110
8224
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
8111
8225
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -8421,7 +8535,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8421
8535
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8422
8536
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8423
8537
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
8424
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
8538
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8425
8539
|
includeMaxTokens?: boolean | undefined;
|
|
8426
8540
|
diffEnabled?: boolean | undefined;
|
|
8427
8541
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8508,10 +8622,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8508
8622
|
ollamaModelId?: string | undefined;
|
|
8509
8623
|
ollamaBaseUrl?: string | undefined;
|
|
8510
8624
|
vsCodeLmModelSelector?: {
|
|
8511
|
-
id?: string | undefined;
|
|
8512
|
-
vendor?: string | undefined;
|
|
8513
8625
|
family?: string | undefined;
|
|
8514
8626
|
version?: string | undefined;
|
|
8627
|
+
id?: string | undefined;
|
|
8628
|
+
vendor?: string | undefined;
|
|
8515
8629
|
} | undefined;
|
|
8516
8630
|
lmStudioModelId?: string | undefined;
|
|
8517
8631
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -8554,6 +8668,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8554
8668
|
zaiApiKey?: string | undefined;
|
|
8555
8669
|
zaiApiLine?: "china" | "international" | undefined;
|
|
8556
8670
|
fireworksApiKey?: string | undefined;
|
|
8671
|
+
featherlessApiKey?: string | undefined;
|
|
8557
8672
|
ioIntelligenceModelId?: string | undefined;
|
|
8558
8673
|
ioIntelligenceApiKey?: string | undefined;
|
|
8559
8674
|
mode?: string | undefined;
|
|
@@ -8574,9 +8689,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8574
8689
|
}[] | undefined;
|
|
8575
8690
|
currentApiConfigName?: string | undefined;
|
|
8576
8691
|
listApiConfigMeta?: {
|
|
8577
|
-
id: string;
|
|
8578
8692
|
name: string;
|
|
8579
|
-
|
|
8693
|
+
id: string;
|
|
8694
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8580
8695
|
}[] | undefined;
|
|
8581
8696
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8582
8697
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -8717,7 +8832,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8717
8832
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8718
8833
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
8719
8834
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
8720
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
8835
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8721
8836
|
includeMaxTokens?: boolean | undefined;
|
|
8722
8837
|
diffEnabled?: boolean | undefined;
|
|
8723
8838
|
todoListEnabled?: boolean | undefined;
|
|
@@ -8804,10 +8919,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8804
8919
|
ollamaModelId?: string | undefined;
|
|
8805
8920
|
ollamaBaseUrl?: string | undefined;
|
|
8806
8921
|
vsCodeLmModelSelector?: {
|
|
8807
|
-
id?: string | undefined;
|
|
8808
|
-
vendor?: string | undefined;
|
|
8809
8922
|
family?: string | undefined;
|
|
8810
8923
|
version?: string | undefined;
|
|
8924
|
+
id?: string | undefined;
|
|
8925
|
+
vendor?: string | undefined;
|
|
8811
8926
|
} | undefined;
|
|
8812
8927
|
lmStudioModelId?: string | undefined;
|
|
8813
8928
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -8850,6 +8965,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8850
8965
|
zaiApiKey?: string | undefined;
|
|
8851
8966
|
zaiApiLine?: "china" | "international" | undefined;
|
|
8852
8967
|
fireworksApiKey?: string | undefined;
|
|
8968
|
+
featherlessApiKey?: string | undefined;
|
|
8853
8969
|
ioIntelligenceModelId?: string | undefined;
|
|
8854
8970
|
ioIntelligenceApiKey?: string | undefined;
|
|
8855
8971
|
mode?: string | undefined;
|
|
@@ -8870,9 +8986,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8870
8986
|
}[] | undefined;
|
|
8871
8987
|
currentApiConfigName?: string | undefined;
|
|
8872
8988
|
listApiConfigMeta?: {
|
|
8873
|
-
id: string;
|
|
8874
8989
|
name: string;
|
|
8875
|
-
|
|
8990
|
+
id: string;
|
|
8991
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
8876
8992
|
}[] | undefined;
|
|
8877
8993
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
8878
8994
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9019,7 +9135,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9019
9135
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9020
9136
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9021
9137
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9022
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
9138
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9023
9139
|
includeMaxTokens?: boolean | undefined;
|
|
9024
9140
|
diffEnabled?: boolean | undefined;
|
|
9025
9141
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9106,10 +9222,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9106
9222
|
ollamaModelId?: string | undefined;
|
|
9107
9223
|
ollamaBaseUrl?: string | undefined;
|
|
9108
9224
|
vsCodeLmModelSelector?: {
|
|
9109
|
-
id?: string | undefined;
|
|
9110
|
-
vendor?: string | undefined;
|
|
9111
9225
|
family?: string | undefined;
|
|
9112
9226
|
version?: string | undefined;
|
|
9227
|
+
id?: string | undefined;
|
|
9228
|
+
vendor?: string | undefined;
|
|
9113
9229
|
} | undefined;
|
|
9114
9230
|
lmStudioModelId?: string | undefined;
|
|
9115
9231
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -9152,6 +9268,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9152
9268
|
zaiApiKey?: string | undefined;
|
|
9153
9269
|
zaiApiLine?: "china" | "international" | undefined;
|
|
9154
9270
|
fireworksApiKey?: string | undefined;
|
|
9271
|
+
featherlessApiKey?: string | undefined;
|
|
9155
9272
|
ioIntelligenceModelId?: string | undefined;
|
|
9156
9273
|
ioIntelligenceApiKey?: string | undefined;
|
|
9157
9274
|
mode?: string | undefined;
|
|
@@ -9172,9 +9289,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9172
9289
|
}[] | undefined;
|
|
9173
9290
|
currentApiConfigName?: string | undefined;
|
|
9174
9291
|
listApiConfigMeta?: {
|
|
9175
|
-
id: string;
|
|
9176
9292
|
name: string;
|
|
9177
|
-
|
|
9293
|
+
id: string;
|
|
9294
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9178
9295
|
}[] | undefined;
|
|
9179
9296
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9180
9297
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9320,7 +9437,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9320
9437
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9321
9438
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9322
9439
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9323
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
9440
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9324
9441
|
includeMaxTokens?: boolean | undefined;
|
|
9325
9442
|
diffEnabled?: boolean | undefined;
|
|
9326
9443
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9407,10 +9524,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9407
9524
|
ollamaModelId?: string | undefined;
|
|
9408
9525
|
ollamaBaseUrl?: string | undefined;
|
|
9409
9526
|
vsCodeLmModelSelector?: {
|
|
9410
|
-
id?: string | undefined;
|
|
9411
|
-
vendor?: string | undefined;
|
|
9412
9527
|
family?: string | undefined;
|
|
9413
9528
|
version?: string | undefined;
|
|
9529
|
+
id?: string | undefined;
|
|
9530
|
+
vendor?: string | undefined;
|
|
9414
9531
|
} | undefined;
|
|
9415
9532
|
lmStudioModelId?: string | undefined;
|
|
9416
9533
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -9453,6 +9570,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9453
9570
|
zaiApiKey?: string | undefined;
|
|
9454
9571
|
zaiApiLine?: "china" | "international" | undefined;
|
|
9455
9572
|
fireworksApiKey?: string | undefined;
|
|
9573
|
+
featherlessApiKey?: string | undefined;
|
|
9456
9574
|
ioIntelligenceModelId?: string | undefined;
|
|
9457
9575
|
ioIntelligenceApiKey?: string | undefined;
|
|
9458
9576
|
mode?: string | undefined;
|
|
@@ -9473,9 +9591,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9473
9591
|
}[] | undefined;
|
|
9474
9592
|
currentApiConfigName?: string | undefined;
|
|
9475
9593
|
listApiConfigMeta?: {
|
|
9476
|
-
id: string;
|
|
9477
9594
|
name: string;
|
|
9478
|
-
|
|
9595
|
+
id: string;
|
|
9596
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9479
9597
|
}[] | undefined;
|
|
9480
9598
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9481
9599
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9624,7 +9742,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9624
9742
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9625
9743
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9626
9744
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9627
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
9745
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9628
9746
|
includeMaxTokens?: boolean | undefined;
|
|
9629
9747
|
diffEnabled?: boolean | undefined;
|
|
9630
9748
|
todoListEnabled?: boolean | undefined;
|
|
@@ -9711,10 +9829,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9711
9829
|
ollamaModelId?: string | undefined;
|
|
9712
9830
|
ollamaBaseUrl?: string | undefined;
|
|
9713
9831
|
vsCodeLmModelSelector?: {
|
|
9714
|
-
id?: string | undefined;
|
|
9715
|
-
vendor?: string | undefined;
|
|
9716
9832
|
family?: string | undefined;
|
|
9717
9833
|
version?: string | undefined;
|
|
9834
|
+
id?: string | undefined;
|
|
9835
|
+
vendor?: string | undefined;
|
|
9718
9836
|
} | undefined;
|
|
9719
9837
|
lmStudioModelId?: string | undefined;
|
|
9720
9838
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -9757,6 +9875,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9757
9875
|
zaiApiKey?: string | undefined;
|
|
9758
9876
|
zaiApiLine?: "china" | "international" | undefined;
|
|
9759
9877
|
fireworksApiKey?: string | undefined;
|
|
9878
|
+
featherlessApiKey?: string | undefined;
|
|
9760
9879
|
ioIntelligenceModelId?: string | undefined;
|
|
9761
9880
|
ioIntelligenceApiKey?: string | undefined;
|
|
9762
9881
|
mode?: string | undefined;
|
|
@@ -9777,9 +9896,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9777
9896
|
}[] | undefined;
|
|
9778
9897
|
currentApiConfigName?: string | undefined;
|
|
9779
9898
|
listApiConfigMeta?: {
|
|
9780
|
-
id: string;
|
|
9781
9899
|
name: string;
|
|
9782
|
-
|
|
9900
|
+
id: string;
|
|
9901
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9783
9902
|
}[] | undefined;
|
|
9784
9903
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
9785
9904
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -9928,7 +10047,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9928
10047
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9929
10048
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
9930
10049
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
9931
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
10050
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
9932
10051
|
includeMaxTokens?: boolean | undefined;
|
|
9933
10052
|
diffEnabled?: boolean | undefined;
|
|
9934
10053
|
todoListEnabled?: boolean | undefined;
|
|
@@ -10015,10 +10134,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10015
10134
|
ollamaModelId?: string | undefined;
|
|
10016
10135
|
ollamaBaseUrl?: string | undefined;
|
|
10017
10136
|
vsCodeLmModelSelector?: {
|
|
10018
|
-
id?: string | undefined;
|
|
10019
|
-
vendor?: string | undefined;
|
|
10020
10137
|
family?: string | undefined;
|
|
10021
10138
|
version?: string | undefined;
|
|
10139
|
+
id?: string | undefined;
|
|
10140
|
+
vendor?: string | undefined;
|
|
10022
10141
|
} | undefined;
|
|
10023
10142
|
lmStudioModelId?: string | undefined;
|
|
10024
10143
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -10061,6 +10180,7 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10061
10180
|
zaiApiKey?: string | undefined;
|
|
10062
10181
|
zaiApiLine?: "china" | "international" | undefined;
|
|
10063
10182
|
fireworksApiKey?: string | undefined;
|
|
10183
|
+
featherlessApiKey?: string | undefined;
|
|
10064
10184
|
ioIntelligenceModelId?: string | undefined;
|
|
10065
10185
|
ioIntelligenceApiKey?: string | undefined;
|
|
10066
10186
|
mode?: string | undefined;
|
|
@@ -10081,9 +10201,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10081
10201
|
}[] | undefined;
|
|
10082
10202
|
currentApiConfigName?: string | undefined;
|
|
10083
10203
|
listApiConfigMeta?: {
|
|
10084
|
-
id: string;
|
|
10085
10204
|
name: string;
|
|
10086
|
-
|
|
10205
|
+
id: string;
|
|
10206
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10087
10207
|
}[] | undefined;
|
|
10088
10208
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10089
10209
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -10310,6 +10430,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10310
10430
|
apiModelId: z.ZodOptional<z.ZodString>;
|
|
10311
10431
|
ioIntelligenceModelId: z.ZodOptional<z.ZodString>;
|
|
10312
10432
|
ioIntelligenceApiKey: z.ZodOptional<z.ZodString>;
|
|
10433
|
+
featherlessApiKey: z.ZodOptional<z.ZodString>;
|
|
10313
10434
|
fireworksApiKey: z.ZodOptional<z.ZodString>;
|
|
10314
10435
|
zaiApiKey: z.ZodOptional<z.ZodString>;
|
|
10315
10436
|
zaiApiLine: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"china">, z.ZodLiteral<"international">]>>;
|
|
@@ -10357,15 +10478,15 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10357
10478
|
version: z.ZodOptional<z.ZodString>;
|
|
10358
10479
|
id: z.ZodOptional<z.ZodString>;
|
|
10359
10480
|
}, "strip", z.ZodTypeAny, {
|
|
10360
|
-
id?: string | undefined;
|
|
10361
|
-
vendor?: string | undefined;
|
|
10362
10481
|
family?: string | undefined;
|
|
10363
10482
|
version?: string | undefined;
|
|
10364
|
-
}, {
|
|
10365
10483
|
id?: string | undefined;
|
|
10366
10484
|
vendor?: string | undefined;
|
|
10485
|
+
}, {
|
|
10367
10486
|
family?: string | undefined;
|
|
10368
10487
|
version?: string | undefined;
|
|
10488
|
+
id?: string | undefined;
|
|
10489
|
+
vendor?: string | undefined;
|
|
10369
10490
|
}>>;
|
|
10370
10491
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
10371
10492
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -10508,21 +10629,21 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10508
10629
|
anthropicBaseUrl: z.ZodOptional<z.ZodString>;
|
|
10509
10630
|
anthropicUseAuthToken: z.ZodOptional<z.ZodBoolean>;
|
|
10510
10631
|
anthropicBeta1MContext: z.ZodOptional<z.ZodBoolean>;
|
|
10511
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
10632
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
10512
10633
|
} & {
|
|
10513
10634
|
currentApiConfigName: z.ZodOptional<z.ZodString>;
|
|
10514
10635
|
listApiConfigMeta: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10515
10636
|
id: z.ZodString;
|
|
10516
10637
|
name: z.ZodString;
|
|
10517
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
10638
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
10518
10639
|
}, "strip", z.ZodTypeAny, {
|
|
10519
|
-
id: string;
|
|
10520
10640
|
name: string;
|
|
10521
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
10522
|
-
}, {
|
|
10523
10641
|
id: string;
|
|
10642
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10643
|
+
}, {
|
|
10524
10644
|
name: string;
|
|
10525
|
-
|
|
10645
|
+
id: string;
|
|
10646
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10526
10647
|
}>, "many">>;
|
|
10527
10648
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
10528
10649
|
lastShownAnnouncementId: z.ZodOptional<z.ZodString>;
|
|
@@ -10838,7 +10959,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10838
10959
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
10839
10960
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
10840
10961
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
10841
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
10962
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10842
10963
|
includeMaxTokens?: boolean | undefined;
|
|
10843
10964
|
diffEnabled?: boolean | undefined;
|
|
10844
10965
|
todoListEnabled?: boolean | undefined;
|
|
@@ -10925,10 +11046,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10925
11046
|
ollamaModelId?: string | undefined;
|
|
10926
11047
|
ollamaBaseUrl?: string | undefined;
|
|
10927
11048
|
vsCodeLmModelSelector?: {
|
|
10928
|
-
id?: string | undefined;
|
|
10929
|
-
vendor?: string | undefined;
|
|
10930
11049
|
family?: string | undefined;
|
|
10931
11050
|
version?: string | undefined;
|
|
11051
|
+
id?: string | undefined;
|
|
11052
|
+
vendor?: string | undefined;
|
|
10932
11053
|
} | undefined;
|
|
10933
11054
|
lmStudioModelId?: string | undefined;
|
|
10934
11055
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -10971,6 +11092,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10971
11092
|
zaiApiKey?: string | undefined;
|
|
10972
11093
|
zaiApiLine?: "china" | "international" | undefined;
|
|
10973
11094
|
fireworksApiKey?: string | undefined;
|
|
11095
|
+
featherlessApiKey?: string | undefined;
|
|
10974
11096
|
ioIntelligenceModelId?: string | undefined;
|
|
10975
11097
|
ioIntelligenceApiKey?: string | undefined;
|
|
10976
11098
|
mode?: string | undefined;
|
|
@@ -10991,9 +11113,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10991
11113
|
}[] | undefined;
|
|
10992
11114
|
currentApiConfigName?: string | undefined;
|
|
10993
11115
|
listApiConfigMeta?: {
|
|
10994
|
-
id: string;
|
|
10995
11116
|
name: string;
|
|
10996
|
-
|
|
11117
|
+
id: string;
|
|
11118
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
10997
11119
|
}[] | undefined;
|
|
10998
11120
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
10999
11121
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11134,7 +11256,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11134
11256
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11135
11257
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11136
11258
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11137
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
11259
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11138
11260
|
includeMaxTokens?: boolean | undefined;
|
|
11139
11261
|
diffEnabled?: boolean | undefined;
|
|
11140
11262
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11221,10 +11343,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11221
11343
|
ollamaModelId?: string | undefined;
|
|
11222
11344
|
ollamaBaseUrl?: string | undefined;
|
|
11223
11345
|
vsCodeLmModelSelector?: {
|
|
11224
|
-
id?: string | undefined;
|
|
11225
|
-
vendor?: string | undefined;
|
|
11226
11346
|
family?: string | undefined;
|
|
11227
11347
|
version?: string | undefined;
|
|
11348
|
+
id?: string | undefined;
|
|
11349
|
+
vendor?: string | undefined;
|
|
11228
11350
|
} | undefined;
|
|
11229
11351
|
lmStudioModelId?: string | undefined;
|
|
11230
11352
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -11267,6 +11389,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11267
11389
|
zaiApiKey?: string | undefined;
|
|
11268
11390
|
zaiApiLine?: "china" | "international" | undefined;
|
|
11269
11391
|
fireworksApiKey?: string | undefined;
|
|
11392
|
+
featherlessApiKey?: string | undefined;
|
|
11270
11393
|
ioIntelligenceModelId?: string | undefined;
|
|
11271
11394
|
ioIntelligenceApiKey?: string | undefined;
|
|
11272
11395
|
mode?: string | undefined;
|
|
@@ -11287,9 +11410,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11287
11410
|
}[] | undefined;
|
|
11288
11411
|
currentApiConfigName?: string | undefined;
|
|
11289
11412
|
listApiConfigMeta?: {
|
|
11290
|
-
id: string;
|
|
11291
11413
|
name: string;
|
|
11292
|
-
|
|
11414
|
+
id: string;
|
|
11415
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11293
11416
|
}[] | undefined;
|
|
11294
11417
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11295
11418
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11436,7 +11559,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11436
11559
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11437
11560
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11438
11561
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11439
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
11562
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11440
11563
|
includeMaxTokens?: boolean | undefined;
|
|
11441
11564
|
diffEnabled?: boolean | undefined;
|
|
11442
11565
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11523,10 +11646,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11523
11646
|
ollamaModelId?: string | undefined;
|
|
11524
11647
|
ollamaBaseUrl?: string | undefined;
|
|
11525
11648
|
vsCodeLmModelSelector?: {
|
|
11526
|
-
id?: string | undefined;
|
|
11527
|
-
vendor?: string | undefined;
|
|
11528
11649
|
family?: string | undefined;
|
|
11529
11650
|
version?: string | undefined;
|
|
11651
|
+
id?: string | undefined;
|
|
11652
|
+
vendor?: string | undefined;
|
|
11530
11653
|
} | undefined;
|
|
11531
11654
|
lmStudioModelId?: string | undefined;
|
|
11532
11655
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -11569,6 +11692,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11569
11692
|
zaiApiKey?: string | undefined;
|
|
11570
11693
|
zaiApiLine?: "china" | "international" | undefined;
|
|
11571
11694
|
fireworksApiKey?: string | undefined;
|
|
11695
|
+
featherlessApiKey?: string | undefined;
|
|
11572
11696
|
ioIntelligenceModelId?: string | undefined;
|
|
11573
11697
|
ioIntelligenceApiKey?: string | undefined;
|
|
11574
11698
|
mode?: string | undefined;
|
|
@@ -11589,9 +11713,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11589
11713
|
}[] | undefined;
|
|
11590
11714
|
currentApiConfigName?: string | undefined;
|
|
11591
11715
|
listApiConfigMeta?: {
|
|
11592
|
-
id: string;
|
|
11593
11716
|
name: string;
|
|
11594
|
-
|
|
11717
|
+
id: string;
|
|
11718
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11595
11719
|
}[] | undefined;
|
|
11596
11720
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11597
11721
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -11737,7 +11861,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11737
11861
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11738
11862
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
11739
11863
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
11740
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
11864
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11741
11865
|
includeMaxTokens?: boolean | undefined;
|
|
11742
11866
|
diffEnabled?: boolean | undefined;
|
|
11743
11867
|
todoListEnabled?: boolean | undefined;
|
|
@@ -11824,10 +11948,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11824
11948
|
ollamaModelId?: string | undefined;
|
|
11825
11949
|
ollamaBaseUrl?: string | undefined;
|
|
11826
11950
|
vsCodeLmModelSelector?: {
|
|
11827
|
-
id?: string | undefined;
|
|
11828
|
-
vendor?: string | undefined;
|
|
11829
11951
|
family?: string | undefined;
|
|
11830
11952
|
version?: string | undefined;
|
|
11953
|
+
id?: string | undefined;
|
|
11954
|
+
vendor?: string | undefined;
|
|
11831
11955
|
} | undefined;
|
|
11832
11956
|
lmStudioModelId?: string | undefined;
|
|
11833
11957
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -11870,6 +11994,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11870
11994
|
zaiApiKey?: string | undefined;
|
|
11871
11995
|
zaiApiLine?: "china" | "international" | undefined;
|
|
11872
11996
|
fireworksApiKey?: string | undefined;
|
|
11997
|
+
featherlessApiKey?: string | undefined;
|
|
11873
11998
|
ioIntelligenceModelId?: string | undefined;
|
|
11874
11999
|
ioIntelligenceApiKey?: string | undefined;
|
|
11875
12000
|
mode?: string | undefined;
|
|
@@ -11890,9 +12015,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11890
12015
|
}[] | undefined;
|
|
11891
12016
|
currentApiConfigName?: string | undefined;
|
|
11892
12017
|
listApiConfigMeta?: {
|
|
11893
|
-
id: string;
|
|
11894
12018
|
name: string;
|
|
11895
|
-
|
|
12019
|
+
id: string;
|
|
12020
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
11896
12021
|
}[] | undefined;
|
|
11897
12022
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
11898
12023
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12041,7 +12166,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12041
12166
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12042
12167
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12043
12168
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12044
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
12169
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12045
12170
|
includeMaxTokens?: boolean | undefined;
|
|
12046
12171
|
diffEnabled?: boolean | undefined;
|
|
12047
12172
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12128,10 +12253,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12128
12253
|
ollamaModelId?: string | undefined;
|
|
12129
12254
|
ollamaBaseUrl?: string | undefined;
|
|
12130
12255
|
vsCodeLmModelSelector?: {
|
|
12131
|
-
id?: string | undefined;
|
|
12132
|
-
vendor?: string | undefined;
|
|
12133
12256
|
family?: string | undefined;
|
|
12134
12257
|
version?: string | undefined;
|
|
12258
|
+
id?: string | undefined;
|
|
12259
|
+
vendor?: string | undefined;
|
|
12135
12260
|
} | undefined;
|
|
12136
12261
|
lmStudioModelId?: string | undefined;
|
|
12137
12262
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -12174,6 +12299,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12174
12299
|
zaiApiKey?: string | undefined;
|
|
12175
12300
|
zaiApiLine?: "china" | "international" | undefined;
|
|
12176
12301
|
fireworksApiKey?: string | undefined;
|
|
12302
|
+
featherlessApiKey?: string | undefined;
|
|
12177
12303
|
ioIntelligenceModelId?: string | undefined;
|
|
12178
12304
|
ioIntelligenceApiKey?: string | undefined;
|
|
12179
12305
|
mode?: string | undefined;
|
|
@@ -12194,9 +12320,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12194
12320
|
}[] | undefined;
|
|
12195
12321
|
currentApiConfigName?: string | undefined;
|
|
12196
12322
|
listApiConfigMeta?: {
|
|
12197
|
-
id: string;
|
|
12198
12323
|
name: string;
|
|
12199
|
-
|
|
12324
|
+
id: string;
|
|
12325
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12200
12326
|
}[] | undefined;
|
|
12201
12327
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12202
12328
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12345,7 +12471,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12345
12471
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12346
12472
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12347
12473
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12348
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
12474
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12349
12475
|
includeMaxTokens?: boolean | undefined;
|
|
12350
12476
|
diffEnabled?: boolean | undefined;
|
|
12351
12477
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12432,10 +12558,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12432
12558
|
ollamaModelId?: string | undefined;
|
|
12433
12559
|
ollamaBaseUrl?: string | undefined;
|
|
12434
12560
|
vsCodeLmModelSelector?: {
|
|
12435
|
-
id?: string | undefined;
|
|
12436
|
-
vendor?: string | undefined;
|
|
12437
12561
|
family?: string | undefined;
|
|
12438
12562
|
version?: string | undefined;
|
|
12563
|
+
id?: string | undefined;
|
|
12564
|
+
vendor?: string | undefined;
|
|
12439
12565
|
} | undefined;
|
|
12440
12566
|
lmStudioModelId?: string | undefined;
|
|
12441
12567
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -12478,6 +12604,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12478
12604
|
zaiApiKey?: string | undefined;
|
|
12479
12605
|
zaiApiLine?: "china" | "international" | undefined;
|
|
12480
12606
|
fireworksApiKey?: string | undefined;
|
|
12607
|
+
featherlessApiKey?: string | undefined;
|
|
12481
12608
|
ioIntelligenceModelId?: string | undefined;
|
|
12482
12609
|
ioIntelligenceApiKey?: string | undefined;
|
|
12483
12610
|
mode?: string | undefined;
|
|
@@ -12498,9 +12625,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12498
12625
|
}[] | undefined;
|
|
12499
12626
|
currentApiConfigName?: string | undefined;
|
|
12500
12627
|
listApiConfigMeta?: {
|
|
12501
|
-
id: string;
|
|
12502
12628
|
name: string;
|
|
12503
|
-
|
|
12629
|
+
id: string;
|
|
12630
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12504
12631
|
}[] | undefined;
|
|
12505
12632
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12506
12633
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12680,7 +12807,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12680
12807
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12681
12808
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
12682
12809
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
12683
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
12810
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12684
12811
|
includeMaxTokens?: boolean | undefined;
|
|
12685
12812
|
diffEnabled?: boolean | undefined;
|
|
12686
12813
|
todoListEnabled?: boolean | undefined;
|
|
@@ -12767,10 +12894,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12767
12894
|
ollamaModelId?: string | undefined;
|
|
12768
12895
|
ollamaBaseUrl?: string | undefined;
|
|
12769
12896
|
vsCodeLmModelSelector?: {
|
|
12770
|
-
id?: string | undefined;
|
|
12771
|
-
vendor?: string | undefined;
|
|
12772
12897
|
family?: string | undefined;
|
|
12773
12898
|
version?: string | undefined;
|
|
12899
|
+
id?: string | undefined;
|
|
12900
|
+
vendor?: string | undefined;
|
|
12774
12901
|
} | undefined;
|
|
12775
12902
|
lmStudioModelId?: string | undefined;
|
|
12776
12903
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -12813,6 +12940,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12813
12940
|
zaiApiKey?: string | undefined;
|
|
12814
12941
|
zaiApiLine?: "china" | "international" | undefined;
|
|
12815
12942
|
fireworksApiKey?: string | undefined;
|
|
12943
|
+
featherlessApiKey?: string | undefined;
|
|
12816
12944
|
ioIntelligenceModelId?: string | undefined;
|
|
12817
12945
|
ioIntelligenceApiKey?: string | undefined;
|
|
12818
12946
|
mode?: string | undefined;
|
|
@@ -12833,9 +12961,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12833
12961
|
}[] | undefined;
|
|
12834
12962
|
currentApiConfigName?: string | undefined;
|
|
12835
12963
|
listApiConfigMeta?: {
|
|
12836
|
-
id: string;
|
|
12837
12964
|
name: string;
|
|
12838
|
-
|
|
12965
|
+
id: string;
|
|
12966
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
12839
12967
|
}[] | undefined;
|
|
12840
12968
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
12841
12969
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -12998,7 +13126,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12998
13126
|
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
12999
13127
|
codebaseIndexGeminiApiKey?: string | undefined;
|
|
13000
13128
|
codebaseIndexMistralApiKey?: string | undefined;
|
|
13001
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
13129
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
13002
13130
|
includeMaxTokens?: boolean | undefined;
|
|
13003
13131
|
diffEnabled?: boolean | undefined;
|
|
13004
13132
|
todoListEnabled?: boolean | undefined;
|
|
@@ -13085,10 +13213,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13085
13213
|
ollamaModelId?: string | undefined;
|
|
13086
13214
|
ollamaBaseUrl?: string | undefined;
|
|
13087
13215
|
vsCodeLmModelSelector?: {
|
|
13088
|
-
id?: string | undefined;
|
|
13089
|
-
vendor?: string | undefined;
|
|
13090
13216
|
family?: string | undefined;
|
|
13091
13217
|
version?: string | undefined;
|
|
13218
|
+
id?: string | undefined;
|
|
13219
|
+
vendor?: string | undefined;
|
|
13092
13220
|
} | undefined;
|
|
13093
13221
|
lmStudioModelId?: string | undefined;
|
|
13094
13222
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -13131,6 +13259,7 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13131
13259
|
zaiApiKey?: string | undefined;
|
|
13132
13260
|
zaiApiLine?: "china" | "international" | undefined;
|
|
13133
13261
|
fireworksApiKey?: string | undefined;
|
|
13262
|
+
featherlessApiKey?: string | undefined;
|
|
13134
13263
|
ioIntelligenceModelId?: string | undefined;
|
|
13135
13264
|
ioIntelligenceApiKey?: string | undefined;
|
|
13136
13265
|
mode?: string | undefined;
|
|
@@ -13151,9 +13280,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13151
13280
|
}[] | undefined;
|
|
13152
13281
|
currentApiConfigName?: string | undefined;
|
|
13153
13282
|
listApiConfigMeta?: {
|
|
13154
|
-
id: string;
|
|
13155
13283
|
name: string;
|
|
13156
|
-
|
|
13284
|
+
id: string;
|
|
13285
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
13157
13286
|
}[] | undefined;
|
|
13158
13287
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
13159
13288
|
lastShownAnnouncementId?: string | undefined;
|
|
@@ -14708,8 +14837,8 @@ declare const modeMarketplaceItemSchema: z.ZodObject<{
|
|
|
14708
14837
|
content: z.ZodString;
|
|
14709
14838
|
}, "strip", z.ZodTypeAny, {
|
|
14710
14839
|
description: string;
|
|
14711
|
-
id: string;
|
|
14712
14840
|
name: string;
|
|
14841
|
+
id: string;
|
|
14713
14842
|
content: string;
|
|
14714
14843
|
prerequisites?: string[] | undefined;
|
|
14715
14844
|
author?: string | undefined;
|
|
@@ -14717,8 +14846,8 @@ declare const modeMarketplaceItemSchema: z.ZodObject<{
|
|
|
14717
14846
|
tags?: string[] | undefined;
|
|
14718
14847
|
}, {
|
|
14719
14848
|
description: string;
|
|
14720
|
-
id: string;
|
|
14721
14849
|
name: string;
|
|
14850
|
+
id: string;
|
|
14722
14851
|
content: string;
|
|
14723
14852
|
prerequisites?: string[] | undefined;
|
|
14724
14853
|
author?: string | undefined;
|
|
@@ -14795,8 +14924,8 @@ declare const mcpMarketplaceItemSchema: z.ZodObject<{
|
|
|
14795
14924
|
}>, "many">>;
|
|
14796
14925
|
}, "strip", z.ZodTypeAny, {
|
|
14797
14926
|
description: string;
|
|
14798
|
-
id: string;
|
|
14799
14927
|
name: string;
|
|
14928
|
+
id: string;
|
|
14800
14929
|
url: string;
|
|
14801
14930
|
content: string | {
|
|
14802
14931
|
name: string;
|
|
@@ -14821,8 +14950,8 @@ declare const mcpMarketplaceItemSchema: z.ZodObject<{
|
|
|
14821
14950
|
tags?: string[] | undefined;
|
|
14822
14951
|
}, {
|
|
14823
14952
|
description: string;
|
|
14824
|
-
id: string;
|
|
14825
14953
|
name: string;
|
|
14954
|
+
id: string;
|
|
14826
14955
|
url: string;
|
|
14827
14956
|
content: string | {
|
|
14828
14957
|
name: string;
|
|
@@ -14865,8 +14994,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
14865
14994
|
}, "strip", z.ZodTypeAny, {
|
|
14866
14995
|
type: "mode";
|
|
14867
14996
|
description: string;
|
|
14868
|
-
id: string;
|
|
14869
14997
|
name: string;
|
|
14998
|
+
id: string;
|
|
14870
14999
|
content: string;
|
|
14871
15000
|
prerequisites?: string[] | undefined;
|
|
14872
15001
|
author?: string | undefined;
|
|
@@ -14875,8 +15004,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
14875
15004
|
}, {
|
|
14876
15005
|
type: "mode";
|
|
14877
15006
|
description: string;
|
|
14878
|
-
id: string;
|
|
14879
15007
|
name: string;
|
|
15008
|
+
id: string;
|
|
14880
15009
|
content: string;
|
|
14881
15010
|
prerequisites?: string[] | undefined;
|
|
14882
15011
|
author?: string | undefined;
|
|
@@ -14954,8 +15083,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
14954
15083
|
}, "strip", z.ZodTypeAny, {
|
|
14955
15084
|
type: "mcp";
|
|
14956
15085
|
description: string;
|
|
14957
|
-
id: string;
|
|
14958
15086
|
name: string;
|
|
15087
|
+
id: string;
|
|
14959
15088
|
url: string;
|
|
14960
15089
|
content: string | {
|
|
14961
15090
|
name: string;
|
|
@@ -14981,8 +15110,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
14981
15110
|
}, {
|
|
14982
15111
|
type: "mcp";
|
|
14983
15112
|
description: string;
|
|
14984
|
-
id: string;
|
|
14985
15113
|
name: string;
|
|
15114
|
+
id: string;
|
|
14986
15115
|
url: string;
|
|
14987
15116
|
content: string | {
|
|
14988
15117
|
name: string;
|
|
@@ -15616,6 +15745,11 @@ declare const DEFAULT_MODES: readonly ModeConfig[];
|
|
|
15616
15745
|
declare const reasoningEfforts: readonly ["low", "medium", "high"];
|
|
15617
15746
|
declare const reasoningEffortsSchema: z.ZodEnum<["low", "medium", "high"]>;
|
|
15618
15747
|
type ReasoningEffort = z.infer<typeof reasoningEffortsSchema>;
|
|
15748
|
+
/**
|
|
15749
|
+
* ReasoningEffortWithMinimal
|
|
15750
|
+
*/
|
|
15751
|
+
declare const reasoningEffortWithMinimalSchema: z.ZodUnion<[z.ZodEnum<["low", "medium", "high"]>, z.ZodLiteral<"minimal">]>;
|
|
15752
|
+
type ReasoningEffortWithMinimal = z.infer<typeof reasoningEffortWithMinimalSchema>;
|
|
15619
15753
|
/**
|
|
15620
15754
|
* Verbosity
|
|
15621
15755
|
*/
|
|
@@ -15731,6 +15865,19 @@ declare const modelInfoSchema: z.ZodObject<{
|
|
|
15731
15865
|
}>;
|
|
15732
15866
|
type ModelInfo = z.infer<typeof modelInfoSchema>;
|
|
15733
15867
|
|
|
15868
|
+
/**
|
|
15869
|
+
* Configuration for models that should use simplified single-file read_file tool
|
|
15870
|
+
* These models will use the simpler <read_file><path>...</path></read_file> format
|
|
15871
|
+
* instead of the more complex multi-file args format
|
|
15872
|
+
*/
|
|
15873
|
+
declare const SINGLE_FILE_READ_MODELS: Set<string>;
|
|
15874
|
+
/**
|
|
15875
|
+
* Check if a model should use single file read format
|
|
15876
|
+
* @param modelId The model ID to check
|
|
15877
|
+
* @returns true if the model should use single file reads
|
|
15878
|
+
*/
|
|
15879
|
+
declare function shouldUseSingleFileRead(modelId: string): boolean;
|
|
15880
|
+
|
|
15734
15881
|
/**
|
|
15735
15882
|
* ToolGroup
|
|
15736
15883
|
*/
|
|
@@ -15880,7 +16027,7 @@ declare const appPropertiesSchema: z.ZodObject<{
|
|
|
15880
16027
|
type AppProperties = z.infer<typeof appPropertiesSchema>;
|
|
15881
16028
|
declare const taskPropertiesSchema: z.ZodObject<{
|
|
15882
16029
|
taskId: z.ZodOptional<z.ZodString>;
|
|
15883
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
16030
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
15884
16031
|
modelId: z.ZodOptional<z.ZodString>;
|
|
15885
16032
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
15886
16033
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15903,7 +16050,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
15903
16050
|
}, "strip", z.ZodTypeAny, {
|
|
15904
16051
|
isSubtask?: boolean | undefined;
|
|
15905
16052
|
taskId?: string | undefined;
|
|
15906
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16053
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
15907
16054
|
modelId?: string | undefined;
|
|
15908
16055
|
diffStrategy?: string | undefined;
|
|
15909
16056
|
todos?: {
|
|
@@ -15915,7 +16062,7 @@ declare const taskPropertiesSchema: z.ZodObject<{
|
|
|
15915
16062
|
}, {
|
|
15916
16063
|
isSubtask?: boolean | undefined;
|
|
15917
16064
|
taskId?: string | undefined;
|
|
15918
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16065
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
15919
16066
|
modelId?: string | undefined;
|
|
15920
16067
|
diffStrategy?: string | undefined;
|
|
15921
16068
|
todos?: {
|
|
@@ -15945,7 +16092,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
15945
16092
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
15946
16093
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
15947
16094
|
taskId: z.ZodOptional<z.ZodString>;
|
|
15948
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
16095
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
15949
16096
|
modelId: z.ZodOptional<z.ZodString>;
|
|
15950
16097
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
15951
16098
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -15983,7 +16130,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
15983
16130
|
language: string;
|
|
15984
16131
|
isSubtask?: boolean | undefined;
|
|
15985
16132
|
taskId?: string | undefined;
|
|
15986
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16133
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
15987
16134
|
cloudIsAuthenticated?: boolean | undefined;
|
|
15988
16135
|
modelId?: string | undefined;
|
|
15989
16136
|
diffStrategy?: string | undefined;
|
|
@@ -16006,7 +16153,7 @@ declare const telemetryPropertiesSchema: z.ZodObject<{
|
|
|
16006
16153
|
language: string;
|
|
16007
16154
|
isSubtask?: boolean | undefined;
|
|
16008
16155
|
taskId?: string | undefined;
|
|
16009
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16156
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16010
16157
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16011
16158
|
modelId?: string | undefined;
|
|
16012
16159
|
diffStrategy?: string | undefined;
|
|
@@ -16038,7 +16185,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16038
16185
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16039
16186
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16040
16187
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16041
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
16188
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16042
16189
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16043
16190
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16044
16191
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16076,7 +16223,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16076
16223
|
language: string;
|
|
16077
16224
|
isSubtask?: boolean | undefined;
|
|
16078
16225
|
taskId?: string | undefined;
|
|
16079
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16226
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16080
16227
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16081
16228
|
modelId?: string | undefined;
|
|
16082
16229
|
diffStrategy?: string | undefined;
|
|
@@ -16099,7 +16246,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16099
16246
|
language: string;
|
|
16100
16247
|
isSubtask?: boolean | undefined;
|
|
16101
16248
|
taskId?: string | undefined;
|
|
16102
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16249
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16103
16250
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16104
16251
|
modelId?: string | undefined;
|
|
16105
16252
|
diffStrategy?: string | undefined;
|
|
@@ -16125,7 +16272,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16125
16272
|
language: string;
|
|
16126
16273
|
isSubtask?: boolean | undefined;
|
|
16127
16274
|
taskId?: string | undefined;
|
|
16128
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16275
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16129
16276
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16130
16277
|
modelId?: string | undefined;
|
|
16131
16278
|
diffStrategy?: string | undefined;
|
|
@@ -16151,7 +16298,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16151
16298
|
language: string;
|
|
16152
16299
|
isSubtask?: boolean | undefined;
|
|
16153
16300
|
taskId?: string | undefined;
|
|
16154
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16301
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16155
16302
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16156
16303
|
modelId?: string | undefined;
|
|
16157
16304
|
diffStrategy?: string | undefined;
|
|
@@ -16299,7 +16446,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16299
16446
|
repositoryUrl: z.ZodOptional<z.ZodString>;
|
|
16300
16447
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16301
16448
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16302
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
16449
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16303
16450
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16304
16451
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16305
16452
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16368,7 +16515,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16368
16515
|
editorName: string;
|
|
16369
16516
|
language: string;
|
|
16370
16517
|
isSubtask?: boolean | undefined;
|
|
16371
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16518
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16372
16519
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16373
16520
|
modelId?: string | undefined;
|
|
16374
16521
|
diffStrategy?: string | undefined;
|
|
@@ -16422,7 +16569,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16422
16569
|
editorName: string;
|
|
16423
16570
|
language: string;
|
|
16424
16571
|
isSubtask?: boolean | undefined;
|
|
16425
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16572
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16426
16573
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16427
16574
|
modelId?: string | undefined;
|
|
16428
16575
|
diffStrategy?: string | undefined;
|
|
@@ -16479,7 +16626,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16479
16626
|
editorName: string;
|
|
16480
16627
|
language: string;
|
|
16481
16628
|
isSubtask?: boolean | undefined;
|
|
16482
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16629
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16483
16630
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16484
16631
|
modelId?: string | undefined;
|
|
16485
16632
|
diffStrategy?: string | undefined;
|
|
@@ -16536,7 +16683,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16536
16683
|
editorName: string;
|
|
16537
16684
|
language: string;
|
|
16538
16685
|
isSubtask?: boolean | undefined;
|
|
16539
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16686
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16540
16687
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16541
16688
|
modelId?: string | undefined;
|
|
16542
16689
|
diffStrategy?: string | undefined;
|
|
@@ -16562,7 +16709,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16562
16709
|
repositoryName: z.ZodOptional<z.ZodString>;
|
|
16563
16710
|
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
16564
16711
|
taskId: z.ZodOptional<z.ZodString>;
|
|
16565
|
-
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "io-intelligence", "roo"]>>;
|
|
16712
|
+
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "claude-code", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "gemini-cli", "openai-native", "mistral", "moonshot", "deepseek", "doubao", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm", "huggingface", "cerebras", "sambanova", "zai", "fireworks", "featherless", "io-intelligence", "roo"]>>;
|
|
16566
16713
|
modelId: z.ZodOptional<z.ZodString>;
|
|
16567
16714
|
diffStrategy: z.ZodOptional<z.ZodString>;
|
|
16568
16715
|
isSubtask: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16603,7 +16750,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16603
16750
|
cost?: number | undefined;
|
|
16604
16751
|
isSubtask?: boolean | undefined;
|
|
16605
16752
|
taskId?: string | undefined;
|
|
16606
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16753
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16607
16754
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16608
16755
|
modelId?: string | undefined;
|
|
16609
16756
|
diffStrategy?: string | undefined;
|
|
@@ -16631,7 +16778,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16631
16778
|
cost?: number | undefined;
|
|
16632
16779
|
isSubtask?: boolean | undefined;
|
|
16633
16780
|
taskId?: string | undefined;
|
|
16634
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16781
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16635
16782
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16636
16783
|
modelId?: string | undefined;
|
|
16637
16784
|
diffStrategy?: string | undefined;
|
|
@@ -16662,7 +16809,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16662
16809
|
cost?: number | undefined;
|
|
16663
16810
|
isSubtask?: boolean | undefined;
|
|
16664
16811
|
taskId?: string | undefined;
|
|
16665
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16812
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16666
16813
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16667
16814
|
modelId?: string | undefined;
|
|
16668
16815
|
diffStrategy?: string | undefined;
|
|
@@ -16693,7 +16840,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
16693
16840
|
cost?: number | undefined;
|
|
16694
16841
|
isSubtask?: boolean | undefined;
|
|
16695
16842
|
taskId?: string | undefined;
|
|
16696
|
-
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "io-intelligence" | "roo" | undefined;
|
|
16843
|
+
apiProvider?: "openai" | "anthropic" | "ollama" | "gemini" | "mistral" | "claude-code" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini-cli" | "openai-native" | "moonshot" | "deepseek" | "doubao" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | "huggingface" | "cerebras" | "sambanova" | "zai" | "fireworks" | "featherless" | "io-intelligence" | "roo" | undefined;
|
|
16697
16844
|
cloudIsAuthenticated?: boolean | undefined;
|
|
16698
16845
|
modelId?: string | undefined;
|
|
16699
16846
|
diffStrategy?: string | undefined;
|
|
@@ -17451,6 +17598,7 @@ declare const BEDROCK_REGIONS: {
|
|
|
17451
17598
|
value: string;
|
|
17452
17599
|
label: string;
|
|
17453
17600
|
}[];
|
|
17601
|
+
declare const BEDROCK_CLAUDE_SONNET_4_MODEL_ID = "anthropic.claude-sonnet-4-20250514-v1:0";
|
|
17454
17602
|
|
|
17455
17603
|
type CerebrasModelId = keyof typeof cerebrasModels;
|
|
17456
17604
|
declare const cerebrasDefaultModelId: CerebrasModelId;
|
|
@@ -17916,6 +18064,182 @@ declare const deepSeekModels: {
|
|
|
17916
18064
|
};
|
|
17917
18065
|
declare const DEEP_SEEK_DEFAULT_TEMPERATURE = 0.6;
|
|
17918
18066
|
|
|
18067
|
+
declare const doubaoDefaultModelId = "doubao-seed-1-6-250615";
|
|
18068
|
+
declare const doubaoModels: {
|
|
18069
|
+
readonly "doubao-seed-1-6-250615": {
|
|
18070
|
+
readonly maxTokens: 32768;
|
|
18071
|
+
readonly contextWindow: 128000;
|
|
18072
|
+
readonly supportsImages: true;
|
|
18073
|
+
readonly supportsPromptCache: true;
|
|
18074
|
+
readonly inputPrice: 0.0001;
|
|
18075
|
+
readonly outputPrice: 0.0004;
|
|
18076
|
+
readonly cacheWritesPrice: 0.0001;
|
|
18077
|
+
readonly cacheReadsPrice: 0.00002;
|
|
18078
|
+
readonly description: "Doubao Seed 1.6 is a powerful model designed for high-performance tasks with extensive context handling.";
|
|
18079
|
+
};
|
|
18080
|
+
readonly "doubao-seed-1-6-thinking-250715": {
|
|
18081
|
+
readonly maxTokens: 32768;
|
|
18082
|
+
readonly contextWindow: 128000;
|
|
18083
|
+
readonly supportsImages: true;
|
|
18084
|
+
readonly supportsPromptCache: true;
|
|
18085
|
+
readonly inputPrice: 0.0002;
|
|
18086
|
+
readonly outputPrice: 0.0008;
|
|
18087
|
+
readonly cacheWritesPrice: 0.0002;
|
|
18088
|
+
readonly cacheReadsPrice: 0.00004;
|
|
18089
|
+
readonly description: "Doubao Seed 1.6 Thinking is optimized for reasoning tasks, providing enhanced performance in complex problem-solving scenarios.";
|
|
18090
|
+
};
|
|
18091
|
+
readonly "doubao-seed-1-6-flash-250715": {
|
|
18092
|
+
readonly maxTokens: 32768;
|
|
18093
|
+
readonly contextWindow: 128000;
|
|
18094
|
+
readonly supportsImages: true;
|
|
18095
|
+
readonly supportsPromptCache: true;
|
|
18096
|
+
readonly inputPrice: 0.00015;
|
|
18097
|
+
readonly outputPrice: 0.0006;
|
|
18098
|
+
readonly cacheWritesPrice: 0.00015;
|
|
18099
|
+
readonly cacheReadsPrice: 0.00003;
|
|
18100
|
+
readonly description: "Doubao Seed 1.6 Flash is tailored for speed and efficiency, making it ideal for applications requiring rapid responses.";
|
|
18101
|
+
};
|
|
18102
|
+
};
|
|
18103
|
+
declare const doubaoDefaultModelInfo: ModelInfo;
|
|
18104
|
+
declare const DOUBAO_API_BASE_URL = "https://ark.cn-beijing.volces.com/api/v3";
|
|
18105
|
+
declare const DOUBAO_API_CHAT_PATH = "/chat/completions";
|
|
18106
|
+
|
|
18107
|
+
type FeatherlessModelId = "deepseek-ai/DeepSeek-V3-0324" | "deepseek-ai/DeepSeek-R1-0528" | "moonshotai/Kimi-K2-Instruct" | "openai/gpt-oss-120b" | "Qwen/Qwen3-Coder-480B-A35B-Instruct";
|
|
18108
|
+
declare const featherlessModels: {
|
|
18109
|
+
readonly "deepseek-ai/DeepSeek-V3-0324": {
|
|
18110
|
+
readonly maxTokens: 4096;
|
|
18111
|
+
readonly contextWindow: 32678;
|
|
18112
|
+
readonly supportsImages: false;
|
|
18113
|
+
readonly supportsPromptCache: false;
|
|
18114
|
+
readonly inputPrice: 0;
|
|
18115
|
+
readonly outputPrice: 0;
|
|
18116
|
+
readonly description: "DeepSeek V3 0324 model.";
|
|
18117
|
+
};
|
|
18118
|
+
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
18119
|
+
readonly maxTokens: 4096;
|
|
18120
|
+
readonly contextWindow: 32678;
|
|
18121
|
+
readonly supportsImages: false;
|
|
18122
|
+
readonly supportsPromptCache: false;
|
|
18123
|
+
readonly inputPrice: 0;
|
|
18124
|
+
readonly outputPrice: 0;
|
|
18125
|
+
readonly description: "DeepSeek R1 0528 model.";
|
|
18126
|
+
};
|
|
18127
|
+
readonly "moonshotai/Kimi-K2-Instruct": {
|
|
18128
|
+
readonly maxTokens: 4096;
|
|
18129
|
+
readonly contextWindow: 32678;
|
|
18130
|
+
readonly supportsImages: false;
|
|
18131
|
+
readonly supportsPromptCache: false;
|
|
18132
|
+
readonly inputPrice: 0;
|
|
18133
|
+
readonly outputPrice: 0;
|
|
18134
|
+
readonly description: "Kimi K2 Instruct model.";
|
|
18135
|
+
};
|
|
18136
|
+
readonly "openai/gpt-oss-120b": {
|
|
18137
|
+
readonly maxTokens: 4096;
|
|
18138
|
+
readonly contextWindow: 32678;
|
|
18139
|
+
readonly supportsImages: false;
|
|
18140
|
+
readonly supportsPromptCache: false;
|
|
18141
|
+
readonly inputPrice: 0;
|
|
18142
|
+
readonly outputPrice: 0;
|
|
18143
|
+
readonly description: "GPT-OSS 120B model.";
|
|
18144
|
+
};
|
|
18145
|
+
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct": {
|
|
18146
|
+
readonly maxTokens: 4096;
|
|
18147
|
+
readonly contextWindow: 32678;
|
|
18148
|
+
readonly supportsImages: false;
|
|
18149
|
+
readonly supportsPromptCache: false;
|
|
18150
|
+
readonly inputPrice: 0;
|
|
18151
|
+
readonly outputPrice: 0;
|
|
18152
|
+
readonly description: "Qwen3 Coder 480B A35B Instruct model.";
|
|
18153
|
+
};
|
|
18154
|
+
};
|
|
18155
|
+
declare const featherlessDefaultModelId: FeatherlessModelId;
|
|
18156
|
+
|
|
18157
|
+
type FireworksModelId = "accounts/fireworks/models/kimi-k2-instruct" | "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507" | "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct" | "accounts/fireworks/models/deepseek-r1-0528" | "accounts/fireworks/models/deepseek-v3" | "accounts/fireworks/models/glm-4p5" | "accounts/fireworks/models/glm-4p5-air" | "accounts/fireworks/models/gpt-oss-20b" | "accounts/fireworks/models/gpt-oss-120b";
|
|
18158
|
+
declare const fireworksDefaultModelId: FireworksModelId;
|
|
18159
|
+
declare const fireworksModels: {
|
|
18160
|
+
readonly "accounts/fireworks/models/kimi-k2-instruct": {
|
|
18161
|
+
readonly maxTokens: 16384;
|
|
18162
|
+
readonly contextWindow: 128000;
|
|
18163
|
+
readonly supportsImages: false;
|
|
18164
|
+
readonly supportsPromptCache: false;
|
|
18165
|
+
readonly inputPrice: 0.6;
|
|
18166
|
+
readonly outputPrice: 2.5;
|
|
18167
|
+
readonly description: "Kimi K2 is a state-of-the-art mixture-of-experts (MoE) language model with 32 billion activated parameters and 1 trillion total parameters. Trained with the Muon optimizer, Kimi K2 achieves exceptional performance across frontier knowledge, reasoning, and coding tasks while being meticulously optimized for agentic capabilities.";
|
|
18168
|
+
};
|
|
18169
|
+
readonly "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507": {
|
|
18170
|
+
readonly maxTokens: 32768;
|
|
18171
|
+
readonly contextWindow: 256000;
|
|
18172
|
+
readonly supportsImages: false;
|
|
18173
|
+
readonly supportsPromptCache: false;
|
|
18174
|
+
readonly inputPrice: 0.22;
|
|
18175
|
+
readonly outputPrice: 0.88;
|
|
18176
|
+
readonly description: "Latest Qwen3 thinking model, competitive against the best closed source models in Jul 2025.";
|
|
18177
|
+
};
|
|
18178
|
+
readonly "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct": {
|
|
18179
|
+
readonly maxTokens: 32768;
|
|
18180
|
+
readonly contextWindow: 256000;
|
|
18181
|
+
readonly supportsImages: false;
|
|
18182
|
+
readonly supportsPromptCache: false;
|
|
18183
|
+
readonly inputPrice: 0.45;
|
|
18184
|
+
readonly outputPrice: 1.8;
|
|
18185
|
+
readonly description: "Qwen3's most agentic code model to date.";
|
|
18186
|
+
};
|
|
18187
|
+
readonly "accounts/fireworks/models/deepseek-r1-0528": {
|
|
18188
|
+
readonly maxTokens: 20480;
|
|
18189
|
+
readonly contextWindow: 160000;
|
|
18190
|
+
readonly supportsImages: false;
|
|
18191
|
+
readonly supportsPromptCache: false;
|
|
18192
|
+
readonly inputPrice: 3;
|
|
18193
|
+
readonly outputPrice: 8;
|
|
18194
|
+
readonly description: "05/28 updated checkpoint of Deepseek R1. Its overall performance is now approaching that of leading models, such as O3 and Gemini 2.5 Pro. Compared to the previous version, the upgraded model shows significant improvements in handling complex reasoning tasks, and this version also offers a reduced hallucination rate, enhanced support for function calling, and better experience for vibe coding. Note that fine-tuning for this model is only available through contacting fireworks at https://fireworks.ai/company/contact-us.";
|
|
18195
|
+
};
|
|
18196
|
+
readonly "accounts/fireworks/models/deepseek-v3": {
|
|
18197
|
+
readonly maxTokens: 16384;
|
|
18198
|
+
readonly contextWindow: 128000;
|
|
18199
|
+
readonly supportsImages: false;
|
|
18200
|
+
readonly supportsPromptCache: false;
|
|
18201
|
+
readonly inputPrice: 0.9;
|
|
18202
|
+
readonly outputPrice: 0.9;
|
|
18203
|
+
readonly description: "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token from Deepseek. Note that fine-tuning for this model is only available through contacting fireworks at https://fireworks.ai/company/contact-us.";
|
|
18204
|
+
};
|
|
18205
|
+
readonly "accounts/fireworks/models/glm-4p5": {
|
|
18206
|
+
readonly maxTokens: 16384;
|
|
18207
|
+
readonly contextWindow: 128000;
|
|
18208
|
+
readonly supportsImages: false;
|
|
18209
|
+
readonly supportsPromptCache: false;
|
|
18210
|
+
readonly inputPrice: 0.55;
|
|
18211
|
+
readonly outputPrice: 2.19;
|
|
18212
|
+
readonly description: "Z.ai GLM-4.5 with 355B total parameters and 32B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
18213
|
+
};
|
|
18214
|
+
readonly "accounts/fireworks/models/glm-4p5-air": {
|
|
18215
|
+
readonly maxTokens: 16384;
|
|
18216
|
+
readonly contextWindow: 128000;
|
|
18217
|
+
readonly supportsImages: false;
|
|
18218
|
+
readonly supportsPromptCache: false;
|
|
18219
|
+
readonly inputPrice: 0.55;
|
|
18220
|
+
readonly outputPrice: 2.19;
|
|
18221
|
+
readonly description: "Z.ai GLM-4.5-Air with 106B total parameters and 12B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
18222
|
+
};
|
|
18223
|
+
readonly "accounts/fireworks/models/gpt-oss-20b": {
|
|
18224
|
+
readonly maxTokens: 16384;
|
|
18225
|
+
readonly contextWindow: 128000;
|
|
18226
|
+
readonly supportsImages: false;
|
|
18227
|
+
readonly supportsPromptCache: false;
|
|
18228
|
+
readonly inputPrice: 0.07;
|
|
18229
|
+
readonly outputPrice: 0.3;
|
|
18230
|
+
readonly description: "OpenAI gpt-oss-20b: Compact model for local/edge deployments. Optimized for low-latency and resource-constrained environments with chain-of-thought output, adjustable reasoning, and agentic workflows.";
|
|
18231
|
+
};
|
|
18232
|
+
readonly "accounts/fireworks/models/gpt-oss-120b": {
|
|
18233
|
+
readonly maxTokens: 16384;
|
|
18234
|
+
readonly contextWindow: 128000;
|
|
18235
|
+
readonly supportsImages: false;
|
|
18236
|
+
readonly supportsPromptCache: false;
|
|
18237
|
+
readonly inputPrice: 0.15;
|
|
18238
|
+
readonly outputPrice: 0.6;
|
|
18239
|
+
readonly description: "OpenAI gpt-oss-120b: Production-grade, general-purpose model that fits on a single H100 GPU. Features complex reasoning, configurable effort, full chain-of-thought transparency, and supports function calling, tool use, and structured outputs.";
|
|
18240
|
+
};
|
|
18241
|
+
};
|
|
18242
|
+
|
|
17919
18243
|
type GeminiModelId = keyof typeof geminiModels;
|
|
17920
18244
|
declare const geminiDefaultModelId: GeminiModelId;
|
|
17921
18245
|
declare const geminiModels: {
|
|
@@ -18703,6 +19027,20 @@ declare const OPEN_ROUTER_REASONING_BUDGET_MODELS: Set<string>;
|
|
|
18703
19027
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
18704
19028
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
18705
19029
|
|
|
19030
|
+
type RooModelId = "roo/sonic";
|
|
19031
|
+
declare const rooDefaultModelId: RooModelId;
|
|
19032
|
+
declare const rooModels: {
|
|
19033
|
+
readonly "roo/sonic": {
|
|
19034
|
+
readonly maxTokens: 16384;
|
|
19035
|
+
readonly contextWindow: 262144;
|
|
19036
|
+
readonly supportsImages: false;
|
|
19037
|
+
readonly supportsPromptCache: true;
|
|
19038
|
+
readonly inputPrice: 0;
|
|
19039
|
+
readonly outputPrice: 0;
|
|
19040
|
+
readonly description: "A stealth reasoning model that is blazing fast and excels at agentic coding, accessible for free through Roo Code Cloud for a limited time. (Note: prompts and completions are logged by the model creator and used to improve the model.)";
|
|
19041
|
+
};
|
|
19042
|
+
};
|
|
19043
|
+
|
|
18706
19044
|
type SambaNovaModelId = "Meta-Llama-3.1-8B-Instruct" | "Meta-Llama-3.3-70B-Instruct" | "DeepSeek-R1" | "DeepSeek-V3-0324" | "DeepSeek-R1-Distill-Llama-70B" | "Llama-4-Maverick-17B-128E-Instruct" | "Llama-3.3-Swallow-70B-Instruct-v0.4" | "Qwen3-32B";
|
|
18707
19045
|
declare const sambaNovaDefaultModelId: SambaNovaModelId;
|
|
18708
19046
|
declare const sambaNovaModels: {
|
|
@@ -19177,6 +19515,18 @@ declare const vscodeLlmModels: {
|
|
|
19177
19515
|
readonly supportsToolCalling: true;
|
|
19178
19516
|
readonly maxInputTokens: 81638;
|
|
19179
19517
|
};
|
|
19518
|
+
readonly "claude-4-sonnet": {
|
|
19519
|
+
readonly contextWindow: 128000;
|
|
19520
|
+
readonly supportsImages: true;
|
|
19521
|
+
readonly supportsPromptCache: false;
|
|
19522
|
+
readonly inputPrice: 0;
|
|
19523
|
+
readonly outputPrice: 0;
|
|
19524
|
+
readonly family: "claude-sonnet-4";
|
|
19525
|
+
readonly version: "claude-sonnet-4";
|
|
19526
|
+
readonly name: "Claude Sonnet 4";
|
|
19527
|
+
readonly supportsToolCalling: true;
|
|
19528
|
+
readonly maxInputTokens: 111836;
|
|
19529
|
+
};
|
|
19180
19530
|
readonly "gemini-2.0-flash-001": {
|
|
19181
19531
|
readonly contextWindow: 127827;
|
|
19182
19532
|
readonly supportsImages: true;
|
|
@@ -19190,7 +19540,7 @@ declare const vscodeLlmModels: {
|
|
|
19190
19540
|
readonly maxInputTokens: 127827;
|
|
19191
19541
|
};
|
|
19192
19542
|
readonly "gemini-2.5-pro": {
|
|
19193
|
-
readonly contextWindow:
|
|
19543
|
+
readonly contextWindow: 128000;
|
|
19194
19544
|
readonly supportsImages: true;
|
|
19195
19545
|
readonly supportsPromptCache: false;
|
|
19196
19546
|
readonly inputPrice: 0;
|
|
@@ -19199,10 +19549,10 @@ declare const vscodeLlmModels: {
|
|
|
19199
19549
|
readonly version: "gemini-2.5-pro-preview-03-25";
|
|
19200
19550
|
readonly name: "Gemini 2.5 Pro (Preview)";
|
|
19201
19551
|
readonly supportsToolCalling: true;
|
|
19202
|
-
readonly maxInputTokens:
|
|
19552
|
+
readonly maxInputTokens: 108637;
|
|
19203
19553
|
};
|
|
19204
19554
|
readonly "o4-mini": {
|
|
19205
|
-
readonly contextWindow:
|
|
19555
|
+
readonly contextWindow: 128000;
|
|
19206
19556
|
readonly supportsImages: false;
|
|
19207
19557
|
readonly supportsPromptCache: false;
|
|
19208
19558
|
readonly inputPrice: 0;
|
|
@@ -19211,10 +19561,10 @@ declare const vscodeLlmModels: {
|
|
|
19211
19561
|
readonly version: "o4-mini-2025-04-16";
|
|
19212
19562
|
readonly name: "o4-mini (Preview)";
|
|
19213
19563
|
readonly supportsToolCalling: true;
|
|
19214
|
-
readonly maxInputTokens:
|
|
19564
|
+
readonly maxInputTokens: 111452;
|
|
19215
19565
|
};
|
|
19216
19566
|
readonly "gpt-4.1": {
|
|
19217
|
-
readonly contextWindow:
|
|
19567
|
+
readonly contextWindow: 128000;
|
|
19218
19568
|
readonly supportsImages: true;
|
|
19219
19569
|
readonly supportsPromptCache: false;
|
|
19220
19570
|
readonly inputPrice: 0;
|
|
@@ -19223,7 +19573,31 @@ declare const vscodeLlmModels: {
|
|
|
19223
19573
|
readonly version: "gpt-4.1-2025-04-14";
|
|
19224
19574
|
readonly name: "GPT-4.1 (Preview)";
|
|
19225
19575
|
readonly supportsToolCalling: true;
|
|
19226
|
-
readonly maxInputTokens:
|
|
19576
|
+
readonly maxInputTokens: 111452;
|
|
19577
|
+
};
|
|
19578
|
+
readonly "gpt-5-mini": {
|
|
19579
|
+
readonly contextWindow: 128000;
|
|
19580
|
+
readonly supportsImages: true;
|
|
19581
|
+
readonly supportsPromptCache: false;
|
|
19582
|
+
readonly inputPrice: 0;
|
|
19583
|
+
readonly outputPrice: 0;
|
|
19584
|
+
readonly family: "gpt-5-mini";
|
|
19585
|
+
readonly version: "gpt-5-mini";
|
|
19586
|
+
readonly name: "GPT-5 mini (Preview)";
|
|
19587
|
+
readonly supportsToolCalling: true;
|
|
19588
|
+
readonly maxInputTokens: 108637;
|
|
19589
|
+
};
|
|
19590
|
+
readonly "gpt-5": {
|
|
19591
|
+
readonly contextWindow: 128000;
|
|
19592
|
+
readonly supportsImages: true;
|
|
19593
|
+
readonly supportsPromptCache: false;
|
|
19594
|
+
readonly inputPrice: 0;
|
|
19595
|
+
readonly outputPrice: 0;
|
|
19596
|
+
readonly family: "gpt-5";
|
|
19597
|
+
readonly version: "gpt-5";
|
|
19598
|
+
readonly name: "GPT-5 (Preview)";
|
|
19599
|
+
readonly supportsToolCalling: true;
|
|
19600
|
+
readonly maxInputTokens: 108637;
|
|
19227
19601
|
};
|
|
19228
19602
|
};
|
|
19229
19603
|
|
|
@@ -19307,46 +19681,6 @@ declare const xaiModels: {
|
|
|
19307
19681
|
};
|
|
19308
19682
|
};
|
|
19309
19683
|
|
|
19310
|
-
declare const doubaoDefaultModelId = "doubao-seed-1-6-250615";
|
|
19311
|
-
declare const doubaoModels: {
|
|
19312
|
-
readonly "doubao-seed-1-6-250615": {
|
|
19313
|
-
readonly maxTokens: 32768;
|
|
19314
|
-
readonly contextWindow: 128000;
|
|
19315
|
-
readonly supportsImages: true;
|
|
19316
|
-
readonly supportsPromptCache: true;
|
|
19317
|
-
readonly inputPrice: 0.0001;
|
|
19318
|
-
readonly outputPrice: 0.0004;
|
|
19319
|
-
readonly cacheWritesPrice: 0.0001;
|
|
19320
|
-
readonly cacheReadsPrice: 0.00002;
|
|
19321
|
-
readonly description: "Doubao Seed 1.6 is a powerful model designed for high-performance tasks with extensive context handling.";
|
|
19322
|
-
};
|
|
19323
|
-
readonly "doubao-seed-1-6-thinking-250715": {
|
|
19324
|
-
readonly maxTokens: 32768;
|
|
19325
|
-
readonly contextWindow: 128000;
|
|
19326
|
-
readonly supportsImages: true;
|
|
19327
|
-
readonly supportsPromptCache: true;
|
|
19328
|
-
readonly inputPrice: 0.0002;
|
|
19329
|
-
readonly outputPrice: 0.0008;
|
|
19330
|
-
readonly cacheWritesPrice: 0.0002;
|
|
19331
|
-
readonly cacheReadsPrice: 0.00004;
|
|
19332
|
-
readonly description: "Doubao Seed 1.6 Thinking is optimized for reasoning tasks, providing enhanced performance in complex problem-solving scenarios.";
|
|
19333
|
-
};
|
|
19334
|
-
readonly "doubao-seed-1-6-flash-250715": {
|
|
19335
|
-
readonly maxTokens: 32768;
|
|
19336
|
-
readonly contextWindow: 128000;
|
|
19337
|
-
readonly supportsImages: true;
|
|
19338
|
-
readonly supportsPromptCache: true;
|
|
19339
|
-
readonly inputPrice: 0.00015;
|
|
19340
|
-
readonly outputPrice: 0.0006;
|
|
19341
|
-
readonly cacheWritesPrice: 0.00015;
|
|
19342
|
-
readonly cacheReadsPrice: 0.00003;
|
|
19343
|
-
readonly description: "Doubao Seed 1.6 Flash is tailored for speed and efficiency, making it ideal for applications requiring rapid responses.";
|
|
19344
|
-
};
|
|
19345
|
-
};
|
|
19346
|
-
declare const doubaoDefaultModelInfo: ModelInfo;
|
|
19347
|
-
declare const DOUBAO_API_BASE_URL = "https://ark.cn-beijing.volces.com/api/v3";
|
|
19348
|
-
declare const DOUBAO_API_CHAT_PATH = "/chat/completions";
|
|
19349
|
-
|
|
19350
19684
|
type InternationalZAiModelId = keyof typeof internationalZAiModels;
|
|
19351
19685
|
declare const internationalZAiDefaultModelId: InternationalZAiModelId;
|
|
19352
19686
|
declare const internationalZAiModels: {
|
|
@@ -19433,104 +19767,4 @@ declare const mainlandZAiModels: {
|
|
|
19433
19767
|
};
|
|
19434
19768
|
declare const ZAI_DEFAULT_TEMPERATURE = 0;
|
|
19435
19769
|
|
|
19436
|
-
type FireworksModelId
|
|
19437
|
-
declare const fireworksDefaultModelId: FireworksModelId;
|
|
19438
|
-
declare const fireworksModels: {
|
|
19439
|
-
readonly "accounts/fireworks/models/kimi-k2-instruct": {
|
|
19440
|
-
readonly maxTokens: 16384;
|
|
19441
|
-
readonly contextWindow: 128000;
|
|
19442
|
-
readonly supportsImages: false;
|
|
19443
|
-
readonly supportsPromptCache: false;
|
|
19444
|
-
readonly inputPrice: 0.6;
|
|
19445
|
-
readonly outputPrice: 2.5;
|
|
19446
|
-
readonly description: "Kimi K2 is a state-of-the-art mixture-of-experts (MoE) language model with 32 billion activated parameters and 1 trillion total parameters. Trained with the Muon optimizer, Kimi K2 achieves exceptional performance across frontier knowledge, reasoning, and coding tasks while being meticulously optimized for agentic capabilities.";
|
|
19447
|
-
};
|
|
19448
|
-
readonly "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507": {
|
|
19449
|
-
readonly maxTokens: 32768;
|
|
19450
|
-
readonly contextWindow: 256000;
|
|
19451
|
-
readonly supportsImages: false;
|
|
19452
|
-
readonly supportsPromptCache: false;
|
|
19453
|
-
readonly inputPrice: 0.22;
|
|
19454
|
-
readonly outputPrice: 0.88;
|
|
19455
|
-
readonly description: "Latest Qwen3 thinking model, competitive against the best closed source models in Jul 2025.";
|
|
19456
|
-
};
|
|
19457
|
-
readonly "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct": {
|
|
19458
|
-
readonly maxTokens: 32768;
|
|
19459
|
-
readonly contextWindow: 256000;
|
|
19460
|
-
readonly supportsImages: false;
|
|
19461
|
-
readonly supportsPromptCache: false;
|
|
19462
|
-
readonly inputPrice: 0.45;
|
|
19463
|
-
readonly outputPrice: 1.8;
|
|
19464
|
-
readonly description: "Qwen3's most agentic code model to date.";
|
|
19465
|
-
};
|
|
19466
|
-
readonly "accounts/fireworks/models/deepseek-r1-0528": {
|
|
19467
|
-
readonly maxTokens: 20480;
|
|
19468
|
-
readonly contextWindow: 160000;
|
|
19469
|
-
readonly supportsImages: false;
|
|
19470
|
-
readonly supportsPromptCache: false;
|
|
19471
|
-
readonly inputPrice: 3;
|
|
19472
|
-
readonly outputPrice: 8;
|
|
19473
|
-
readonly description: "05/28 updated checkpoint of Deepseek R1. Its overall performance is now approaching that of leading models, such as O3 and Gemini 2.5 Pro. Compared to the previous version, the upgraded model shows significant improvements in handling complex reasoning tasks, and this version also offers a reduced hallucination rate, enhanced support for function calling, and better experience for vibe coding. Note that fine-tuning for this model is only available through contacting fireworks at https://fireworks.ai/company/contact-us.";
|
|
19474
|
-
};
|
|
19475
|
-
readonly "accounts/fireworks/models/deepseek-v3": {
|
|
19476
|
-
readonly maxTokens: 16384;
|
|
19477
|
-
readonly contextWindow: 128000;
|
|
19478
|
-
readonly supportsImages: false;
|
|
19479
|
-
readonly supportsPromptCache: false;
|
|
19480
|
-
readonly inputPrice: 0.9;
|
|
19481
|
-
readonly outputPrice: 0.9;
|
|
19482
|
-
readonly description: "A strong Mixture-of-Experts (MoE) language model with 671B total parameters with 37B activated for each token from Deepseek. Note that fine-tuning for this model is only available through contacting fireworks at https://fireworks.ai/company/contact-us.";
|
|
19483
|
-
};
|
|
19484
|
-
readonly "accounts/fireworks/models/glm-4p5": {
|
|
19485
|
-
readonly maxTokens: 16384;
|
|
19486
|
-
readonly contextWindow: 128000;
|
|
19487
|
-
readonly supportsImages: false;
|
|
19488
|
-
readonly supportsPromptCache: false;
|
|
19489
|
-
readonly inputPrice: 0.55;
|
|
19490
|
-
readonly outputPrice: 2.19;
|
|
19491
|
-
readonly description: "Z.ai GLM-4.5 with 355B total parameters and 32B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
19492
|
-
};
|
|
19493
|
-
readonly "accounts/fireworks/models/glm-4p5-air": {
|
|
19494
|
-
readonly maxTokens: 16384;
|
|
19495
|
-
readonly contextWindow: 128000;
|
|
19496
|
-
readonly supportsImages: false;
|
|
19497
|
-
readonly supportsPromptCache: false;
|
|
19498
|
-
readonly inputPrice: 0.55;
|
|
19499
|
-
readonly outputPrice: 2.19;
|
|
19500
|
-
readonly description: "Z.ai GLM-4.5-Air with 106B total parameters and 12B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
19501
|
-
};
|
|
19502
|
-
readonly "accounts/fireworks/models/gpt-oss-20b": {
|
|
19503
|
-
readonly maxTokens: 16384;
|
|
19504
|
-
readonly contextWindow: 128000;
|
|
19505
|
-
readonly supportsImages: false;
|
|
19506
|
-
readonly supportsPromptCache: false;
|
|
19507
|
-
readonly inputPrice: 0.07;
|
|
19508
|
-
readonly outputPrice: 0.3;
|
|
19509
|
-
readonly description: "OpenAI gpt-oss-20b: Compact model for local/edge deployments. Optimized for low-latency and resource-constrained environments with chain-of-thought output, adjustable reasoning, and agentic workflows.";
|
|
19510
|
-
};
|
|
19511
|
-
readonly "accounts/fireworks/models/gpt-oss-120b": {
|
|
19512
|
-
readonly maxTokens: 16384;
|
|
19513
|
-
readonly contextWindow: 128000;
|
|
19514
|
-
readonly supportsImages: false;
|
|
19515
|
-
readonly supportsPromptCache: false;
|
|
19516
|
-
readonly inputPrice: 0.15;
|
|
19517
|
-
readonly outputPrice: 0.6;
|
|
19518
|
-
readonly description: "OpenAI gpt-oss-120b: Production-grade, general-purpose model that fits on a single H100 GPU. Features complex reasoning, configurable effort, full chain-of-thought transparency, and supports function calling, tool use, and structured outputs.";
|
|
19519
|
-
};
|
|
19520
|
-
};
|
|
19521
|
-
|
|
19522
|
-
type RooModelId = "roo/sonic";
|
|
19523
|
-
declare const rooDefaultModelId: RooModelId;
|
|
19524
|
-
declare const rooModels: {
|
|
19525
|
-
readonly "roo/sonic": {
|
|
19526
|
-
readonly maxTokens: 8192;
|
|
19527
|
-
readonly contextWindow: 262144;
|
|
19528
|
-
readonly supportsImages: false;
|
|
19529
|
-
readonly supportsPromptCache: false;
|
|
19530
|
-
readonly inputPrice: 0;
|
|
19531
|
-
readonly outputPrice: 0;
|
|
19532
|
-
readonly description: "Stealth coding model with 262K context window, accessible for free through Roo Code Cloud for a limited time. (Note: prompts and completions are logged by the model creator and used to improve the model.)";
|
|
19533
|
-
};
|
|
19534
|
-
};
|
|
19535
|
-
|
|
19536
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, type OpenAiNativeModelId, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS, type SambaNovaModelId, type SecretState, type StaticAppProperties, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, type TaskProviderState, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, experimentIds, experimentIdsSchema, experimentsSchema, extendedReasoningEffortsSchema, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isLanguage, isModelParameter, isResumableAsk, isSecretStateKey, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, staticAppPropertiesSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, verbosityLevels, verbosityLevelsSchema, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|
|
19770
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, ANTHROPIC_STYLE_PROVIDERS, AWS_INFERENCE_PROFILE_MAPPING, type Ack, type AnthropicModelId, type AppProperties, type AssertEqual, BEDROCK_CLAUDE_SONNET_4_MODEL_ID, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, type BedrockModelId, CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS, CODEBASE_INDEX_DEFAULTS, type CerebrasModelId, type ChutesModelId, type ClaudeCodeModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudAppProperties, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, DEFAULT_CONSECUTIVE_MISTAKE_LIMIT, DEFAULT_MODES, DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT, DEFAULT_WRITE_DELAY_MS, DOUBAO_API_BASE_URL, DOUBAO_API_CHAT_PATH, type DeepSeekModelId, type DynamicAppProperties, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, type FeatherlessModelId, type FireworksModelId, type FollowUpData, type FollowUpDataType, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, GPT5_DEFAULT_TEMPERATURE, type GeminiModelId, type GitProperties, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, HUGGINGFACE_API_URL, HUGGINGFACE_CACHE_DURATION, HUGGINGFACE_DEFAULT_CONTEXT_WINDOW, HUGGINGFACE_DEFAULT_MAX_TOKENS, HUGGINGFACE_MAX_TOKENS_FALLBACK, HUGGINGFACE_SLIDER_MIN, HUGGINGFACE_SLIDER_STEP, HUGGINGFACE_TEMPERATURE_MAX_VALUE, type HistoryItem, type IOIntelligenceModelId, IO_INTELLIGENCE_CACHE_DURATION, type IdleAsk, type InstallMarketplaceItemOptions, type InteractiveAsk, type InternationalZAiModelId, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODELS_BY_PROVIDER, MODEL_ID_KEYS, MOONSHOT_DEFAULT_TEMPERATURE, type MainlandZAiModelId, type MarketplaceItem, type MarketplaceItemType, type McpExecutionStatus, type McpInstallationMethod, type McpMarketplaceItem, type McpParameter, type MistralModelId, type ModeConfig, type ModeMarketplaceItem, type ModelInfo, type ModelParameter, type MoonshotModelId, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, type OpenAiNativeModelId, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ProviderSettingsWithId, type QueuedMessage, type ReasoningEffort, type ReasoningEffortWithMinimal, type ResumableAsk, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, type RooModelId, SECRET_STATE_KEYS, SINGLE_FILE_READ_MODELS, type SambaNovaModelId, type SecretState, type StaticAppProperties, type SuggestionItem, type TaskCommand, TaskCommandName, type TaskEvent, type TaskEvents, type TaskLike, type TaskMetadata, type TaskProperties, type TaskProviderEvents, type TaskProviderLike, type TaskProviderState, TaskStatus, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TodoItem, type TodoStatus, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VerbosityLevel, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ZAI_DEFAULT_TEMPERATURE, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, cerebrasDefaultModelId, cerebrasModels, chutesDefaultModelId, chutesModels, claudeCodeDefaultModelId, claudeCodeModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, cloudAppPropertiesSchema, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, convertModelNameForVertex, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, discriminatedProviderSettingsWithIdSchema, doubaoDefaultModelId, doubaoDefaultModelInfo, doubaoModels, dynamicAppPropertiesSchema, experimentIds, experimentIdsSchema, experimentsSchema, featherlessDefaultModelId, featherlessModels, fireworksDefaultModelId, fireworksModels, followUpDataSchema, geminiDefaultModelId, geminiModels, getApiProtocol, getClaudeCodeModelId, getModelId, gitPropertiesSchema, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, idleAsks, installMarketplaceItemOptionsSchema, interactiveAsks, internationalZAiDefaultModelId, internationalZAiModels, ioIntelligenceDefaultBaseUrl, ioIntelligenceDefaultModelId, ioIntelligenceModels, ipcMessageSchema, isGlobalStateKey, isIdleAsk, isInteractiveAsk, isLanguage, isModelParameter, isResumableAsk, isSecretStateKey, lMStudioDefaultModelId, lMStudioDefaultModelInfo, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mainlandZAiDefaultModelId, mainlandZAiModels, marketplaceItemSchema, marketplaceItemTypeSchema, mcpExecutionStatusSchema, mcpInstallationMethodSchema, mcpMarketplaceItemSchema, mcpParameterSchema, mistralDefaultModelId, mistralModels, modeConfigSchema, modeMarketplaceItemSchema, modelInfoSchema, modelParameters, modelParametersSchema, moonshotDefaultModelId, moonshotModels, ollamaDefaultModelId, ollamaDefaultModelInfo, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, providerSettingsWithIdSchema, reasoningEffortWithMinimalSchema, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, resumableAsks, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, rooDefaultModelId, rooModels, sambaNovaDefaultModelId, sambaNovaModels, shouldUseSingleFileRead, staticAppPropertiesSchema, suggestionItemSchema, taskCommandSchema, taskEventSchema, taskMetadataSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, todoItemSchema, todoStatusSchema, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, verbosityLevels, verbosityLevelsSchema, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|