Merge pull request #663 from DayuanJiang/fix/ollama-allowed-client-provider

Adds Ollama to allowed client providers list
This commit is contained in:
Dayuan Jiang
2026-01-29 21:57:00 +09:00
committed by GitHub

View File

@@ -39,7 +39,7 @@ export interface ClientOverrides {
baseUrlEnv?: string
}
// Providers that can be used with client-provided API keys
// Providers that can be selected from client settings
const ALLOWED_CLIENT_PROVIDERS: ProviderName[] = [
"openai",
"anthropic",
@@ -53,6 +53,7 @@ const ALLOWED_CLIENT_PROVIDERS: ProviderName[] = [
"sglang",
"gateway",
"edgeone",
"ollama",
"doubao",
"modelscope",
]