Skip to content

Commit b322338

Browse files
committed
chore(types): split MODELS_BY_PROVIDER into dynamic and local sections and clarify headers
1 parent 991f98f commit b322338

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

packages/types/src/provider-settings.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -696,15 +696,17 @@ export const MODELS_BY_PROVIDER: Record<
696696
xai: { id: "xai", label: "xAI (Grok)", models: Object.keys(xaiModels) },
697697
zai: { id: "zai", label: "Zai", models: Object.keys(internationalZAiModels) },
698698

699-
// Dynamic providers; models pulled from the respective APIs.
699+
// Dynamic providers; models pulled from remote APIs.
700700
glama: { id: "glama", label: "Glama", models: [] },
701701
huggingface: { id: "huggingface", label: "Hugging Face", models: [] },
702702
litellm: { id: "litellm", label: "LiteLLM", models: [] },
703-
lmstudio: { id: "lmstudio", label: "LM Studio", models: [] },
704-
ollama: { id: "ollama", label: "Ollama", models: [] },
705703
openrouter: { id: "openrouter", label: "OpenRouter", models: [] },
706704
requesty: { id: "requesty", label: "Requesty", models: [] },
707705
unbound: { id: "unbound", label: "Unbound", models: [] },
708706
deepinfra: { id: "deepinfra", label: "DeepInfra", models: [] },
709707
"vercel-ai-gateway": { id: "vercel-ai-gateway", label: "Vercel AI Gateway", models: [] },
708+
709+
// Local providers; models discovered from localhost endpoints.
710+
lmstudio: { id: "lmstudio", label: "LM Studio", models: [] },
711+
ollama: { id: "ollama", label: "Ollama", models: [] },
710712
}

0 commit comments

Comments
 (0)