Why Ollama
Ollama runs models locally. You pay nothing per token and no key ever leaves your machine. It is the default choice when the task must stay private.
Install Ollama
- Install Ollama from ollama.com.
- Pull a model:
ollama pull llama3.1. - Confirm it runs:
ollama run llama3.1 "hi".
Point the agent at it
- In the console, open Settings → Provider.
- Choose Ollama and set the local endpoint (usually
http://localhost:11434). - Pick the model you pulled.
- Save — no API key required.
Test it
$ remoteagent chat "what are you running on?"
Trade-offs
i
Local models are free and private but slower and less capable than frontier models. Use Ollama for private or routine work, and a provider key for the hard tasks.