EveryDev.ai
Subscribe
Home
Tools

3,145+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Reame
    Reame icon

    Reame

    Local Inference
    Featured

    A lean, fully-tested LLM inference server built on llama.cpp for cheap CPU hardware, with persistent disk caching of prompts and past generations so each repeated request costs less than the last.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the MIT license. Self-host on any CPU hardware.

    Engagement

    Available On

    CLI
    API
    Linux
    macOS

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Local InferenceAI InfrastructureLLM Orchestration

    Alternatives

    Wayfinder RouterRapid-MLXSynthetic
    Developer
    Marco CaciottiPesaro, ItalyEst. 2013

    Listed Jul 2026

    About Reame

    Reame is an MIT-licensed LLM inference server built by Marco Caciotti (swellweb) on top of llama.cpp, designed specifically for CPU-first deployment on free tiers, shared VPS instances, and 2-core ARM boxes. It exposes an OpenAI-compatible REST API and ships a zero-config CLI that downloads models, auto-configures threads and KV cache, and starts serving in a single command. The project reached v0.1.5 in July 2026 and is actively developed.

    What It Is

    Reame is a self-hosted local inference server whose central thesis is: on a CPU, never compute the same thing twice. It targets narrow, repetitive AI workloads over private data — document extraction, batch tagging, RAG pipelines, privacy-bound legal or medical text — where the answer lives in the provided context rather than in broad model knowledge. The README reports 100% accuracy on long-context extraction with a 7B model on a free 2-core ARM box, and positions Reame as a cost-effective alternative to metered API calls for thin-margin SaaS products.

    Core Caching Architecture

    Reame's performance model rests on several layered caching mechanisms:

    • Persistent shared-prefix KV cache — prompts are split into fixed token blocks; a chain hash keys a KV snapshot at every block boundary. Different prompts sharing a prefix restore the longest cached boundary and decode only their own tail. Snapshots are stored on NVMe with zstd compression, LRU budgeting, and checksums, and survive restarts.
    • Palimpsest generation archive — every completed generation feeds an on-disk n-gram archive; future requests draft from it at zero inference cost. The README reports a measured 2.3× throughput improvement (22→51 tok/s) on an M3 Pro.
    • ARCA shared-memory daemon — a Redis-compatible service (reame arca) that provides an exact-response cache (~0.02 s vs ~1 s of inference) and a fleet-wide generation corpus so one node's output can draft another's.

    Speculative Decoding and Quality Features

    Beyond caching, Reame includes several inference acceleration and quality mechanisms:

    • Self-regulating speculative decoding — a small draft model or zero-cost n-gram lookup proposes tokens; the target verifies them in one batched pass. A feedback controller measures whether speculation pays on the current hardware and disables it automatically when it doesn't.
    • Il Suggeritore — inverts grammar-constrained decoding to propose structure tokens (list numbering, bullets, format tokens) for free on novel content.
    • The Conclave — --best-of N generates N candidate answers in one interleaved batch using KV cloning (one prefill, cloned into N attempts), then elects a winner by majority vote. The README reports it squeezes roughly one extra correct answer per quiz out of the same model, correcting variance rather than bias.
    • Interleaved multi-user serving — N concurrent generations advance together inside single multi-sequence batches, sharing every model-weight read.

    Deployment and Setup Path

    Installation is available via Homebrew (brew tap swellweb/reame && brew install reame), prebuilt binaries for Linux x64/arm64 and macOS arm64 on the GitHub releases page, and build-from-source with CMake ≥ 3.16 and a C++17 compiler. The CLI resolves catalog names like qwen2.5-1.5b, downloads to ~/.reame/models on first use, and auto-configures threads, KV quantization, and cache directory. A config file is only needed for fine-grained control. The server exposes /v1/completions, /v1/chat/completions, SSE streaming, session snapshots, bearer auth, and a /metrics endpoint, making it a drop-in target for any OpenAI client.

    Update: v0.1.5

    The latest release is v0.1.5, published on 2026-07-13. The repository was created in early July 2026 and has seen active pushes through mid-July 2026. The project is explicitly described as "young and deliberately opinionated and focused" — CPU-only serving, one model per process, correctness pinned by 220+ isolated test cases. Planned roadmap items mentioned in the README include warm-ahead prefill, a semantic (L2) cache layer for the ARCA daemon, and first-class MoE serving. GPU offload, training, and model management UX are explicitly out of scope.

    Reame - 1

    Community Discussions

    Be the first to start a conversation about Reame

    Share your experience with Reame, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the MIT license. Self-host on any CPU hardware.

    • Full source code under MIT license
    • Persistent shared-prefix KV disk cache
    • Palimpsest generation archive
    • ARCA Redis-compatible daemon
    • OpenAI-compatible REST API

    Capabilities

    Key Features

    • Persistent shared-prefix KV cache to disk (zstd, checksummed, LRU-budgeted)
    • Palimpsest generation archive for zero-cost drafting from past outputs
    • Self-regulating speculative decoding with automatic disabling when not beneficial
    • Il Suggeritore: grammar-based structure token speculation
    • The Conclave: best-of-N consensus via interleaved batching and KV cloning
    • ARCA Redis-compatible shared-memory daemon for fleet-wide caching
    • OpenAI-compatible REST API (/v1/completions, /v1/chat/completions, SSE streaming)
    • Zero-config CLI with automatic model download and host auto-configuration
    • Interleaved multi-user serving with shared weight reads
    • Bearer auth, session snapshots, /metrics endpoint
    • 220+ isolated test cases covering multi-sequence, speculative, and KV-clone paths
    • Homebrew, prebuilt binary, and build-from-source installation options

    Integrations

    llama.cpp
    OpenAI API clients
    Continue.dev
    Redis clients
    GGUF model format
    Homebrew
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Reame and help others make informed decisions.

    Developer

    Marco Caciotti

    swellweb is the GitHub handle of Marco Caciotti, who builds Reame — a CPU-first LLM inference server on llama.cpp. The project is MIT-licensed and developed on nights and free-tier hardware, with a focus on making local AI inference economically viable on cheap shared infrastructure. Sponsorships fund the roadmap including warm-ahead prefill, semantic caching, and first-class MoE serving.

    Founded 2013
    Pesaro, Italy
    5 employees

    Used by

    COOP
    Studio Emme
    Westcoast Agency
    BG Studio Legale
    Read more about Marco Caciotti
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Wayfinder Router icon

    Wayfinder Router

    A fast, offline, deterministic prompt router that scores prompt complexity and routes easy prompts to local/small models and hard ones to cloud/large models — no model call required.

    Rapid-MLX icon

    Rapid-MLX

    The fastest local AI inference engine for Apple Silicon Macs, offering OpenAI-compatible API, 17 tool parsers, prompt cache, and 2-4x faster speeds than Ollama.

    Synthetic icon

    Synthetic

    AI platform providing access to multiple LLMs with subscription or usage-based pricing, offering both UI and API access.

    Browse all tools

    Related Topics

    Local Inference

    Tools and platforms for running AI inference locally without cloud dependence.

    141 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    315 tools

    LLM Orchestration

    Platforms and frameworks for designing, managing, and deploying complex LLM workflows with visual interfaces, allowing for the coordination of multiple AI models and services.

    178 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions