Get Started
Runollama in your terminal to open the interactive menu:
ollama
↑/↓, press enter to launch, → to change model, and esc to quit.
The menu provides quick access to:
- Run a model - Start an interactive chat
- Launch tools - Claude Code, Codex, OpenClaw, and more
- Additional integrations - Available under "More..."
Assistants
Launch OpenClaw, a personal AI with 100+ skills:ollama launch openclaw
Coding
Launch Claude Code and other coding tools with Ollama models:ollama launch claude
ollama launch codex
ollama launch opencode
API
Use the API to integrate Ollama into your applications:curl http://localhost:11434/api/chat -d '{
"model": "gemma4",
"messages": [{ "role": "user", "content": "Hello!" }]
}'