Open WebUI
Open WebUI is a self-hosted web AI interface, good for team sharing. It natively supports "OpenAI-compatible APIs".
Steps (in the UI)
Sign in to Open WebUI and go to Admin Settings → Connections.
In the OpenAI API section:
Field Value API Base URL https://gateway.mindproxy.ai/v1API Key your sk-...Save. Open WebUI fetches the model list (calls
GET /v1/models); on success the platform models appear in the chat model selector.
Deploy with environment variables
Set them directly in docker run or compose:
bash
OPENAI_API_BASE_URL=https://gateway.mindproxy.ai/v1
OPENAI_API_KEY=sk-your-keyyaml
# docker-compose snippet
environment:
- OPENAI_API_BASE_URL=https://gateway.mindproxy.ai/v1
- OPENAI_API_KEY=sk-your-keyTroubleshooting
- Empty model list: confirm the base URL includes
/v1and the key is valid. The platform'sGET /v1/modelsonly returns models the key is allowed to use. - 401 / 403: wrong key, or model not in scope.
- See common troubleshooting.