mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 11:57:51 +01:00
possible fix for format-backend check
This commit is contained in:
@@ -265,10 +265,10 @@ if OLLAMA_BASE_URL == "" and OLLAMA_API_BASE_URL != "":
|
|||||||
if ENV == "prod":
|
if ENV == "prod":
|
||||||
if OLLAMA_BASE_URL == "/ollama" and not K8S_FLAG:
|
if OLLAMA_BASE_URL == "/ollama" and not K8S_FLAG:
|
||||||
if USE_OLLAMA_DOCKER.lower() == "true":
|
if USE_OLLAMA_DOCKER.lower() == "true":
|
||||||
# if you use all-in-one docker container (Open WebUI + Ollama)
|
# if you use all-in-one docker container (Open WebUI + Ollama)
|
||||||
# with the docker build arg USE_OLLAMA=true (--build-arg="USE_OLLAMA=true") this only works with http://localhost:11434
|
# with the docker build arg USE_OLLAMA=true (--build-arg="USE_OLLAMA=true") this only works with http://localhost:11434
|
||||||
OLLAMA_BASE_URL = "http://localhost:11434"
|
OLLAMA_BASE_URL = "http://localhost:11434"
|
||||||
else:
|
else:
|
||||||
OLLAMA_BASE_URL = "http://host.docker.internal:11434"
|
OLLAMA_BASE_URL = "http://host.docker.internal:11434"
|
||||||
elif K8S_FLAG:
|
elif K8S_FLAG:
|
||||||
OLLAMA_BASE_URL = "http://ollama-service.open-webui.svc.cluster.local:11434"
|
OLLAMA_BASE_URL = "http://ollama-service.open-webui.svc.cluster.local:11434"
|
||||||
|
|||||||
Reference in New Issue
Block a user