Trending Model:#1Inklingthinkingmachines⬇16kTrending Model:#2Ternary-Bonsai-27B-ggufprism-ml⬇432kTrending Model:#3Bonsai-27B-ggufprism-ml⬇1405kTrending Model:#4Unlimited-OCRbaidu⬇2237kTrending Model:#5GLM-5.2zai-org⬇545kTrending Model:#6Qwythos-9B-Claude-Mythos-5-1M-GGUFempero-ai⬇2133kTrending Model:#7krea2-identity-editconradlocke⬇0kTrending Model:#8Qwen3.6-35B-A3B-Uncensored-HauhauCS-AggressiveHauhauCS⬇1998kTrending Model:#9Qwen3.6-27B-Fable-Fusion-711-Uncensored-Heretic-NM-DAU-NEO-MAX-MTP-GGUFDavidAU⬇63kTrending Model:#10OvisOCR2ATH-MaaS⬇17kTrending Model:#1Inklingthinkingmachines⬇16kTrending Model:#2Ternary-Bonsai-27B-ggufprism-ml⬇432kTrending Model:#3Bonsai-27B-ggufprism-ml⬇1405kTrending Model:#4Unlimited-OCRbaidu⬇2237kTrending Model:#5GLM-5.2zai-org⬇545kTrending Model:#6Qwythos-9B-Claude-Mythos-5-1M-GGUFempero-ai⬇2133kTrending Model:#7krea2-identity-editconradlocke⬇0kTrending Model:#8Qwen3.6-35B-A3B-Uncensored-HauhauCS-AggressiveHauhauCS⬇1998kTrending Model:#9Qwen3.6-27B-Fable-Fusion-711-Uncensored-Heretic-NM-DAU-NEO-MAX-MTP-GGUFDavidAU⬇63kTrending Model:#10OvisOCR2ATH-MaaS⬇17k

ProveKV Squashes Multi Agent LLM Memory By Up To 68x Without Losing Quality

Semi transparent glowing memory chip is made up of a compressed data stream with blue and green binary code.

ProveKV is a new open-source release that slashes the memory footprint of multi-agent language model systems by up to 68 times. It stores the shared part of a conversation once in a compressed pool, then gives each agent only its unique tail, delivering zero perplexity regression on a real 1.7 billion parameter model. The project provides detailed benchmarks showing 36x lossless and 68x lossy compression compared to an uncompressed f32 KV cache.

RecursiveIntell built ProveKV as a two-tier, content-addressed cache pool that combines FibQuant and TurboQuant codecs. They validated the system on SmolLM2-1.7B with WikiText-2, achieving bit-exact output quality while cutting storage dramatically. The repository includes reproducible scripts, audit gates, and receipts to verify every claim.

Two-tier pool architecture

Key Features
  • Shared cold pool built once for all agents.
  • Per-agent hot shells recompress unique tokens.
  • Lossless mode: 36x reduction vs raw f32.
  • Lossy mode: 68x reduction, zero PPL change.
  • Batched binary wire format minimizes overhead.
  • Validated on real 1.7B model and WikiText-2.
  • Multi-agent scaling from 2 to 8 agents tested.

Developers experimenting with multi-agent LLM setups on consumer GPUs can drastically cut the storage needed for shared context. Privacy-conscious professionals benefit from running collaborative agents locally without exhausting video memory. Small teams can prototype complex multi-agent workflows that previously required expensive hardware.

Known limitations and open work

The system does not reduce the live GPU cache size during inference, as it must decompress back to f32 before patching the model’s memory. Current decode wall-clock tests reveal the batched path is slower than per-vector processing, so no speed gain is promised. The team plans to extend validation to longer contexts, larger models, and diverse datasets beyond WikiText-2.

“Result: 36× lossless / 68× lossy memory reduction vs. f32‑raw KV cache on SmolLM2‑1.7B + WikiText‑2 (0% ΔPPL).” — Source: Reddit