From 3c6f6dfe2eaeb42b21c6a581cf85ef34c54d2be2 Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Tue, 1 Sep 2026 13:48:37 -0500 Subject: [PATCH] Fix: Use local astro-orbiter endpoint, not OpenAI API Set OPENAI_API_BASE_URL (config.py default) to our local vLLM endpoint. Open WebUI was using hardcoded 'https://api.openai.com/v1' for model discovery. --- cluster/applications/open-webui/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cluster/applications/open-webui/deployment.yaml b/cluster/applications/open-webui/deployment.yaml index 99ffb55..58edfef 100644 --- a/cluster/applications/open-webui/deployment.yaml +++ b/cluster/applications/open-webui/deployment.yaml @@ -43,6 +43,8 @@ spec: # OLLAMA_BASE_URLS removed: astro-orbiter runs vLLM, not Ollama - name: OPENAI_BASE_URL value: "http://astro-orbiter:8000/v1" + - name: OPENAI_API_BASE_URL + value: "http://astro-orbiter:8000/v1" - name: OPENAI_API_KEY valueFrom: secretKeyRef: