Skip to content

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)

  1. Sign in to Open WebUI and go to Admin Settings → Connections.

  2. In the OpenAI API section:

    FieldValue
    API Base URLhttps://gateway.mindproxy.ai/v1
    API Keyyour sk-...
  3. 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-key
yaml
# docker-compose snippet
environment:
  - OPENAI_API_BASE_URL=https://gateway.mindproxy.ai/v1
  - OPENAI_API_KEY=sk-your-key

Troubleshooting

  • Empty model list: confirm the base URL includes /v1 and the key is valid. The platform's GET /v1/models only returns models the key is allowed to use.
  • 401 / 403: wrong key, or model not in scope.
  • See common troubleshooting.

Gateway: gateway.mindproxy.ai · Built with VitePress