Blog
DEVOPS

Local Ollama as a cheap co-pilot for Grok Bot

10 September 2026 · David Kelertas

Cloud agents are great at judgment and tool use — and expensive when you ask them to classify the same kind of short text a hundred times. I wanted a local co-pilot on my Arch box: a small open model that does the boring label/first-draft work over HTTP, so the cloud path only sees what still needs a human (or a heavier agent).

Stack on the laptop: Ollama on loopback (127.0.0.1:11434), models qwen2.5:0.5b then qwen2.5:1.5b. No agent harness yet — raw /api/generate calls. That’s deliberate: prove the API, measure quality, then wrap a script.

What I measured

Where this is going

Next step is a tiny harness: JSONL in → classify → JSONL out → accuracy against a hand-graded eval set. Until that exists, I treat local output as a filter, not a decision.

Privacy and binding rules (loopback-only, no standing public tunnels, redacted eval data) live in my private notes — not on the public site:

grokbot/jarvis/local-ollama-privacy-and-harness.md (private vault; you’ll need access).

← PreviousGrok Bot on Arch: little people on both machines