Enabling Agents to Communicate Entirely in Latent Space
Pith reviewed 2026-05-17 23:38 UTC · model grok-4.3
The pith
Agents can communicate directly via compressed LLM hidden states instead of natural language tokens.
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Interlat lets LLM-based agents share compressed last hidden states as thought representations, allowing direct latent communication that avoids tokenization losses and supports more exploratory joint problem-solving with substantially lower inference time.
What carries the argument
Interlat, which transmits compressed versions of an LLM's last hidden states as continuous thought vectors for inter-agent exchange.
If this is right
- Collaborative tasks can access richer internal information than language permits.
- Heterogeneous models can still exchange useful signals without shared vocabulary or fine-tuning.
- Inference accelerates by up to 24 times while performance stays competitive.
- Agents display more exploratory behavior because they are not forced to produce language outputs.
Where Pith is reading between the lines
- The same latent channel might extend to non-text modalities where internal states are already continuous.
- Coordination among larger numbers of agents could expose new emergent patterns once language bottlenecks are removed.
- Security and alignment questions arise because latent messages are harder to audit than readable text.
Load-bearing premise
The last hidden states of an LLM contain transferable, task-useful information that other agents can interpret and act on without language as an intermediary.
What would settle it
An experiment in which agents using Interlat show no performance gain or a clear drop relative to language-based baselines on the same collaborative tasks.
Figures
read the original abstract
While natural language is the de facto communication medium for LLM-based agents, it presents a fundamental constraint. The process of downsampling rich, internal latent states into discrete tokens inherently limits the depth and nuance of information that can be transmitted, thereby hindering collaborative problem-solving. Inspired by telepathy, which bypasses symbolic language in communication, we propose Interlat (Inter-agent Latent Space Communication), a paradigm that leverages the continuous last hidden states of an LLM as a representation of its thought for direct communication (termed latent communication). An additional learned compression process further compresses latent communication via latent space reasoning. Experiments demonstrate that Interlat outperforms both fine-tuned chain-of-thought (CoT) prompting and single-agent baselines, even across heterogeneous models, promoting more exploratory behavior and enabling genuine utilization of latent information. Further compression not only substantially accelerates inference by up to 24 times but also maintains competitive performance through an efficient information-preserving mechanism. We position this work as a feasibility study of entirely latent space inter-agent communication, and our results highlight its potential, offering valuable insights for future research. Our code is available at https://github.com/XiaoDu-flying/Interlat.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Interlat, a paradigm for inter-agent communication among LLM-based agents that replaces natural language with direct transmission of (compressed) last hidden states as latent representations of thought. A learned compression network enables further latent-space reasoning; experiments are claimed to show outperformance versus fine-tuned CoT prompting and single-agent baselines, including across heterogeneous models, together with up to 24× inference speedup while preserving competitive task performance.
Significance. If the central experimental claims hold, the work constitutes a concrete feasibility demonstration that latent-space channels can support richer, faster inter-agent collaboration than token-level language. The public release of code is a clear strength that enables direct verification and extension.
major comments (2)
- [§4 and §5] §4 (Experimental Setup) and §5 (Results): the headline claim that Interlat outperforms baselines “even across heterogeneous models” is load-bearing for the feasibility argument, yet the manuscript provides no explicit description of the dimension-matching or alignment mechanism (projection, adapter, or shared space) used when hidden-state dimensionalities differ, nor an ablation that isolates performance when all agents use identical models. Without these controls it remains unclear whether observed gains arise from genuine latent transfer or from residual language leakage or compressor artifacts.
- [§5.2] §5.2 (Compression and Speedup): the reported 24× inference acceleration is presented as maintaining competitive performance via an “efficient information-preserving mechanism,” but no quantitative information-loss metric (e.g., mutual information, reconstruction error on task-relevant features, or comparison against language-token compression) is supplied to substantiate that the compressor retains task-useful content rather than simply discarding it.
minor comments (2)
- [Abstract and §3] The abstract and §3 refer to “last hidden states” without specifying which layer or token position is used; an equation or diagram would remove ambiguity.
- [Figures and Tables] Table captions and axis labels in the results figures should explicitly state the number of runs, random seeds, and statistical tests used to support the reported outperformance.
Simulated Author's Rebuttal
We thank the referee for their constructive comments on our work. We address each of the major comments below and outline the revisions we will make to improve the clarity and rigor of the manuscript.
read point-by-point responses
-
Referee: [§4 and §5] §4 (Experimental Setup) and §5 (Results): the headline claim that Interlat outperforms baselines “even across heterogeneous models” is load-bearing for the feasibility argument, yet the manuscript provides no explicit description of the dimension-matching or alignment mechanism (projection, adapter, or shared space) used when hidden-state dimensionalities differ, nor an ablation that isolates performance when all agents use identical models. Without these controls it remains unclear whether observed gains arise from genuine latent transfer or from residual language leakage or compressor artifacts.
Authors: We agree that an explicit description of the dimension alignment mechanism is necessary for reproducibility and to substantiate the cross-model claims. In the revised manuscript, we will add a detailed description in §4 of the linear projection layers used to map hidden states between models with differing dimensionalities. These projections are trained jointly with the compression network. We also acknowledge the value of an ablation study using identical models for all agents. While our current experiments focus on heterogeneous setups to demonstrate broader applicability, we will include results from same-model configurations in the revision to isolate the effects of latent transfer. Regarding potential language leakage, we note that communication occurs solely via the compressed latent states without any token generation or decoding during inter-agent exchange, which we will emphasize more clearly. revision: yes
-
Referee: [§5.2] §5.2 (Compression and Speedup): the reported 24× inference acceleration is presented as maintaining competitive performance via an “efficient information-preserving mechanism,” but no quantitative information-loss metric (e.g., mutual information, reconstruction error on task-relevant features, or comparison against language-token compression) is supplied to substantiate that the compressor retains task-useful content rather than simply discarding it.
Authors: We concur that providing quantitative measures of information preservation would better support the claims about the compressor's efficiency. Although task performance is preserved under compression, this indirect evidence may not fully address concerns about what information is retained. In the revised version, we will include additional metrics such as reconstruction error on the hidden states and a comparison of mutual information estimates between original and compressed representations. We will also add a baseline comparison against compressing language tokens to highlight the advantages of latent-space compression. revision: yes
Circularity Check
No significant circularity; claims rest on experimental comparisons
full rationale
The paper presents Interlat as a feasibility study for latent-space agent communication, with central claims supported by experiments showing outperformance over fine-tuned CoT prompting and single-agent baselines (including heterogeneous models). No equations, derivations, or self-citations appear that reduce performance metrics to fitted parameters or inputs by construction. The learned compression process and latent communication paradigm are introduced as proposals and validated empirically rather than through self-definitional steps or load-bearing self-citations. The work is therefore self-contained against external benchmarks.
Axiom & Free-Parameter Ledger
free parameters (1)
- compression network parameters
invented entities (1)
-
latent communication channel
no independent evidence
Forward citations
Cited by 9 Pith papers
-
When Latent Agents Lie: KV-Cache Integrity in Multi-Agent LLM Collaboration
KV-cache sharing boosts multi-agent QA performance but enables undetectable tampering; HMAC manifests binding agent, session, and payload reliably detect changes.
-
See What I See, Know What I Think: Dense Latent Communication Across Heterogeneous Agents
Heterogeneous agents achieve dense latent KV-cache communication via lightweight cross-model transformation and two-phase training, outperforming text at lower compute in context-aware settings and enabling context-un...
-
Good Agentic Friends Do Not Just Give Verbal Advice: They Can Update Your Weights
TFlow enables multi-agent LLMs to collaborate via transient low-rank LoRA perturbations derived from sender activations, yielding up to 8.5 accuracy gains and 83% token reduction versus text-based baselines on Qwen3-4...
-
Confidence Laundering in Agent Systems: Why Uncertainty Needs a Latent Carrier
Agent systems lose uncertainty at decision handoffs, causing downstream over-trust; the paper proposes latent uncertainty as a carrier to preserve pre-commitment fragility across interfaces.
-
HyLaT: Efficient Multi-Agent Communication via Hybrid Latent-Text Protocol
HyLaT proposes a hybrid latent-text communication protocol with two-stage training that reduces overhead while maintaining performance in multi-agent LLM systems.
-
LCGuard: Latent Communication Guard for Safe KV Sharing in Multi-Agent Systems
LCGuard applies adversarial training to transform KV cache artifacts in multi-agent LLMs, reducing reconstructable sensitive information while preserving task performance.
-
LACO: Adaptive Latent Communication for Collaborative Driving
LACO introduces Iterative Latent Deliberation, Cross-Horizon Saliency Attribution, and Structured Semantic Knowledge Distillation to enable low-latency latent communication in collaborative driving while preserving pe...
-
Representational Collapse in Multi-Agent LLM Committees: Measurement and Diversity-Aware Consensus
LLM agent committees exhibit representational collapse with mean cosine similarity of 0.888, and diversity-aware consensus reaches 87% accuracy on GSM8K versus 84% for self-consistency at lower cost.
-
A Token/KV-Cache Communication Media Selection and Resource Allocation Strategy for Multi-Agent Collaboration
A joint media selection and resource allocation algorithm (JMSRA) adaptively chooses token or KV-cache transmission and bandwidth allocation to reduce E2E latency compared to fixed baselines in wireless multi-agent systems.
Reference graph
Works this paper leans on
-
[1]
Scaling up Test-Time Compute with Latent Reasoning: A Recurrent Depth Approach
Scaling up test-time compute with latent rea- soning: A recurrent depth approach.arXiv preprint arXiv:2502.05171. Sachin Goyal, Ziwei Ji, Ankit Singh Rawat, Aditya Kr- ishna Menon, Sanjiv Kumar, and Vaishnavh Nagara- jan. 2023. Think before you speak: Training lan- guage models with pause tokens.arXiv preprint arXiv:2310.02226. Shibo Hao, Sainbayar Sukhba...
work page internal anchor Pith review Pith/arXiv arXiv 2023
-
[2]
Let’s think dot by dot: Hidden computa- tion in transformer language models.arXiv preprint arXiv:2404.15758. Chau Pham, Boyi Liu, Yingxiang Yang, Zhengyu Chen, Tianyi Liu, Jianbo Yuan, Bryan A Plummer, Zhaoran Wang, and Hongxia Yang. 2023. Let models speak ci- phers: Multiagent debate through embeddings.arXiv preprint arXiv:2310.06272. Samyam Rajbhandari,...
-
[3]
arXiv preprint arXiv:2501.14082 , year=
IEEE. Vignav Ramesh and Kenneth Li. 2025. Communicating activations between language model agents.arXiv preprint arXiv:2501.14082. Alireza Salemi, Mihir Parmar, Palash Goyal, Yiwen Song, Jinsung Yoon, Hamed Zamani, Hamid Palangi, and Tomas Pfister. 2025. Llm-based multi-agent blackboard system for information discovery in data science.arXiv preprint arXiv...
-
[4]
In inference, the model receives a complete CoT plan before generating answers
CoT (full).We use complete Chain-of-Thought (CoT) traces produced by a related instruction- tuned model (Qwen2.5-7B-Instruct, Qwen2.5-0.5B-Instruct, and LLaMA3.1-8B-Instruct) to perform full-parameter supervised fine-tuning. In inference, the model receives a complete CoT plan before generating answers. Rationale.This baseline serves as a strong upper bou...
-
[5]
Rationale.This baseline isolates the contribution of any communication signal
No-CoT.The language model is trained to produce the final answer directly, without receiving any plan from other agents. Rationale.This baseline isolates the contribution of any communication signal. It tests whether inter-agent exchange, latent or linguistic, is necessary for solving multi-step tasks. In addition, we evaluate controlledvariantsof Interla...
-
[6]
Text.Instead of latent communication, we feed the corresponding CoT plan (in language space) to the actor. 15 Rationale.This variant keeps the interaction protocol unchanged while varying only the communica- tion channel. It enables a direct comparison between language-space and latent-space communication under matched training conditions, disentangling a...
-
[7]
No-Comm.We remove any communication from the actor’s input. This variant quantifies the intrinsic benefit of communication in our framework and verifies that performance improvements do not arise solely from modifications to the underlying model parameters
-
[8]
CrossTask.We replace the current task’s latent communication with one sampled from a different task. Rationale.This variant examines whether the actor is genuinely interpreting task-specific latent content. A substantial degradation indicates reliance on meaningful information encoded in the latents, rather than superficial distributional shortcuts
-
[9]
Noised.We add perturbations to the latent communication H: (a)CovNoise-0.5 ×/1.0×: covariance- shaped noise εt ∼ N(0, ˆΣ) with optional strength λ∈ {0.5,1.0} , where ˆΣ is the sample covariance of the originalH; (b)WhiteNoise: a control drawn fromN(0, I)with the same length. Rationale.Noise-based perturbations interrogate the robustness and locality of la...
-
[10]
CovGauss.We replace the entire H withi.i.d.samples Ht ∼ N(0, ˆΣ) (0µ) and report a robustness check with N(ˆµ,ˆΣ) (µ). These preserve first-second order moments while removing higher-order structure and temporal alignment. Rationale.This variant preserves the mean and covariance of the original latent distribution while discarding all higher-order statist...
-
[11]
Rationale.This preserves the mean/covariance exactly while disrupting higher-order structure
RandomRot.We apply a structure-preserving but information-scrambling transform H ′ = ˆµ+ (H−ˆµ) ˆΣ−1/2 Q ˆΣ1/2, whereQis a Haar-random orthogonal matrix (Mezzadri, 2006). Rationale.This preserves the mean/covariance exactly while disrupting higher-order structure. Random rotation strictly preserves the first two moments of the latent distribution while sc...
work page 2006
-
[12]
Cross-Family.We evaluate Interlat under a cross-model-family setting, where the sender and actor belong to different pretrained model families. Specifically, latent communications are generated by a sender model from one family (In this work, we use Qwen2.5-7B-Instruct) and consumed by an actor model from another family (LLaMA3.1-8B-Base), without sharing...
work page 2020
-
[13]
clean obj with recep
-
[14]
cool obj with recep where obj and recep correspond to objects and receptacles. After your each turn, the environment will give you immediate feedback based on which you plan your next few steps. if the envrionment output "Nothing happened", that means the previous action is invalid and you should try more options. Your response should use the following fo...
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.