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.
This commit is contained in:
Hermes Agent service account
2026-09-01 13:48:37 -05:00
parent 56db1b94ee
commit 3c6f6dfe2e

View File

@@ -43,6 +43,8 @@ spec:
# OLLAMA_BASE_URLS removed: astro-orbiter runs vLLM, not Ollama # OLLAMA_BASE_URLS removed: astro-orbiter runs vLLM, not Ollama
- name: OPENAI_BASE_URL - name: OPENAI_BASE_URL
value: "http://astro-orbiter:8000/v1" value: "http://astro-orbiter:8000/v1"
- name: OPENAI_API_BASE_URL
value: "http://astro-orbiter:8000/v1"
- name: OPENAI_API_KEY - name: OPENAI_API_KEY
valueFrom: valueFrom:
secretKeyRef: secretKeyRef: