Ollama
Ollama is a first-class Agent > Models provider in Fased. It uses Ollama’s native API, not the OpenAI-compatible/v1 endpoint.
Fased does not install Ollama and does not download Ollama model weights. Run
Ollama separately, then connect its API from Agent > Models.
Ollama support is built into the Fased core runtime. It does not appear in
fased plugins list, and no Ollama plugin needs to be installed.
Use a base URL like:
Quick start
- Install and start Ollama.
- Pull a model:
- Open Agents > selected Agent > Models > Ollama.
- Enter the native base URL, model ID, and optional API key.
- Assign the model to the Agent’s primary/fallback/task roles.
qwen3:4b) or the
provider-qualified ref (ollama/qwen3:4b). Fased stores one canonical
ollama/qwen3:4b reference.
For local-only Ollama, the API key can be blank in the UI. Fased stores a local
non-secret marker so the provider can be registered without exposing a real
credential to the Agent runtime.
Discovery
When Ollama is explicitly configured, Fased can discover local models from:ollama/<model-id> refs. Costs are recorded
as 0 because local Ollama does not bill through a hosted provider.
The same setup path is available from onboarding and CLI:
~/.fased/agents/<agent>/agent/models.json manually; Fased regenerates that
runtime file from the canonical provider configuration.
Windows Ollama with Fased in WSL2
First test the normal loopback URL from inside WSL2:http://WINDOWS_HOST_IP:11434 in Fased. Restrict Windows Firewall access
to the WSL virtual network or another trusted private network. Do not expose
port 11434 to the public internet.
After configuration, one model must appear consistently in all three checks:
Config shape
request.allowPrivateNetwork: true is required because Ollama usually runs on
loopback, LAN, or a private tailnet host.
Cloud and hybrid
If you use Ollama Cloud or a remote Ollama host that requires auth, provide a realOLLAMA_API_KEY or save the key in Agent > Models. For a private LAN or
tailnet host, keep the native base URL and explicitly approve private-network
access.