Jul 14, 2026 ai-code

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.

Reame Logo

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

ServerCheap-CPU focusDisk memoryOpenAI APIFree
Reame
Ollamapartial
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

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