Open WebUI is the interface for your AI agents. It provides a ChatGPT-like experience that can talk to both your local Ollama models and cloud APIs.
- Navigate to
https://chat.yourdomain.com. - The first account created becomes the Admin.
- Go to Admin Panel > Settings to configure global defaults.
We configure these via environment variables in docker-compose.yml for security and ease of management.
open-webui:
environment:
- OPENAI_API_BASE_URLS=https://api.deepseek.com;https://openrouter.ai/api/v1
- OPENAI_API_KEYS=${DEEPSEEK_API_KEY};${OPENROUTER_API_KEY}Open WebUI automatically detects Ollama running on the same host if configured with:
OLLAMA_BASE_URL=http://ollama:11434
- Go to Workspace > Knowledge.
- Create a Collection (e.g., "Project Docs").
- Upload your files.
- In any chat, type
#to select a collection and "talk" to your documents.