diff --git a/backend/config.py b/backend/config.py index 20bc7ad29..6b5431bce 100644 --- a/backend/config.py +++ b/backend/config.py @@ -223,18 +223,6 @@ if ENV == "prod" and RUNNING_ON_K8S == "": OLLAMA_BASE_URL = "http://host.docker.internal:11434" else: OLLAMA_BASE_URL = "http://ollama-service.open-webui.svc.cluster.local:11434" - - - -def is_running_in_kubernetes(): - return 'KUBERNETES_SERVICE_HOST' in os.environ - -# Setze EMV auf True, wenn in Kubernetes -if is_running_in_kubernetes(): - os.environ['EMV'] = 'True' - print("Läuft in Kubernetes, EMV gesetzt auf True.") -else: - print("Läuft nicht in Kubernetes.") OLLAMA_BASE_URLS = os.environ.get("OLLAMA_BASE_URLS", "")