@roo-code/types 1.55.0 → 1.57.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 +1633 -1541
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +333 -325
- package/dist/index.d.ts +333 -325
- package/dist/index.js +1631 -1540
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1065,9 +1065,6 @@ 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
|
*/
|
|
@@ -1082,12 +1079,12 @@ declare const providerSettingsEntrySchema: z.ZodObject<{
|
|
|
1082
1079
|
name: z.ZodString;
|
|
1083
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;
|
|
1083
|
+
id: string;
|
|
1087
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;
|
|
1088
1085
|
}, {
|
|
1089
|
-
id: string;
|
|
1090
1086
|
name: string;
|
|
1087
|
+
id: string;
|
|
1091
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>;
|
|
@@ -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>;
|
|
@@ -3157,15 +3154,15 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3157
3154
|
version: z.ZodOptional<z.ZodString>;
|
|
3158
3155
|
id: z.ZodOptional<z.ZodString>;
|
|
3159
3156
|
}, "strip", z.ZodTypeAny, {
|
|
3160
|
-
id?: string | undefined;
|
|
3161
|
-
vendor?: string | undefined;
|
|
3162
3157
|
family?: string | undefined;
|
|
3163
3158
|
version?: string | undefined;
|
|
3164
|
-
}, {
|
|
3165
3159
|
id?: string | undefined;
|
|
3166
3160
|
vendor?: string | undefined;
|
|
3161
|
+
}, {
|
|
3167
3162
|
family?: string | undefined;
|
|
3168
3163
|
version?: string | undefined;
|
|
3164
|
+
id?: string | undefined;
|
|
3165
|
+
vendor?: string | undefined;
|
|
3169
3166
|
}>>;
|
|
3170
3167
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3171
3168
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3405,10 +3402,10 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3405
3402
|
ollamaModelId?: string | undefined;
|
|
3406
3403
|
ollamaBaseUrl?: string | undefined;
|
|
3407
3404
|
vsCodeLmModelSelector?: {
|
|
3408
|
-
id?: string | undefined;
|
|
3409
|
-
vendor?: string | undefined;
|
|
3410
3405
|
family?: string | undefined;
|
|
3411
3406
|
version?: string | undefined;
|
|
3407
|
+
id?: string | undefined;
|
|
3408
|
+
vendor?: string | undefined;
|
|
3412
3409
|
} | undefined;
|
|
3413
3410
|
lmStudioModelId?: string | undefined;
|
|
3414
3411
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -3550,10 +3547,10 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3550
3547
|
ollamaModelId?: string | undefined;
|
|
3551
3548
|
ollamaBaseUrl?: string | undefined;
|
|
3552
3549
|
vsCodeLmModelSelector?: {
|
|
3553
|
-
id?: string | undefined;
|
|
3554
|
-
vendor?: string | undefined;
|
|
3555
3550
|
family?: string | undefined;
|
|
3556
3551
|
version?: string | undefined;
|
|
3552
|
+
id?: string | undefined;
|
|
3553
|
+
vendor?: string | undefined;
|
|
3557
3554
|
} | undefined;
|
|
3558
3555
|
lmStudioModelId?: string | undefined;
|
|
3559
3556
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -3672,15 +3669,15 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3672
3669
|
version: z.ZodOptional<z.ZodString>;
|
|
3673
3670
|
id: z.ZodOptional<z.ZodString>;
|
|
3674
3671
|
}, "strip", z.ZodTypeAny, {
|
|
3675
|
-
id?: string | undefined;
|
|
3676
|
-
vendor?: string | undefined;
|
|
3677
3672
|
family?: string | undefined;
|
|
3678
3673
|
version?: string | undefined;
|
|
3679
|
-
}, {
|
|
3680
3674
|
id?: string | undefined;
|
|
3681
3675
|
vendor?: string | undefined;
|
|
3676
|
+
}, {
|
|
3682
3677
|
family?: string | undefined;
|
|
3683
3678
|
version?: string | undefined;
|
|
3679
|
+
id?: string | undefined;
|
|
3680
|
+
vendor?: string | undefined;
|
|
3684
3681
|
}>>;
|
|
3685
3682
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
3686
3683
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -3923,10 +3920,10 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
3923
3920
|
ollamaModelId?: string | undefined;
|
|
3924
3921
|
ollamaBaseUrl?: string | undefined;
|
|
3925
3922
|
vsCodeLmModelSelector?: {
|
|
3926
|
-
id?: string | undefined;
|
|
3927
|
-
vendor?: string | undefined;
|
|
3928
3923
|
family?: string | undefined;
|
|
3929
3924
|
version?: string | undefined;
|
|
3925
|
+
id?: string | undefined;
|
|
3926
|
+
vendor?: string | undefined;
|
|
3930
3927
|
} | undefined;
|
|
3931
3928
|
lmStudioModelId?: string | undefined;
|
|
3932
3929
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -4069,10 +4066,10 @@ declare const providerSettingsWithIdSchema: z.ZodObject<{
|
|
|
4069
4066
|
ollamaModelId?: string | undefined;
|
|
4070
4067
|
ollamaBaseUrl?: string | undefined;
|
|
4071
4068
|
vsCodeLmModelSelector?: {
|
|
4072
|
-
id?: string | undefined;
|
|
4073
|
-
vendor?: string | undefined;
|
|
4074
4069
|
family?: string | undefined;
|
|
4075
4070
|
version?: string | undefined;
|
|
4071
|
+
id?: string | undefined;
|
|
4072
|
+
vendor?: string | undefined;
|
|
4076
4073
|
} | undefined;
|
|
4077
4074
|
lmStudioModelId?: string | undefined;
|
|
4078
4075
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -4794,15 +4791,15 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4794
4791
|
version: z.ZodOptional<z.ZodString>;
|
|
4795
4792
|
id: z.ZodOptional<z.ZodString>;
|
|
4796
4793
|
}, "strip", z.ZodTypeAny, {
|
|
4797
|
-
id?: string | undefined;
|
|
4798
|
-
vendor?: string | undefined;
|
|
4799
4794
|
family?: string | undefined;
|
|
4800
4795
|
version?: string | undefined;
|
|
4801
|
-
}, {
|
|
4802
4796
|
id?: string | undefined;
|
|
4803
4797
|
vendor?: string | undefined;
|
|
4798
|
+
}, {
|
|
4804
4799
|
family?: string | undefined;
|
|
4805
4800
|
version?: string | undefined;
|
|
4801
|
+
id?: string | undefined;
|
|
4802
|
+
vendor?: string | undefined;
|
|
4806
4803
|
}>>;
|
|
4807
4804
|
} & {
|
|
4808
4805
|
apiProvider: z.ZodLiteral<"vscode-lm">;
|
|
@@ -4821,10 +4818,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4821
4818
|
modelMaxThinkingTokens?: number | undefined;
|
|
4822
4819
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4823
4820
|
vsCodeLmModelSelector?: {
|
|
4824
|
-
id?: string | undefined;
|
|
4825
|
-
vendor?: string | undefined;
|
|
4826
4821
|
family?: string | undefined;
|
|
4827
4822
|
version?: string | undefined;
|
|
4823
|
+
id?: string | undefined;
|
|
4824
|
+
vendor?: string | undefined;
|
|
4828
4825
|
} | undefined;
|
|
4829
4826
|
}, {
|
|
4830
4827
|
apiProvider: "vscode-lm";
|
|
@@ -4841,10 +4838,10 @@ declare const discriminatedProviderSettingsWithIdSchema: z.ZodIntersection<z.Zod
|
|
|
4841
4838
|
modelMaxThinkingTokens?: number | undefined;
|
|
4842
4839
|
verbosity?: "low" | "medium" | "high" | undefined;
|
|
4843
4840
|
vsCodeLmModelSelector?: {
|
|
4844
|
-
id?: string | undefined;
|
|
4845
|
-
vendor?: string | undefined;
|
|
4846
4841
|
family?: string | undefined;
|
|
4847
4842
|
version?: string | undefined;
|
|
4843
|
+
id?: string | undefined;
|
|
4844
|
+
vendor?: string | undefined;
|
|
4848
4845
|
} | undefined;
|
|
4849
4846
|
}>, z.ZodObject<{
|
|
4850
4847
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6119,6 +6116,11 @@ declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
|
6119
6116
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6120
6117
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
6121
6118
|
declare const getApiProtocol: (provider: ProviderName | undefined, modelId?: string) => "anthropic" | "openai";
|
|
6119
|
+
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "lmstudio" | "openai" | "ollama">, {
|
|
6120
|
+
id: ProviderName;
|
|
6121
|
+
label: string;
|
|
6122
|
+
models: string[];
|
|
6123
|
+
}>;
|
|
6122
6124
|
|
|
6123
6125
|
/**
|
|
6124
6126
|
* Default delay in milliseconds after writes to allow diagnostics to detect potential problems.
|
|
@@ -6142,12 +6144,12 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6142
6144
|
name: z.ZodString;
|
|
6143
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"]>>;
|
|
6144
6146
|
}, "strip", z.ZodTypeAny, {
|
|
6145
|
-
id: string;
|
|
6146
6147
|
name: string;
|
|
6148
|
+
id: string;
|
|
6147
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;
|
|
6148
6150
|
}, {
|
|
6149
|
-
id: string;
|
|
6150
6151
|
name: string;
|
|
6152
|
+
id: string;
|
|
6151
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;
|
|
6152
6154
|
}>, "many">>;
|
|
6153
6155
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -6485,8 +6487,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6485
6487
|
}[] | undefined;
|
|
6486
6488
|
currentApiConfigName?: string | undefined;
|
|
6487
6489
|
listApiConfigMeta?: {
|
|
6488
|
-
id: string;
|
|
6489
6490
|
name: string;
|
|
6491
|
+
id: string;
|
|
6490
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;
|
|
6491
6493
|
}[] | undefined;
|
|
6492
6494
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -6641,8 +6643,8 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
6641
6643
|
}[] | undefined;
|
|
6642
6644
|
currentApiConfigName?: string | undefined;
|
|
6643
6645
|
listApiConfigMeta?: {
|
|
6644
|
-
id: string;
|
|
6645
6646
|
name: string;
|
|
6647
|
+
id: string;
|
|
6646
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;
|
|
6647
6649
|
}[] | undefined;
|
|
6648
6650
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -6849,15 +6851,15 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
6849
6851
|
version: z.ZodOptional<z.ZodString>;
|
|
6850
6852
|
id: z.ZodOptional<z.ZodString>;
|
|
6851
6853
|
}, "strip", z.ZodTypeAny, {
|
|
6852
|
-
id?: string | undefined;
|
|
6853
|
-
vendor?: string | undefined;
|
|
6854
6854
|
family?: string | undefined;
|
|
6855
6855
|
version?: string | undefined;
|
|
6856
|
-
}, {
|
|
6857
6856
|
id?: string | undefined;
|
|
6858
6857
|
vendor?: string | undefined;
|
|
6858
|
+
}, {
|
|
6859
6859
|
family?: string | undefined;
|
|
6860
6860
|
version?: string | undefined;
|
|
6861
|
+
id?: string | undefined;
|
|
6862
|
+
vendor?: string | undefined;
|
|
6861
6863
|
}>>;
|
|
6862
6864
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
6863
6865
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -7008,12 +7010,12 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7008
7010
|
name: z.ZodString;
|
|
7009
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"]>>;
|
|
7010
7012
|
}, "strip", z.ZodTypeAny, {
|
|
7011
|
-
id: string;
|
|
7012
7013
|
name: string;
|
|
7014
|
+
id: string;
|
|
7013
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;
|
|
7014
7016
|
}, {
|
|
7015
|
-
id: string;
|
|
7016
7017
|
name: string;
|
|
7018
|
+
id: string;
|
|
7017
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;
|
|
7018
7020
|
}>, "many">>;
|
|
7019
7021
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -7417,10 +7419,10 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7417
7419
|
ollamaModelId?: string | undefined;
|
|
7418
7420
|
ollamaBaseUrl?: string | undefined;
|
|
7419
7421
|
vsCodeLmModelSelector?: {
|
|
7420
|
-
id?: string | undefined;
|
|
7421
|
-
vendor?: string | undefined;
|
|
7422
7422
|
family?: string | undefined;
|
|
7423
7423
|
version?: string | undefined;
|
|
7424
|
+
id?: string | undefined;
|
|
7425
|
+
vendor?: string | undefined;
|
|
7424
7426
|
} | undefined;
|
|
7425
7427
|
lmStudioModelId?: string | undefined;
|
|
7426
7428
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -7484,8 +7486,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7484
7486
|
}[] | undefined;
|
|
7485
7487
|
currentApiConfigName?: string | undefined;
|
|
7486
7488
|
listApiConfigMeta?: {
|
|
7487
|
-
id: string;
|
|
7488
7489
|
name: string;
|
|
7490
|
+
id: string;
|
|
7489
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;
|
|
7490
7492
|
}[] | undefined;
|
|
7491
7493
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -7714,10 +7716,10 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7714
7716
|
ollamaModelId?: string | undefined;
|
|
7715
7717
|
ollamaBaseUrl?: string | undefined;
|
|
7716
7718
|
vsCodeLmModelSelector?: {
|
|
7717
|
-
id?: string | undefined;
|
|
7718
|
-
vendor?: string | undefined;
|
|
7719
7719
|
family?: string | undefined;
|
|
7720
7720
|
version?: string | undefined;
|
|
7721
|
+
id?: string | undefined;
|
|
7722
|
+
vendor?: string | undefined;
|
|
7721
7723
|
} | undefined;
|
|
7722
7724
|
lmStudioModelId?: string | undefined;
|
|
7723
7725
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -7781,8 +7783,8 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
7781
7783
|
}[] | undefined;
|
|
7782
7784
|
currentApiConfigName?: string | undefined;
|
|
7783
7785
|
listApiConfigMeta?: {
|
|
7784
|
-
id: string;
|
|
7785
7786
|
name: string;
|
|
7787
|
+
id: string;
|
|
7786
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;
|
|
7787
7789
|
}[] | undefined;
|
|
7788
7790
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -8052,15 +8054,15 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8052
8054
|
version: z.ZodOptional<z.ZodString>;
|
|
8053
8055
|
id: z.ZodOptional<z.ZodString>;
|
|
8054
8056
|
}, "strip", z.ZodTypeAny, {
|
|
8055
|
-
id?: string | undefined;
|
|
8056
|
-
vendor?: string | undefined;
|
|
8057
8057
|
family?: string | undefined;
|
|
8058
8058
|
version?: string | undefined;
|
|
8059
|
-
}, {
|
|
8060
8059
|
id?: string | undefined;
|
|
8061
8060
|
vendor?: string | undefined;
|
|
8061
|
+
}, {
|
|
8062
8062
|
family?: string | undefined;
|
|
8063
8063
|
version?: string | undefined;
|
|
8064
|
+
id?: string | undefined;
|
|
8065
|
+
vendor?: string | undefined;
|
|
8064
8066
|
}>>;
|
|
8065
8067
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
8066
8068
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -8211,12 +8213,12 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8211
8213
|
name: z.ZodString;
|
|
8212
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"]>>;
|
|
8213
8215
|
}, "strip", z.ZodTypeAny, {
|
|
8214
|
-
id: string;
|
|
8215
8216
|
name: string;
|
|
8217
|
+
id: string;
|
|
8216
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;
|
|
8217
8219
|
}, {
|
|
8218
|
-
id: string;
|
|
8219
8220
|
name: string;
|
|
8221
|
+
id: string;
|
|
8220
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;
|
|
8221
8223
|
}>, "many">>;
|
|
8222
8224
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -8620,10 +8622,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8620
8622
|
ollamaModelId?: string | undefined;
|
|
8621
8623
|
ollamaBaseUrl?: string | undefined;
|
|
8622
8624
|
vsCodeLmModelSelector?: {
|
|
8623
|
-
id?: string | undefined;
|
|
8624
|
-
vendor?: string | undefined;
|
|
8625
8625
|
family?: string | undefined;
|
|
8626
8626
|
version?: string | undefined;
|
|
8627
|
+
id?: string | undefined;
|
|
8628
|
+
vendor?: string | undefined;
|
|
8627
8629
|
} | undefined;
|
|
8628
8630
|
lmStudioModelId?: string | undefined;
|
|
8629
8631
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -8687,8 +8689,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8687
8689
|
}[] | undefined;
|
|
8688
8690
|
currentApiConfigName?: string | undefined;
|
|
8689
8691
|
listApiConfigMeta?: {
|
|
8690
|
-
id: string;
|
|
8691
8692
|
name: string;
|
|
8693
|
+
id: string;
|
|
8692
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;
|
|
8693
8695
|
}[] | undefined;
|
|
8694
8696
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -8917,10 +8919,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8917
8919
|
ollamaModelId?: string | undefined;
|
|
8918
8920
|
ollamaBaseUrl?: string | undefined;
|
|
8919
8921
|
vsCodeLmModelSelector?: {
|
|
8920
|
-
id?: string | undefined;
|
|
8921
|
-
vendor?: string | undefined;
|
|
8922
8922
|
family?: string | undefined;
|
|
8923
8923
|
version?: string | undefined;
|
|
8924
|
+
id?: string | undefined;
|
|
8925
|
+
vendor?: string | undefined;
|
|
8924
8926
|
} | undefined;
|
|
8925
8927
|
lmStudioModelId?: string | undefined;
|
|
8926
8928
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -8984,8 +8986,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
8984
8986
|
}[] | undefined;
|
|
8985
8987
|
currentApiConfigName?: string | undefined;
|
|
8986
8988
|
listApiConfigMeta?: {
|
|
8987
|
-
id: string;
|
|
8988
8989
|
name: string;
|
|
8990
|
+
id: string;
|
|
8989
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;
|
|
8990
8992
|
}[] | undefined;
|
|
8991
8993
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -9220,10 +9222,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9220
9222
|
ollamaModelId?: string | undefined;
|
|
9221
9223
|
ollamaBaseUrl?: string | undefined;
|
|
9222
9224
|
vsCodeLmModelSelector?: {
|
|
9223
|
-
id?: string | undefined;
|
|
9224
|
-
vendor?: string | undefined;
|
|
9225
9225
|
family?: string | undefined;
|
|
9226
9226
|
version?: string | undefined;
|
|
9227
|
+
id?: string | undefined;
|
|
9228
|
+
vendor?: string | undefined;
|
|
9227
9229
|
} | undefined;
|
|
9228
9230
|
lmStudioModelId?: string | undefined;
|
|
9229
9231
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -9287,8 +9289,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9287
9289
|
}[] | undefined;
|
|
9288
9290
|
currentApiConfigName?: string | undefined;
|
|
9289
9291
|
listApiConfigMeta?: {
|
|
9290
|
-
id: string;
|
|
9291
9292
|
name: string;
|
|
9293
|
+
id: string;
|
|
9292
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;
|
|
9293
9295
|
}[] | undefined;
|
|
9294
9296
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -9522,10 +9524,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9522
9524
|
ollamaModelId?: string | undefined;
|
|
9523
9525
|
ollamaBaseUrl?: string | undefined;
|
|
9524
9526
|
vsCodeLmModelSelector?: {
|
|
9525
|
-
id?: string | undefined;
|
|
9526
|
-
vendor?: string | undefined;
|
|
9527
9527
|
family?: string | undefined;
|
|
9528
9528
|
version?: string | undefined;
|
|
9529
|
+
id?: string | undefined;
|
|
9530
|
+
vendor?: string | undefined;
|
|
9529
9531
|
} | undefined;
|
|
9530
9532
|
lmStudioModelId?: string | undefined;
|
|
9531
9533
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -9589,8 +9591,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9589
9591
|
}[] | undefined;
|
|
9590
9592
|
currentApiConfigName?: string | undefined;
|
|
9591
9593
|
listApiConfigMeta?: {
|
|
9592
|
-
id: string;
|
|
9593
9594
|
name: string;
|
|
9595
|
+
id: string;
|
|
9594
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;
|
|
9595
9597
|
}[] | undefined;
|
|
9596
9598
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -9827,10 +9829,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9827
9829
|
ollamaModelId?: string | undefined;
|
|
9828
9830
|
ollamaBaseUrl?: string | undefined;
|
|
9829
9831
|
vsCodeLmModelSelector?: {
|
|
9830
|
-
id?: string | undefined;
|
|
9831
|
-
vendor?: string | undefined;
|
|
9832
9832
|
family?: string | undefined;
|
|
9833
9833
|
version?: string | undefined;
|
|
9834
|
+
id?: string | undefined;
|
|
9835
|
+
vendor?: string | undefined;
|
|
9834
9836
|
} | undefined;
|
|
9835
9837
|
lmStudioModelId?: string | undefined;
|
|
9836
9838
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -9894,8 +9896,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
9894
9896
|
}[] | undefined;
|
|
9895
9897
|
currentApiConfigName?: string | undefined;
|
|
9896
9898
|
listApiConfigMeta?: {
|
|
9897
|
-
id: string;
|
|
9898
9899
|
name: string;
|
|
9900
|
+
id: string;
|
|
9899
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;
|
|
9900
9902
|
}[] | undefined;
|
|
9901
9903
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -10132,10 +10134,10 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10132
10134
|
ollamaModelId?: string | undefined;
|
|
10133
10135
|
ollamaBaseUrl?: string | undefined;
|
|
10134
10136
|
vsCodeLmModelSelector?: {
|
|
10135
|
-
id?: string | undefined;
|
|
10136
|
-
vendor?: string | undefined;
|
|
10137
10137
|
family?: string | undefined;
|
|
10138
10138
|
version?: string | undefined;
|
|
10139
|
+
id?: string | undefined;
|
|
10140
|
+
vendor?: string | undefined;
|
|
10139
10141
|
} | undefined;
|
|
10140
10142
|
lmStudioModelId?: string | undefined;
|
|
10141
10143
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -10199,8 +10201,8 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
10199
10201
|
}[] | undefined;
|
|
10200
10202
|
currentApiConfigName?: string | undefined;
|
|
10201
10203
|
listApiConfigMeta?: {
|
|
10202
|
-
id: string;
|
|
10203
10204
|
name: string;
|
|
10205
|
+
id: string;
|
|
10204
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;
|
|
10205
10207
|
}[] | undefined;
|
|
10206
10208
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -10476,15 +10478,15 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10476
10478
|
version: z.ZodOptional<z.ZodString>;
|
|
10477
10479
|
id: z.ZodOptional<z.ZodString>;
|
|
10478
10480
|
}, "strip", z.ZodTypeAny, {
|
|
10479
|
-
id?: string | undefined;
|
|
10480
|
-
vendor?: string | undefined;
|
|
10481
10481
|
family?: string | undefined;
|
|
10482
10482
|
version?: string | undefined;
|
|
10483
|
-
}, {
|
|
10484
10483
|
id?: string | undefined;
|
|
10485
10484
|
vendor?: string | undefined;
|
|
10485
|
+
}, {
|
|
10486
10486
|
family?: string | undefined;
|
|
10487
10487
|
version?: string | undefined;
|
|
10488
|
+
id?: string | undefined;
|
|
10489
|
+
vendor?: string | undefined;
|
|
10488
10490
|
}>>;
|
|
10489
10491
|
ollamaModelId: z.ZodOptional<z.ZodString>;
|
|
10490
10492
|
ollamaBaseUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -10635,12 +10637,12 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
10635
10637
|
name: z.ZodString;
|
|
10636
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"]>>;
|
|
10637
10639
|
}, "strip", z.ZodTypeAny, {
|
|
10638
|
-
id: string;
|
|
10639
10640
|
name: string;
|
|
10641
|
+
id: string;
|
|
10640
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;
|
|
10641
10643
|
}, {
|
|
10642
|
-
id: string;
|
|
10643
10644
|
name: string;
|
|
10645
|
+
id: string;
|
|
10644
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;
|
|
10645
10647
|
}>, "many">>;
|
|
10646
10648
|
pinnedApiConfigs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
@@ -11044,10 +11046,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11044
11046
|
ollamaModelId?: string | undefined;
|
|
11045
11047
|
ollamaBaseUrl?: string | undefined;
|
|
11046
11048
|
vsCodeLmModelSelector?: {
|
|
11047
|
-
id?: string | undefined;
|
|
11048
|
-
vendor?: string | undefined;
|
|
11049
11049
|
family?: string | undefined;
|
|
11050
11050
|
version?: string | undefined;
|
|
11051
|
+
id?: string | undefined;
|
|
11052
|
+
vendor?: string | undefined;
|
|
11051
11053
|
} | undefined;
|
|
11052
11054
|
lmStudioModelId?: string | undefined;
|
|
11053
11055
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -11111,8 +11113,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11111
11113
|
}[] | undefined;
|
|
11112
11114
|
currentApiConfigName?: string | undefined;
|
|
11113
11115
|
listApiConfigMeta?: {
|
|
11114
|
-
id: string;
|
|
11115
11116
|
name: string;
|
|
11117
|
+
id: string;
|
|
11116
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;
|
|
11117
11119
|
}[] | undefined;
|
|
11118
11120
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -11341,10 +11343,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11341
11343
|
ollamaModelId?: string | undefined;
|
|
11342
11344
|
ollamaBaseUrl?: string | undefined;
|
|
11343
11345
|
vsCodeLmModelSelector?: {
|
|
11344
|
-
id?: string | undefined;
|
|
11345
|
-
vendor?: string | undefined;
|
|
11346
11346
|
family?: string | undefined;
|
|
11347
11347
|
version?: string | undefined;
|
|
11348
|
+
id?: string | undefined;
|
|
11349
|
+
vendor?: string | undefined;
|
|
11348
11350
|
} | undefined;
|
|
11349
11351
|
lmStudioModelId?: string | undefined;
|
|
11350
11352
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -11408,8 +11410,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11408
11410
|
}[] | undefined;
|
|
11409
11411
|
currentApiConfigName?: string | undefined;
|
|
11410
11412
|
listApiConfigMeta?: {
|
|
11411
|
-
id: string;
|
|
11412
11413
|
name: string;
|
|
11414
|
+
id: string;
|
|
11413
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;
|
|
11414
11416
|
}[] | undefined;
|
|
11415
11417
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -11644,10 +11646,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11644
11646
|
ollamaModelId?: string | undefined;
|
|
11645
11647
|
ollamaBaseUrl?: string | undefined;
|
|
11646
11648
|
vsCodeLmModelSelector?: {
|
|
11647
|
-
id?: string | undefined;
|
|
11648
|
-
vendor?: string | undefined;
|
|
11649
11649
|
family?: string | undefined;
|
|
11650
11650
|
version?: string | undefined;
|
|
11651
|
+
id?: string | undefined;
|
|
11652
|
+
vendor?: string | undefined;
|
|
11651
11653
|
} | undefined;
|
|
11652
11654
|
lmStudioModelId?: string | undefined;
|
|
11653
11655
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -11711,8 +11713,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11711
11713
|
}[] | undefined;
|
|
11712
11714
|
currentApiConfigName?: string | undefined;
|
|
11713
11715
|
listApiConfigMeta?: {
|
|
11714
|
-
id: string;
|
|
11715
11716
|
name: string;
|
|
11717
|
+
id: string;
|
|
11716
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;
|
|
11717
11719
|
}[] | undefined;
|
|
11718
11720
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -11946,10 +11948,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
11946
11948
|
ollamaModelId?: string | undefined;
|
|
11947
11949
|
ollamaBaseUrl?: string | undefined;
|
|
11948
11950
|
vsCodeLmModelSelector?: {
|
|
11949
|
-
id?: string | undefined;
|
|
11950
|
-
vendor?: string | undefined;
|
|
11951
11951
|
family?: string | undefined;
|
|
11952
11952
|
version?: string | undefined;
|
|
11953
|
+
id?: string | undefined;
|
|
11954
|
+
vendor?: string | undefined;
|
|
11953
11955
|
} | undefined;
|
|
11954
11956
|
lmStudioModelId?: string | undefined;
|
|
11955
11957
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -12013,8 +12015,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12013
12015
|
}[] | undefined;
|
|
12014
12016
|
currentApiConfigName?: string | undefined;
|
|
12015
12017
|
listApiConfigMeta?: {
|
|
12016
|
-
id: string;
|
|
12017
12018
|
name: string;
|
|
12019
|
+
id: string;
|
|
12018
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;
|
|
12019
12021
|
}[] | undefined;
|
|
12020
12022
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -12251,10 +12253,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12251
12253
|
ollamaModelId?: string | undefined;
|
|
12252
12254
|
ollamaBaseUrl?: string | undefined;
|
|
12253
12255
|
vsCodeLmModelSelector?: {
|
|
12254
|
-
id?: string | undefined;
|
|
12255
|
-
vendor?: string | undefined;
|
|
12256
12256
|
family?: string | undefined;
|
|
12257
12257
|
version?: string | undefined;
|
|
12258
|
+
id?: string | undefined;
|
|
12259
|
+
vendor?: string | undefined;
|
|
12258
12260
|
} | undefined;
|
|
12259
12261
|
lmStudioModelId?: string | undefined;
|
|
12260
12262
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -12318,8 +12320,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12318
12320
|
}[] | undefined;
|
|
12319
12321
|
currentApiConfigName?: string | undefined;
|
|
12320
12322
|
listApiConfigMeta?: {
|
|
12321
|
-
id: string;
|
|
12322
12323
|
name: string;
|
|
12324
|
+
id: string;
|
|
12323
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;
|
|
12324
12326
|
}[] | undefined;
|
|
12325
12327
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -12556,10 +12558,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12556
12558
|
ollamaModelId?: string | undefined;
|
|
12557
12559
|
ollamaBaseUrl?: string | undefined;
|
|
12558
12560
|
vsCodeLmModelSelector?: {
|
|
12559
|
-
id?: string | undefined;
|
|
12560
|
-
vendor?: string | undefined;
|
|
12561
12561
|
family?: string | undefined;
|
|
12562
12562
|
version?: string | undefined;
|
|
12563
|
+
id?: string | undefined;
|
|
12564
|
+
vendor?: string | undefined;
|
|
12563
12565
|
} | undefined;
|
|
12564
12566
|
lmStudioModelId?: string | undefined;
|
|
12565
12567
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -12623,8 +12625,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12623
12625
|
}[] | undefined;
|
|
12624
12626
|
currentApiConfigName?: string | undefined;
|
|
12625
12627
|
listApiConfigMeta?: {
|
|
12626
|
-
id: string;
|
|
12627
12628
|
name: string;
|
|
12629
|
+
id: string;
|
|
12628
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;
|
|
12629
12631
|
}[] | undefined;
|
|
12630
12632
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -12892,10 +12894,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12892
12894
|
ollamaModelId?: string | undefined;
|
|
12893
12895
|
ollamaBaseUrl?: string | undefined;
|
|
12894
12896
|
vsCodeLmModelSelector?: {
|
|
12895
|
-
id?: string | undefined;
|
|
12896
|
-
vendor?: string | undefined;
|
|
12897
12897
|
family?: string | undefined;
|
|
12898
12898
|
version?: string | undefined;
|
|
12899
|
+
id?: string | undefined;
|
|
12900
|
+
vendor?: string | undefined;
|
|
12899
12901
|
} | undefined;
|
|
12900
12902
|
lmStudioModelId?: string | undefined;
|
|
12901
12903
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -12959,8 +12961,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
12959
12961
|
}[] | undefined;
|
|
12960
12962
|
currentApiConfigName?: string | undefined;
|
|
12961
12963
|
listApiConfigMeta?: {
|
|
12962
|
-
id: string;
|
|
12963
12964
|
name: string;
|
|
12965
|
+
id: string;
|
|
12964
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;
|
|
12965
12967
|
}[] | undefined;
|
|
12966
12968
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -13211,10 +13213,10 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13211
13213
|
ollamaModelId?: string | undefined;
|
|
13212
13214
|
ollamaBaseUrl?: string | undefined;
|
|
13213
13215
|
vsCodeLmModelSelector?: {
|
|
13214
|
-
id?: string | undefined;
|
|
13215
|
-
vendor?: string | undefined;
|
|
13216
13216
|
family?: string | undefined;
|
|
13217
13217
|
version?: string | undefined;
|
|
13218
|
+
id?: string | undefined;
|
|
13219
|
+
vendor?: string | undefined;
|
|
13218
13220
|
} | undefined;
|
|
13219
13221
|
lmStudioModelId?: string | undefined;
|
|
13220
13222
|
lmStudioBaseUrl?: string | undefined;
|
|
@@ -13278,8 +13280,8 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
13278
13280
|
}[] | undefined;
|
|
13279
13281
|
currentApiConfigName?: string | undefined;
|
|
13280
13282
|
listApiConfigMeta?: {
|
|
13281
|
-
id: string;
|
|
13282
13283
|
name: string;
|
|
13284
|
+
id: string;
|
|
13283
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;
|
|
13284
13286
|
}[] | undefined;
|
|
13285
13287
|
pinnedApiConfigs?: Record<string, boolean> | undefined;
|
|
@@ -14835,8 +14837,8 @@ declare const modeMarketplaceItemSchema: z.ZodObject<{
|
|
|
14835
14837
|
content: z.ZodString;
|
|
14836
14838
|
}, "strip", z.ZodTypeAny, {
|
|
14837
14839
|
description: string;
|
|
14838
|
-
id: string;
|
|
14839
14840
|
name: string;
|
|
14841
|
+
id: string;
|
|
14840
14842
|
content: string;
|
|
14841
14843
|
prerequisites?: string[] | undefined;
|
|
14842
14844
|
author?: string | undefined;
|
|
@@ -14844,8 +14846,8 @@ declare const modeMarketplaceItemSchema: z.ZodObject<{
|
|
|
14844
14846
|
tags?: string[] | undefined;
|
|
14845
14847
|
}, {
|
|
14846
14848
|
description: string;
|
|
14847
|
-
id: string;
|
|
14848
14849
|
name: string;
|
|
14850
|
+
id: string;
|
|
14849
14851
|
content: string;
|
|
14850
14852
|
prerequisites?: string[] | undefined;
|
|
14851
14853
|
author?: string | undefined;
|
|
@@ -14922,8 +14924,8 @@ declare const mcpMarketplaceItemSchema: z.ZodObject<{
|
|
|
14922
14924
|
}>, "many">>;
|
|
14923
14925
|
}, "strip", z.ZodTypeAny, {
|
|
14924
14926
|
description: string;
|
|
14925
|
-
id: string;
|
|
14926
14927
|
name: string;
|
|
14928
|
+
id: string;
|
|
14927
14929
|
url: string;
|
|
14928
14930
|
content: string | {
|
|
14929
14931
|
name: string;
|
|
@@ -14948,8 +14950,8 @@ declare const mcpMarketplaceItemSchema: z.ZodObject<{
|
|
|
14948
14950
|
tags?: string[] | undefined;
|
|
14949
14951
|
}, {
|
|
14950
14952
|
description: string;
|
|
14951
|
-
id: string;
|
|
14952
14953
|
name: string;
|
|
14954
|
+
id: string;
|
|
14953
14955
|
url: string;
|
|
14954
14956
|
content: string | {
|
|
14955
14957
|
name: string;
|
|
@@ -14992,8 +14994,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
14992
14994
|
}, "strip", z.ZodTypeAny, {
|
|
14993
14995
|
type: "mode";
|
|
14994
14996
|
description: string;
|
|
14995
|
-
id: string;
|
|
14996
14997
|
name: string;
|
|
14998
|
+
id: string;
|
|
14997
14999
|
content: string;
|
|
14998
15000
|
prerequisites?: string[] | undefined;
|
|
14999
15001
|
author?: string | undefined;
|
|
@@ -15002,8 +15004,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
15002
15004
|
}, {
|
|
15003
15005
|
type: "mode";
|
|
15004
15006
|
description: string;
|
|
15005
|
-
id: string;
|
|
15006
15007
|
name: string;
|
|
15008
|
+
id: string;
|
|
15007
15009
|
content: string;
|
|
15008
15010
|
prerequisites?: string[] | undefined;
|
|
15009
15011
|
author?: string | undefined;
|
|
@@ -15081,8 +15083,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
15081
15083
|
}, "strip", z.ZodTypeAny, {
|
|
15082
15084
|
type: "mcp";
|
|
15083
15085
|
description: string;
|
|
15084
|
-
id: string;
|
|
15085
15086
|
name: string;
|
|
15087
|
+
id: string;
|
|
15086
15088
|
url: string;
|
|
15087
15089
|
content: string | {
|
|
15088
15090
|
name: string;
|
|
@@ -15108,8 +15110,8 @@ declare const marketplaceItemSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
15108
15110
|
}, {
|
|
15109
15111
|
type: "mcp";
|
|
15110
15112
|
description: string;
|
|
15111
|
-
id: string;
|
|
15112
15113
|
name: string;
|
|
15114
|
+
id: string;
|
|
15113
15115
|
url: string;
|
|
15114
15116
|
content: string | {
|
|
15115
15117
|
name: string;
|
|
@@ -15743,6 +15745,11 @@ declare const DEFAULT_MODES: readonly ModeConfig[];
|
|
|
15743
15745
|
declare const reasoningEfforts: readonly ["low", "medium", "high"];
|
|
15744
15746
|
declare const reasoningEffortsSchema: z.ZodEnum<["low", "medium", "high"]>;
|
|
15745
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>;
|
|
15746
15753
|
/**
|
|
15747
15754
|
* Verbosity
|
|
15748
15755
|
*/
|
|
@@ -17591,6 +17598,7 @@ declare const BEDROCK_REGIONS: {
|
|
|
17591
17598
|
value: string;
|
|
17592
17599
|
label: string;
|
|
17593
17600
|
}[];
|
|
17601
|
+
declare const BEDROCK_CLAUDE_SONNET_4_MODEL_ID = "anthropic.claude-sonnet-4-20250514-v1:0";
|
|
17594
17602
|
|
|
17595
17603
|
type CerebrasModelId = keyof typeof cerebrasModels;
|
|
17596
17604
|
declare const cerebrasDefaultModelId: CerebrasModelId;
|
|
@@ -18056,36 +18064,212 @@ declare const deepSeekModels: {
|
|
|
18056
18064
|
};
|
|
18057
18065
|
declare const DEEP_SEEK_DEFAULT_TEMPERATURE = 0.6;
|
|
18058
18066
|
|
|
18059
|
-
|
|
18060
|
-
declare const
|
|
18061
|
-
|
|
18062
|
-
|
|
18063
|
-
readonly
|
|
18064
|
-
readonly contextWindow: 1048576;
|
|
18065
|
-
readonly supportsImages: true;
|
|
18066
|
-
readonly supportsPromptCache: false;
|
|
18067
|
-
readonly inputPrice: 0.15;
|
|
18068
|
-
readonly outputPrice: 3.5;
|
|
18069
|
-
readonly maxThinkingTokens: 24576;
|
|
18070
|
-
readonly supportsReasoningBudget: true;
|
|
18071
|
-
readonly requiredReasoningBudget: true;
|
|
18072
|
-
};
|
|
18073
|
-
readonly "gemini-2.5-flash-preview-04-17": {
|
|
18074
|
-
readonly maxTokens: 65535;
|
|
18075
|
-
readonly contextWindow: 1048576;
|
|
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;
|
|
18076
18072
|
readonly supportsImages: true;
|
|
18077
|
-
readonly supportsPromptCache:
|
|
18078
|
-
readonly inputPrice: 0.
|
|
18079
|
-
readonly outputPrice: 0.
|
|
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.";
|
|
18080
18079
|
};
|
|
18081
|
-
readonly "
|
|
18082
|
-
readonly maxTokens:
|
|
18083
|
-
readonly contextWindow:
|
|
18080
|
+
readonly "doubao-seed-1-6-thinking-250715": {
|
|
18081
|
+
readonly maxTokens: 32768;
|
|
18082
|
+
readonly contextWindow: 128000;
|
|
18084
18083
|
readonly supportsImages: true;
|
|
18085
18084
|
readonly supportsPromptCache: true;
|
|
18086
|
-
readonly inputPrice: 0.
|
|
18087
|
-
readonly outputPrice:
|
|
18088
|
-
readonly
|
|
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
|
+
|
|
18243
|
+
type GeminiModelId = keyof typeof geminiModels;
|
|
18244
|
+
declare const geminiDefaultModelId: GeminiModelId;
|
|
18245
|
+
declare const geminiModels: {
|
|
18246
|
+
readonly "gemini-2.5-flash-preview-04-17:thinking": {
|
|
18247
|
+
readonly maxTokens: 65535;
|
|
18248
|
+
readonly contextWindow: 1048576;
|
|
18249
|
+
readonly supportsImages: true;
|
|
18250
|
+
readonly supportsPromptCache: false;
|
|
18251
|
+
readonly inputPrice: 0.15;
|
|
18252
|
+
readonly outputPrice: 3.5;
|
|
18253
|
+
readonly maxThinkingTokens: 24576;
|
|
18254
|
+
readonly supportsReasoningBudget: true;
|
|
18255
|
+
readonly requiredReasoningBudget: true;
|
|
18256
|
+
};
|
|
18257
|
+
readonly "gemini-2.5-flash-preview-04-17": {
|
|
18258
|
+
readonly maxTokens: 65535;
|
|
18259
|
+
readonly contextWindow: 1048576;
|
|
18260
|
+
readonly supportsImages: true;
|
|
18261
|
+
readonly supportsPromptCache: false;
|
|
18262
|
+
readonly inputPrice: 0.15;
|
|
18263
|
+
readonly outputPrice: 0.6;
|
|
18264
|
+
};
|
|
18265
|
+
readonly "gemini-2.5-flash-preview-05-20:thinking": {
|
|
18266
|
+
readonly maxTokens: 65535;
|
|
18267
|
+
readonly contextWindow: 1048576;
|
|
18268
|
+
readonly supportsImages: true;
|
|
18269
|
+
readonly supportsPromptCache: true;
|
|
18270
|
+
readonly inputPrice: 0.15;
|
|
18271
|
+
readonly outputPrice: 3.5;
|
|
18272
|
+
readonly cacheReadsPrice: 0.0375;
|
|
18089
18273
|
readonly cacheWritesPrice: 1;
|
|
18090
18274
|
readonly maxThinkingTokens: 24576;
|
|
18091
18275
|
readonly supportsReasoningBudget: true;
|
|
@@ -18843,6 +19027,20 @@ declare const OPEN_ROUTER_REASONING_BUDGET_MODELS: Set<string>;
|
|
|
18843
19027
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
18844
19028
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
18845
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
|
+
|
|
18846
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";
|
|
18847
19045
|
declare const sambaNovaDefaultModelId: SambaNovaModelId;
|
|
18848
19046
|
declare const sambaNovaModels: {
|
|
@@ -19483,46 +19681,6 @@ declare const xaiModels: {
|
|
|
19483
19681
|
};
|
|
19484
19682
|
};
|
|
19485
19683
|
|
|
19486
|
-
declare const doubaoDefaultModelId = "doubao-seed-1-6-250615";
|
|
19487
|
-
declare const doubaoModels: {
|
|
19488
|
-
readonly "doubao-seed-1-6-250615": {
|
|
19489
|
-
readonly maxTokens: 32768;
|
|
19490
|
-
readonly contextWindow: 128000;
|
|
19491
|
-
readonly supportsImages: true;
|
|
19492
|
-
readonly supportsPromptCache: true;
|
|
19493
|
-
readonly inputPrice: 0.0001;
|
|
19494
|
-
readonly outputPrice: 0.0004;
|
|
19495
|
-
readonly cacheWritesPrice: 0.0001;
|
|
19496
|
-
readonly cacheReadsPrice: 0.00002;
|
|
19497
|
-
readonly description: "Doubao Seed 1.6 is a powerful model designed for high-performance tasks with extensive context handling.";
|
|
19498
|
-
};
|
|
19499
|
-
readonly "doubao-seed-1-6-thinking-250715": {
|
|
19500
|
-
readonly maxTokens: 32768;
|
|
19501
|
-
readonly contextWindow: 128000;
|
|
19502
|
-
readonly supportsImages: true;
|
|
19503
|
-
readonly supportsPromptCache: true;
|
|
19504
|
-
readonly inputPrice: 0.0002;
|
|
19505
|
-
readonly outputPrice: 0.0008;
|
|
19506
|
-
readonly cacheWritesPrice: 0.0002;
|
|
19507
|
-
readonly cacheReadsPrice: 0.00004;
|
|
19508
|
-
readonly description: "Doubao Seed 1.6 Thinking is optimized for reasoning tasks, providing enhanced performance in complex problem-solving scenarios.";
|
|
19509
|
-
};
|
|
19510
|
-
readonly "doubao-seed-1-6-flash-250715": {
|
|
19511
|
-
readonly maxTokens: 32768;
|
|
19512
|
-
readonly contextWindow: 128000;
|
|
19513
|
-
readonly supportsImages: true;
|
|
19514
|
-
readonly supportsPromptCache: true;
|
|
19515
|
-
readonly inputPrice: 0.00015;
|
|
19516
|
-
readonly outputPrice: 0.0006;
|
|
19517
|
-
readonly cacheWritesPrice: 0.00015;
|
|
19518
|
-
readonly cacheReadsPrice: 0.00003;
|
|
19519
|
-
readonly description: "Doubao Seed 1.6 Flash is tailored for speed and efficiency, making it ideal for applications requiring rapid responses.";
|
|
19520
|
-
};
|
|
19521
|
-
};
|
|
19522
|
-
declare const doubaoDefaultModelInfo: ModelInfo;
|
|
19523
|
-
declare const DOUBAO_API_BASE_URL = "https://ark.cn-beijing.volces.com/api/v3";
|
|
19524
|
-
declare const DOUBAO_API_CHAT_PATH = "/chat/completions";
|
|
19525
|
-
|
|
19526
19684
|
type InternationalZAiModelId = keyof typeof internationalZAiModels;
|
|
19527
19685
|
declare const internationalZAiDefaultModelId: InternationalZAiModelId;
|
|
19528
19686
|
declare const internationalZAiModels: {
|
|
@@ -19609,154 +19767,4 @@ declare const mainlandZAiModels: {
|
|
|
19609
19767
|
};
|
|
19610
19768
|
declare const ZAI_DEFAULT_TEMPERATURE = 0;
|
|
19611
19769
|
|
|
19612
|
-
type FireworksModelId
|
|
19613
|
-
declare const fireworksDefaultModelId: FireworksModelId;
|
|
19614
|
-
declare const fireworksModels: {
|
|
19615
|
-
readonly "accounts/fireworks/models/kimi-k2-instruct": {
|
|
19616
|
-
readonly maxTokens: 16384;
|
|
19617
|
-
readonly contextWindow: 128000;
|
|
19618
|
-
readonly supportsImages: false;
|
|
19619
|
-
readonly supportsPromptCache: false;
|
|
19620
|
-
readonly inputPrice: 0.6;
|
|
19621
|
-
readonly outputPrice: 2.5;
|
|
19622
|
-
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.";
|
|
19623
|
-
};
|
|
19624
|
-
readonly "accounts/fireworks/models/qwen3-235b-a22b-instruct-2507": {
|
|
19625
|
-
readonly maxTokens: 32768;
|
|
19626
|
-
readonly contextWindow: 256000;
|
|
19627
|
-
readonly supportsImages: false;
|
|
19628
|
-
readonly supportsPromptCache: false;
|
|
19629
|
-
readonly inputPrice: 0.22;
|
|
19630
|
-
readonly outputPrice: 0.88;
|
|
19631
|
-
readonly description: "Latest Qwen3 thinking model, competitive against the best closed source models in Jul 2025.";
|
|
19632
|
-
};
|
|
19633
|
-
readonly "accounts/fireworks/models/qwen3-coder-480b-a35b-instruct": {
|
|
19634
|
-
readonly maxTokens: 32768;
|
|
19635
|
-
readonly contextWindow: 256000;
|
|
19636
|
-
readonly supportsImages: false;
|
|
19637
|
-
readonly supportsPromptCache: false;
|
|
19638
|
-
readonly inputPrice: 0.45;
|
|
19639
|
-
readonly outputPrice: 1.8;
|
|
19640
|
-
readonly description: "Qwen3's most agentic code model to date.";
|
|
19641
|
-
};
|
|
19642
|
-
readonly "accounts/fireworks/models/deepseek-r1-0528": {
|
|
19643
|
-
readonly maxTokens: 20480;
|
|
19644
|
-
readonly contextWindow: 160000;
|
|
19645
|
-
readonly supportsImages: false;
|
|
19646
|
-
readonly supportsPromptCache: false;
|
|
19647
|
-
readonly inputPrice: 3;
|
|
19648
|
-
readonly outputPrice: 8;
|
|
19649
|
-
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.";
|
|
19650
|
-
};
|
|
19651
|
-
readonly "accounts/fireworks/models/deepseek-v3": {
|
|
19652
|
-
readonly maxTokens: 16384;
|
|
19653
|
-
readonly contextWindow: 128000;
|
|
19654
|
-
readonly supportsImages: false;
|
|
19655
|
-
readonly supportsPromptCache: false;
|
|
19656
|
-
readonly inputPrice: 0.9;
|
|
19657
|
-
readonly outputPrice: 0.9;
|
|
19658
|
-
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.";
|
|
19659
|
-
};
|
|
19660
|
-
readonly "accounts/fireworks/models/glm-4p5": {
|
|
19661
|
-
readonly maxTokens: 16384;
|
|
19662
|
-
readonly contextWindow: 128000;
|
|
19663
|
-
readonly supportsImages: false;
|
|
19664
|
-
readonly supportsPromptCache: false;
|
|
19665
|
-
readonly inputPrice: 0.55;
|
|
19666
|
-
readonly outputPrice: 2.19;
|
|
19667
|
-
readonly description: "Z.ai GLM-4.5 with 355B total parameters and 32B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
19668
|
-
};
|
|
19669
|
-
readonly "accounts/fireworks/models/glm-4p5-air": {
|
|
19670
|
-
readonly maxTokens: 16384;
|
|
19671
|
-
readonly contextWindow: 128000;
|
|
19672
|
-
readonly supportsImages: false;
|
|
19673
|
-
readonly supportsPromptCache: false;
|
|
19674
|
-
readonly inputPrice: 0.55;
|
|
19675
|
-
readonly outputPrice: 2.19;
|
|
19676
|
-
readonly description: "Z.ai GLM-4.5-Air with 106B total parameters and 12B active parameters. Features unified reasoning, coding, and intelligent agent capabilities.";
|
|
19677
|
-
};
|
|
19678
|
-
readonly "accounts/fireworks/models/gpt-oss-20b": {
|
|
19679
|
-
readonly maxTokens: 16384;
|
|
19680
|
-
readonly contextWindow: 128000;
|
|
19681
|
-
readonly supportsImages: false;
|
|
19682
|
-
readonly supportsPromptCache: false;
|
|
19683
|
-
readonly inputPrice: 0.07;
|
|
19684
|
-
readonly outputPrice: 0.3;
|
|
19685
|
-
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.";
|
|
19686
|
-
};
|
|
19687
|
-
readonly "accounts/fireworks/models/gpt-oss-120b": {
|
|
19688
|
-
readonly maxTokens: 16384;
|
|
19689
|
-
readonly contextWindow: 128000;
|
|
19690
|
-
readonly supportsImages: false;
|
|
19691
|
-
readonly supportsPromptCache: false;
|
|
19692
|
-
readonly inputPrice: 0.15;
|
|
19693
|
-
readonly outputPrice: 0.6;
|
|
19694
|
-
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.";
|
|
19695
|
-
};
|
|
19696
|
-
};
|
|
19697
|
-
|
|
19698
|
-
type RooModelId = "roo/sonic";
|
|
19699
|
-
declare const rooDefaultModelId: RooModelId;
|
|
19700
|
-
declare const rooModels: {
|
|
19701
|
-
readonly "roo/sonic": {
|
|
19702
|
-
readonly maxTokens: 16384;
|
|
19703
|
-
readonly contextWindow: 262144;
|
|
19704
|
-
readonly supportsImages: false;
|
|
19705
|
-
readonly supportsPromptCache: true;
|
|
19706
|
-
readonly inputPrice: 0;
|
|
19707
|
-
readonly outputPrice: 0;
|
|
19708
|
-
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.)";
|
|
19709
|
-
};
|
|
19710
|
-
};
|
|
19711
|
-
|
|
19712
|
-
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";
|
|
19713
|
-
declare const featherlessModels: {
|
|
19714
|
-
readonly "deepseek-ai/DeepSeek-V3-0324": {
|
|
19715
|
-
readonly maxTokens: 4096;
|
|
19716
|
-
readonly contextWindow: 32678;
|
|
19717
|
-
readonly supportsImages: false;
|
|
19718
|
-
readonly supportsPromptCache: false;
|
|
19719
|
-
readonly inputPrice: 0;
|
|
19720
|
-
readonly outputPrice: 0;
|
|
19721
|
-
readonly description: "DeepSeek V3 0324 model.";
|
|
19722
|
-
};
|
|
19723
|
-
readonly "deepseek-ai/DeepSeek-R1-0528": {
|
|
19724
|
-
readonly maxTokens: 4096;
|
|
19725
|
-
readonly contextWindow: 32678;
|
|
19726
|
-
readonly supportsImages: false;
|
|
19727
|
-
readonly supportsPromptCache: false;
|
|
19728
|
-
readonly inputPrice: 0;
|
|
19729
|
-
readonly outputPrice: 0;
|
|
19730
|
-
readonly description: "DeepSeek R1 0528 model.";
|
|
19731
|
-
};
|
|
19732
|
-
readonly "moonshotai/Kimi-K2-Instruct": {
|
|
19733
|
-
readonly maxTokens: 4096;
|
|
19734
|
-
readonly contextWindow: 32678;
|
|
19735
|
-
readonly supportsImages: false;
|
|
19736
|
-
readonly supportsPromptCache: false;
|
|
19737
|
-
readonly inputPrice: 0;
|
|
19738
|
-
readonly outputPrice: 0;
|
|
19739
|
-
readonly description: "Kimi K2 Instruct model.";
|
|
19740
|
-
};
|
|
19741
|
-
readonly "openai/gpt-oss-120b": {
|
|
19742
|
-
readonly maxTokens: 4096;
|
|
19743
|
-
readonly contextWindow: 32678;
|
|
19744
|
-
readonly supportsImages: false;
|
|
19745
|
-
readonly supportsPromptCache: false;
|
|
19746
|
-
readonly inputPrice: 0;
|
|
19747
|
-
readonly outputPrice: 0;
|
|
19748
|
-
readonly description: "GPT-OSS 120B model.";
|
|
19749
|
-
};
|
|
19750
|
-
readonly "Qwen/Qwen3-Coder-480B-A35B-Instruct": {
|
|
19751
|
-
readonly maxTokens: 4096;
|
|
19752
|
-
readonly contextWindow: 32678;
|
|
19753
|
-
readonly supportsImages: false;
|
|
19754
|
-
readonly supportsPromptCache: false;
|
|
19755
|
-
readonly inputPrice: 0;
|
|
19756
|
-
readonly outputPrice: 0;
|
|
19757
|
-
readonly description: "Qwen3 Coder 480B A35B Instruct model.";
|
|
19758
|
-
};
|
|
19759
|
-
};
|
|
19760
|
-
declare const featherlessDefaultModelId: FeatherlessModelId;
|
|
19761
|
-
|
|
19762
|
-
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, 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, extendedReasoningEffortsSchema, 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, 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 };
|
|
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 };
|