Documentation Index
Fetch the complete documentation index at: https://docs.wednesdayai.dev/llms.txt
Use this file to discover all available pages before exploring further.
Ollama
Ollama runs AI models locally on your machine. No API key, no cloud, no data leaving your network. WednesdayAI auto-discovers a running Ollama instance.Prerequisites
Install Ollama from ollama.com. Then pull at least one model:Connecting WednesdayAI
WednesdayAI detects Ollama automatically when it is running on the default port. No login step is required.Config reference
ollama/ prefix to tell the gateway which provider to route to:
| Ollama model name | WednesdayAI model ID |
|---|---|
llama3.3 | ollama/llama3.3 |
mistral | ollama/mistral |
qwen2.5-coder | ollama/qwen2.5-coder |
deepseek-r1 | ollama/deepseek-r1 |
openclaw status --providers to see which Ollama models WednesdayAI can reach.
Remote Ollama
If Ollama runs on a different machine (a home server, a GPU workstation), set the URL to that host:Auto-discovery
When nobaseUrl is configured, WednesdayAI checks OLLAMA_HOST and then falls back to http://localhost:11434. If Ollama responds, it is added to the available providers automatically.
Troubleshooting
No models found
No models found
Ollama is running but has no models pulled. Run
ollama pull <model-name> and restart the gateway, or run openclaw doctor to re-probe.Connection refused
Connection refused
Ollama is not running. Start it with
ollama serve (or the system service on macOS/Linux). Verify with ollama list.Unexpected errors or malformed responses
Unexpected errors or malformed responses
You are likely pointing at the
/v1 compatibility endpoint. Change baseUrl to http://host:11434 (no /v1).Remote Ollama not reachable
Remote Ollama not reachable
By default Ollama only listens on
127.0.0.1. To allow remote connections, set OLLAMA_HOST=0.0.0.0 on the machine running Ollama, then restart Ollama. Consider using Tailscale to avoid exposing port 11434 to the public internet.