Research
Thought Communication in Multiagent Collaboration
Overview Research area: Multi-agent LLM systems, latent-variable representation learning, and identifiability theory (machine learning / cs.LG). Technical level: Advanced — the paper couples a formal
- arXiv
- 2510.20733
- Published
- 2025-10-23
- Authors
- Yujia Zheng, Zhuokai Zhao, Zijian Li, Yaqi Xie, Mingze Gao, Lizhu Zhang, Kun Zhang
AI summary
Overview
Research area: Multi-agent LLM systems, latent-variable representation learning, and identifiability theory (machine learning / cs.LG).
Technical level: Advanced — the paper couples a formal nonparametric identifiability theory (Jacobians, support subspaces, permutation indeterminacy) with a concrete LLM engineering pipeline, though the prose walks through an intuitive running example.
Scope: This paper proposes "thought communication" — a paradigm in which LLM agents exchange latent thoughts directly instead of natural-language tokens — and backs it with identifiability theorems plus a practical framework, ThoughtComm, evaluated on synthetic data and on MATH/GSM8K with five LLMs.
What This Paper Is About
Today's LLM-based multi-agent systems communicate only through natural language (tokens or their embeddings), which the authors describe as lossy, ambiguous, sequential, and indirect. The paper asks what communication would look like if agents could instead share the underlying latent thoughts that drive their reasoning, and whether those thoughts can be provably recovered from the agents' hidden states. The authors formalize agent states as being generated by an unknown function of latent thoughts, prove that shared thoughts, private thoughts, and the agent–thought structure can be identified, and then build a system that routes recovered thoughts to the agents that need them.
Key Contributions
-
A latent generative model for inter-agent communication. The paper assumes the model states of all agents before communication round $t$, $H_t$, are generated from latent thoughts $Z_t$ through an unknown function, $H_t = f(Z_t)$, where $f$ is assumed invertible and twice differentiable. Thought sharing is formalized through the non-zero pattern of the Jacobian, $B(J_f) \in {0,1}^{n_h \times n_z}$.
-
Three identifiability theorems in a nonparametric setting with no auxiliary information. Theorem 1 shows shared thoughts between any pair of agents can be disentangled from all other latent variables (up to a permutation); Theorem 2 does the same for private thoughts; Theorem 3 shows the thought–agent structure itself is identifiable, i.e., $B(J_{\hat{f}}) = B(J_f)P$ for a permutation matrix $P$. The authors state this is the first work to consider the latent generative process underlying LLM agent responses and provide identifiability guarantees for recovering latent thoughts, and that the theorems are also a new contribution to classical identifiability theory (which typically needs weak supervision, specific function classes, or structural criteria on the dependency graph).
-
ThoughtComm, a practical framework. A sparsity-regularized autoencoder extracts latent thoughts from concatenated agent states, an agreement-based reweighting scheme decides which thoughts each agent receives, and prefix adaptation injects them back into generation. The paper notes the autoencoder and adapter are largely task-agnostic and can be pretrained once and reused.
-
Synthetic and real-world validation. Synthetic experiments test recovery of shared versus private latents; real-world experiments compare against Multiagent Finetuning and single-answer baselines on MATH and GSM8K across five LLMs from 0.6B to 8B parameters.
Main Findings
-
Shared and private thoughts are recoverable in the basic synthetic setup. With two observed variables ($X_A$, $X_B$) and three latents ($Z_A \setminus Z_B$, $Z_B \setminus Z_A$, $Z_A \cap Z_B$), generated by a random invertible transformation from multivariate Laplacian variables, the sparsity-regularized autoencoder clearly identifies the shared region and both private regions by $R^2$ score, while a baseline without sparsity regularization fails to disentangle them.
-
Global structure is recoverable across many settings. Using the mean correlation coefficient (MCC) across 8 settings with dimensionality ranging from 124 to 1024 and equal numbers of latent and observed variables, the model consistently recovers most latent variables, exceeding the threshold (marked by a red line) typically considered identifiable.
-
ThoughtComm outperforms baselines on MATH and GSM8K. With three agents and two rounds of debate, on Qwen 3-1.7B, ThoughtComm reaches 93.00 ± 1.14% accuracy on MATH versus 75.80 ± 1.92 for Multiagent Finetuning and 43.60 ± 2.22 for single answer — a 17.2% absolute gain over Multiagent Finetuning and a 113.3% relative improvement over single answer. On GSM8K with the same model, it reaches 85.00 ± 1.60 versus 84.20 ± 1.63 (Multiagent Finetuning) and 67.40 ± 2.10 (single answer).
-
Reported averages across the benchmark suite. The paper states ThoughtComm achieves 67.23% relative improvement over single answer and 19.06% over the current state-of-the-art on average. Gains are reported across models from 0.6B to 8B parameters (Qwen 3-0.6B, Qwen 3-1.7B, Phi-4-mini-instruct at 3.84B, LLaMA 3-8B-Instruct, DeepSeek-R1-Distill-Llama-8B).
-
Consensus generally improves. The paper reports a consensus score (proportion of final-round instances where all agents unanimously agree) and states ThoughtComm outperforms all baselines by a clear margin. In the reported table, one entry runs the other way: on MATH with DeepSeek-R1-Distill-Llama-8B, ThoughtComm shows 80.72 consensus versus 82.87 for Multiagent Finetuning, while its accuracy there is higher (82.80 ± 1.69 versus 72.40 ± 2.00).
-
More debate rounds help ThoughtComm but hurt the baseline. Varying debate rounds from 2 to 6 with two agents on MATH using LLaMA-3-8B-Instruct, Multiagent Finetuning drops in accuracy while consensus slightly increases and maintains; ThoughtComm gains in both accuracy and consensus simultaneously.
-
Prefix length is not a sensitive hyperparameter. Sweeping prefix length $m \in {1, 4, 8, 16}$ across four models (LLaMA-3-8B-Instruct, Phi-4-mini-instruct, Qwen-3 0.6B, Qwen-3 1.7B) on MATH, accuracy and consensus stay stable with fluctuations under five percent even as $m$ increases sixteen-fold.
-
Training overhead is model-agnostic at the embedding level. Unlike Multiagent Finetuning, which requires finetuning the entire LLM, ThoughtComm trains only a lightweight autoencoder and adapter whose cost depends on the LLM's embedding dimension rather than parameter count. The paper notes Llama-3-70B and 405B share a 16,384 embedding dimension, so ThoughtComm's overhead would be unchanged from 70B to 405B.
Methodology in Plain English
The authors start by asking what a "thought" would even be, then write down a simple assumption: each agent's internal state is produced by an unknown mixing function applied to a set of latent thoughts, some of which are shared with other agents and some of which are private. Because the mixing function is unknown, recovering thoughts is hard — any recovered factor could be a blend of several true ones. The theory shows that adding a sparsity penalty on the Jacobian is enough to break that blending: shared thoughts come out unmixed from everything else, private thoughts come out unmixed, and the binary pattern of which thoughts influence which agents is recovered up to relabeling.
The engineering mirrors the theory. At each communication round, each agent's model state (the representation of its last generated token) is concatenated with the others' into one vector. A sparsity-regularized autoencoder compresses this into a latent thought space, trained with a reconstruction loss plus an $\ell_1$ penalty on the Jacobian. The recovered dependency structure then acts as a routing mask: each agent only gets the latent dimensions that touch its own state. Thoughts are grouped by "agreement" — how many agents depend on that dimension — and each group gets its own weight. Finally, a learned adapter turns each agent's personalized thought vector into a prefix that is prepended to its token embeddings in the next generation step, following the prefix-tuning approach of Li and Liang (2021). The adapter is trained with a loss combining a semantic-similarity term against a reference generation and a standard fluency term, so the injected prefix stays linguistically natural. Because the autoencoder only reconstructs states and the adapter only needs to keep output sane, both are largely task-agnostic and can be reused across tasks.
Why This Matters
Impact on research. The paper reframes inter-agent communication as an identifiability problem rather than a prompt-engineering problem, and it claims a new kind of identifiability result that works from only basic assumptions — no auxiliary signals, no restricted function classes, no structural criteria on the dependency graph. The authors argue that prior global-recovery methods offer no guarantees when their assumptions are partly violated, whereas their pairwise, coarser perspective still gives meaningful guarantees. It also extends an idea that generalizes past LLMs: most observational data arise from hidden generative processes, so the framing could apply to non-language modalities.
Potential real-world applications (the paper motivates the paradigm generally; specific deployments are not evaluated):
- Multi-agent problem solving where several models debate a math or reasoning question and need to converge efficiently.
- Decision-support systems where specialized agents hold complementary or conflicting expertise and need to know where they agree and where they differ.
- Any multi-agent pipeline where full fine-tuning of each model is too expensive, since only a small autoencoder and adapter are trained.
- Systems with heterogeneous model sizes, since overhead depends on embedding dimension rather than parameter count.
Industry relevance. The cost argument is central: full LLM finetuning across many agents scales badly, whereas ThoughtComm's trainable components scale with the embedding dimension. The paper notes that going from a 70B to a 405B Llama would not change ThoughtComm's overhead at all. The modular design also means the communication module can be pretrained once and dropped into existing multi-agent generation systems with minimal overhead.
Future Directions
- Extending beyond LLMs to other modalities. The paper explicitly argues the paradigm naturally extends beyond language models, because most observational data arise from hidden generative processes — this is stated as motivation but not demonstrated experimentally in the available text.
- Scaling to larger agent collectives. The theory is developed pairwise and then composed across pairs; the authors describe reconstructing a full thought–agent incidence structure revealing clusters of agreement and regions of conflict, but the largest system reported in the experiments is three debating agents.
- Broadening empirical coverage. The paper notes it aims to validate the potential of the paradigm rather than exhaustively compare multi-agent collaboration workflows, leaving comparison against other collaboration strategies to future work.
- Reconciling the consensus claim with the numbers. The stated consensus advantage is not uniform in the reported table, which raises the question of when latent communication helps alignment and when it does not.
(Note: the supplied paper text is truncated mid-sentence in Section 5.4, so any later sections on limitations, broader impact, or conclusion are not covered here.)
Target Audience
Machine learning researchers working on multi-agent LLM systems, representation learning, and causal/identifiability theory will find the core contribution most relevant, since the paper sits at the intersection of those areas. Practitioners building multi-agent pipelines who care about training cost and cross-agent alignment for agentic systems will benefit from the ThoughtComm design and the efficiency argument. Readers with a theory background will want Sections 2 and 3; readers focused on deployment will find Sections 4 and 5 more useful.
Authors’ abstract
Natural language has long enabled human cooperation, but its lossy, ambiguous, and indirect nature limits the potential of collective intelligence. While machines are not subject to these constraints, most LLM-based multi-agent systems still rely solely on natural language, exchanging tokens or their embeddings. To go beyond language, we introduce a new paradigm, thought communication, which enables agents to interact directly mind-to-mind, akin to telepathy. To uncover these latent thoughts in a principled way, we formalize the process as a general latent variable model, where agent states are generated by an unknown function of underlying thoughts. We prove that, in a nonparametric setting without auxiliary information, both shared and private latent thoughts between any pair of agents can be identified. Moreover, the global structure of thought sharing, including which agents share which thoughts and how these relationships are structured, can also be recovered with theoretical guarantees. Guided by the established theory, we develop a framework that extracts latent thoughts from all agents prior to communication and assigns each agent the relevant thoughts, along with their sharing patterns. This paradigm naturally extends beyond LLMs to all modalities, as most observational data arise from hidden generative processes. Experiments on both synthetic and real-world benchmarks validate the theory and demonstrate the collaborative advantages of thought communication. We hope this work illuminates the potential of leveraging the hidden world, as many challenges remain unsolvable through surface-level observation alone, regardless of compute or data scale.