@roo-code/types 1.56.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 +0 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +0 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -6116,7 +6116,7 @@ declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
|
6116
6116
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6117
6117
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
6118
6118
|
declare const getApiProtocol: (provider: ProviderName | undefined, modelId?: string) => "anthropic" | "openai";
|
|
6119
|
-
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "
|
|
6119
|
+
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "lmstudio" | "openai" | "ollama">, {
|
|
6120
6120
|
id: ProviderName;
|
|
6121
6121
|
label: string;
|
|
6122
6122
|
models: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -6116,7 +6116,7 @@ declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
|
6116
6116
|
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
6117
6117
|
declare const ANTHROPIC_STYLE_PROVIDERS: ProviderName[];
|
|
6118
6118
|
declare const getApiProtocol: (provider: ProviderName | undefined, modelId?: string) => "anthropic" | "openai";
|
|
6119
|
-
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "
|
|
6119
|
+
declare const MODELS_BY_PROVIDER: Record<Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "lmstudio" | "openai" | "ollama">, {
|
|
6120
6120
|
id: ProviderName;
|
|
6121
6121
|
label: string;
|
|
6122
6122
|
models: string[];
|
package/dist/index.js
CHANGED
|
@@ -3807,13 +3807,9 @@ var MODELS_BY_PROVIDER = {
|
|
|
3807
3807
|
xai: { id: "xai", label: "xAI (Grok)", models: Object.keys(xaiModels) },
|
|
3808
3808
|
zai: { id: "zai", label: "Zai", models: Object.keys(internationalZAiModels) },
|
|
3809
3809
|
// Models pulled from the respective APIs.
|
|
3810
|
-
"gemini-cli": { id: "gemini-cli", label: "Gemini CLI", models: [] },
|
|
3811
3810
|
glama: { id: "glama", label: "Glama", models: [] },
|
|
3812
3811
|
huggingface: { id: "huggingface", label: "Hugging Face", models: [] },
|
|
3813
3812
|
litellm: { id: "litellm", label: "LiteLLM", models: [] },
|
|
3814
|
-
lmstudio: { id: "lmstudio", label: "LM Studio", models: [] },
|
|
3815
|
-
ollama: { id: "ollama", label: "Ollama", models: [] },
|
|
3816
|
-
openai: { id: "openai", label: "OpenAI Compatible", models: [] },
|
|
3817
3813
|
openrouter: { id: "openrouter", label: "OpenRouter", models: [] },
|
|
3818
3814
|
requesty: { id: "requesty", label: "Requesty", models: [] },
|
|
3819
3815
|
unbound: { id: "unbound", label: "Unbound", models: [] }
|