Fix Ollama endpoint: use http://ollama:11434

This commit is contained in:
Marcos
2026-03-22 16:40:27 -03:00
parent a74978da4a
commit 2cc4ed0d18
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ LLM_PROVIDERS = {
"ollama": {
"name": "Ollama (Local)",
"type": "local",
"endpoint": os.getenv("OLLAMA_HOST", "http://ollama-lw4s8g4gc8gss4gkc4gg0wk4:11434"),
"endpoint": os.getenv("OLLAMA_HOST", "http://ollama:11434"),
"models": None,
"default": "qwen2.5-coder:1.5b"
}