Reame Review 2026: A Lean LLM Server That Remembers What It Computed
A hands-on review of Reame — a CPU-first, llama.cpp-based inference server that caches prompts and generations to disk, so the 100th request on cheap hardware costs a fraction of the first.
Most local LLM servers treat every request as brand new: compute, discard, repeat. On a GPU that’s fine — compute is cheap. On a cheap CPU, compute is the most expensive thing you have. Reame is built around the opposite idea: on a CPU, never compute the same thing twice.

What Reame Does
Reame is a lean, fully-tested LLM inference server built on llama.cpp, designed for the hardware you already have — shared vCPUs, free-tier instances, even 2-core ARM boxes. It caches prompts, prefixes, and past generations to disk (zstd + LRU), so a server gets faster the longer it runs. It exposes an OpenAI-compatible REST API and runs one model per process, CPU-only.
Use Cases
- Repetitive workloads — document extraction, batch pipelines, data labeling where the same prefix recurs.
- Private code completion — a small model (e.g. Qwen2.5-Coder 1.5B) served on a free VPS.
- Privacy-bound inference — data never leaves your own machine.
- Cutting API bills — replace paid cloud inference for narrow, high-volume tasks.
Key Features
Disk-First KV Caching
Prefix snapshots are written to NVMe with zstd compression and an LRU byte budget. Unlike GPU-resident prefix caches, they survive restarts and are shared across users.
Palimpsest Generation Archive
Completed generations are stored as an n-gram archive. The next similar request drafts its answer from the archive — for free.
Self-Regulating Speculative Decoding
A free n-gram lookup or a tiny draft model proposes tokens; a feedback controller turns speculation off when measured acceptance goes negative.
The Conclave (—best-of N)
An interleaved batch generates N candidates with KV-shared prefill; majority vote elects the winner. Measured to add 0.5–2 correct answers on strict math tests for ~2.5× time.
OpenAI-Compatible API
/v1/chat/completions, SSE streaming, sessions (save/load), bearer auth, and /metrics — point any OpenAI client at it. Zero-config: reame run qwen2.5-1.5b --serve.
How It Compares
| Server | Cheap-CPU focus | Disk memory | OpenAI API | Free |
|---|---|---|---|---|
| Reame | ✅ | ✅ | ✅ | ✅ |
| Ollama | ❌ | ❌ | partial | ✅ |
| llama.cpp | ❌ (engine only) | ❌ | ❌ | ✅ |
| LM Studio | ❌ | ❌ | ✅ | ✅ |
The Verdict
Reame is the right tool if you want to serve one workload seriously on hardware that costs nothing. It is not a GPU replacement and not a casual multi-model playground — but for narrow, repetitive inference on a free-tier box, “the hundredth request costs a fraction of the first” is a genuinely different economic model. Free, MIT-licensed, and self-hosted.
Explore the best AI Coding tools
Related Articles
agent-run Review 2026: Run Coding Agents in a Sandbox Smaller Than a Megabyte
In-depth review of agent-run — a tiny standalone binary that runs pi, opencode, codex, or claude inside a Bubblewrap sandbox so AI coding agents can't touch anything outside your project.
Best AI Agent Tools in 2026: From Coding Assistants to Autonomous Workers
Complete guide to AI agent tools in 2026 — Claude Code, Codex, Cursor, Manus, and more. Which agents actually deliver on the promise of autonomous work?
Best AI Coding Tools in 2026: Cursor vs GitHub Copilot
Compare the top 5 AI coding tools of 2026: Cursor, GitHub Copilot, Claude Code, v0, and Windsurf. Find the best AI pair programmer for your workflow.
Bolt.new Review: In-Browser Full-Stack App Builder with Live Preview
A comprehensive review of Bolt.new, the AI tool that generates and previews full-stack web applications instantly in your browser with interactive feedback.
Subscribe to the 9bests weekly — get the full list free
Hand-picked AI tool reviews and updates every week. Subscribe to receive this full list + 7 more quick-reference sheets (writing / image / video / audio / chat models / data / API cost).
Subscribe free & get it →Independent reviews — ratings aren't influenced by vendor payments · double opt-in · unsubscribe anytime