orientx

Open WebUI

Self-hosted chat UI with an OpenAI connection

Open WebUI can list models from any OpenAI-compatible /v1 endpoint.

Base URLhttps://api.orientx.ai/v1
AuthOpenAI API key field
WhereAdmin → Settings → Connections

Add a connection (UI)

  1. Sign in as an admin.
  2. Open Admin Panel → Settings → Connections.
  3. Under OpenAI API, set:
    • URL to https://api.orientx.ai/v1 (keep the /v1 suffix)
    • Key to your orientx API key
  4. Save, then open a new chat and pick a model from the dropdown.

Or set it on the container

docker run -d \
  -p 3000:8080 \
  -e OPENAI_API_BASE_URL=https://api.orientx.ai/v1 \
  -e OPENAI_API_KEY="$ORIENTX_API_KEY" \
  -v open-webui:/app/backend/data \
  ghcr.io/open-webui/open-webui:main

Multiple endpoints use OPENAI_API_BASE_URLS / OPENAI_API_KEYS as semicolon-separated lists.

The model dropdown is populated from GET /v1/models. If it is empty, the key cannot list models — check the key in the console and that the URL includes /v1.

On this page