When Less Latent Leads to Better Relay: Information-Preserving Compression for Latent Multi-Agent LLM Collaboration

arXiv cs.LG / 4/16/2026

💬 OpinionIdeas & Deep AnalysisModels & Research

Key Points

  • The paper addresses high memory and communication costs in latent multi-agent LLM systems that use full KV-cache relays for information exchange.
  • It proposes Orthogonal Backfill (OBF), an eviction-style KV compression method that adds a low-rank orthogonal residual from discarded KV states into the retained KV states to reduce information loss.
  • Experiments on nine benchmarks (mathematical reasoning, coding, and knowledge-intensive QA) show OBF matches full KV relay performance while cutting communication cost by about 79.8%–89.4%.
  • OBF achieves best results on 7 of 9 benchmarks and suggests that preserving the most useful latent information can outperform simply transmitting more.
  • The authors release a public codebase to support replication and further development of the approach.

Abstract

Communication in Large Language Model (LLM)-based multi-agent systems is moving beyond discrete tokens to preserve richer context. Recent work such as LatentMAS enables agents to exchange latent messages through full key-value (KV) caches. However, full KV relay incurs high memory and communication cost. We adapt eviction-style KV compression to this setting and introduce Orthogonal Backfill (OBF) to mitigate information loss from hard eviction. OBF injects a low-rank orthogonal residual from discarded KV states into the retained KV states. We evaluate proposed method against full KV relay on nine standard benchmarks spanning mathematical reasoning, coding, and knowledge-intensive QA. It achieves performance comparable to full KV relay while reducing communication cost by 79.8%--89.4%. OBF further improves the performance and achieves the best results on 7 of the 9 benchmarks. This suggests that more information does not necessarily lead to better communication; preserving the most useful information matters more. Our codebase is publicly available on https://github.com/markli404/When-Less-Latent-Leads-to-Better-Relay.