REVIEW 3 major objections 5 minor 4 cited by
Distributed Mixture-of-Agents for Edge Inference with Large Language Models
T0 review · 3 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read A simple rate inequality keeps device queues bounded in distributed Mixture-of-Agents inference.
desk verdict A plausible rate-balance stability condition for distributed MoA, but the proof is too quick and the experiments are only suggestive. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the per-device input-throughput identity $\mathrm{R}_{\mathrm{in}} = ((k+1)M+1)\lambda$, built from the uniform random neighbor selection: any given device receives its own traffic at rate $\lambda$ plus each other user's traffic with probability $k/(n-1)$, so one layer contributes $(k+1)\lambda$, and the total scales by $M$ layers plus one aggregation step. The argument then applies the single-server queue stability rule that a FCFS queue is stable when the mean arrival rate is below the mean service rate, $\mathrm{R}_{\mathrm{in}} < 1/\alpha$.
What would settle it
Run the distributed MoA with Poisson prompt arrivals and exponential inference times at rates satisfying $\alpha((k+1)M+1)\lambda < 1$, and track the longest queue over a long horizon; if any queue grows without bound instead of reaching a stationary distribution, the condition is not sufficient.
Extended reading notes
Core claim
The authors claim that in a symmetric network of $n$ edge devices, each running its own LLM, the aggregate arrival rate into any one device queue is $((k+1)M+1)\lambda$: the device's own prompts arrive at rate $\lambda$, each of the other $n-1$ users forwards its prompts to this device with probability $k/(n-1)$ per layer, and the process repeats over $M$ layers plus one final aggregation pass. Because an LLM with mean inference time $\alpha$ completes work at rate $1/\alpha$, a standard first-come-first-served queue remains stable whenever $((k+1)M+1)\lambda < 1/\alpha$, equivalently $\alpha((k+1)M+1)\lambda < 1$. For heterogeneous devices the condition is governed by the slowest LLM, i.e., by the largest mean inference time $\alpha_{\max}$. Experiments on a four-device testbed confirm the qualitative relationship between the configuration parameters and average queue size, and show that diverse LLMs in the MoA improve response quality.
Load-bearing premise
The proof assumes the combined stream of local and gossiped prompts at each device behaves like a stationary random process with a well-defined mean rate, so the classic rule 'mean arrival rate below mean service rate keeps a queue stable' applies.
Editorial extensions
If this is right
- For any edge deployment, the inequality $\alpha((k+1)M+1)\lambda < 1$ gives a direct design rule for choosing the number of layers $M$ and proposers $k$ before queues grow without bound.
- When devices run different LLMs, stability is limited by the slowest model, so the fastest devices do not help if one device's mean inference time is too large.
- Raising $M$ or $k$ improves response accuracy but increases average queue size and latency, so accuracy targets must be balanced against memory and delay budgets.
- The decentralized gossip design removes the central server as a single point of failure, at the cost of each device carrying extra traffic from neighbors.
- Using diverse open-source LLMs rather than one repeated model yields higher AlpacaEval accuracy for the same layer and proposer counts.
Reading between the lines
- The queueing analysis assumes arrivals at each queue behave like a stationary renewal process with the stated mean rate; if real prompt traffic is bursty or heavy-tailed, the mean-rate inequality alone may not prevent long queue excursions, and a buffer-sizing rule based on the queue tail would be needed.
- Because layer $j$ prompts are generated only after layer $j-1$ responses return, the arrivals across layers are not independent; a refined model with feedback could tighten or weaken the stability threshold in regimes where aggregation stalls.
- The experimental accuracy comparison uses only ten AlpacaEval samples, so the ranking of MoA configurations should be treated as suggestive; repeating on the full benchmark could change which $(M,k)$ pair is preferred.
- The same rate-counting argument could be applied to other multi-hop collaborative inference schemes, such as sparse agent selection with early stopping, yielding analogous stability conditions for those protocols.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a distributed mixture-of-agents (MoA) architecture for edge inference, where each user's device runs its own LLM and devices collaborate by gossiping prompts and responses. The authors model each device's workload as a queue and derive Theorem 1, which states that the device queues remain stable under the condition α((k+1)M+1)λ < 1, where λ is the per-user prompt arrival rate, k is the number of proposers per layer, M is the number of layers, and α is the average LLM inference time. The proof is based on counting the total arrival rate at a device queue and applying a standard single-queue stability condition. The paper also reports experiments on a 10-sample subset of AlpacaEval 2.0 using open-source LLMs, comparing accuracy, latency, and average queue size across different MoA configurations with homogeneous and heterogeneous LLMs.
Significance. If Theorem 1 were rigorously established under explicit and reasonable stochastic assumptions, the result would provide a simple design rule for bounding queue sizes in distributed MoA systems, which is relevant to memory-constrained edge inference. The problem formulation is timely given the growing interest in decentralized LLM collaboration. The paper includes an implementation and releases code, which is a strength. However, as written, the central theoretical claim is not proven: the proof applies a per-queue rate condition to a network with endogenous, multiclass, and synchronized arrivals, without specifying the distributional assumptions needed for that condition to imply stability. The experimental validation is also too limited (10 samples, no error bars) to support the quantitative comparisons. The core idea is salvageable, but the manuscript requires substantial revision to meet the standard of a refereed journal.
major comments (3)
- [III (Theorem 1 proof)] The proof of Theorem 1 reduces each device queue to an isolated FCFS queue fed by an exogenous arrival stream and applies the rate condition R_in < R_out. This step is not justified because the arrival process at a device is endogenous and multiclass: it comprises the user's own initial prompts, prompts forwarded from other devices after being generated by those users, and concatenation and aggregation jobs that are released only after synchronization with k neighbors' responses. Under such feedback and synchronization, per-queue traffic intensity less than one is not generally sufficient for stability. The authors need to state explicit stochastic assumptions (e.g., Poisson arrivals, independent and identically distributed service times, and a precise description of the neighbor-selection and layering process) and provide a network-level stability proof, for instance via a Foster-Lyapunov criterion or fluid limit, before Eq. (1) can be accepted.
- [III, Eq. (1)] The derivation of Eq. (1) uses a single mean inference time α for all tasks. However, the jobs processed by a device queue are heterogeneous: initial prompts, prompts generated from concatenated responses (original prompt plus up to k responses plus the system prompt), and final aggregation prompts have systematically different lengths and hence different mean service times. For a multiclass FCFS queue the correct utilization is Σ_c λ_c E[S_c], not α × (total arrival rate). Unless α is redefined as the class-weighted average service time and the class rates are computed accordingly, the inequality in Eq. (1) does not follow from the argument presented.
- [IV, Tables I and II] The accuracy results are based on only 10 samples from AlpacaEval 2.0, with no error bars, confidence intervals, or statistical tests. Consequently, claims such as 'The highest accuracy and latency are observed with a configuration of M = 2 layers and k = 4 proposers' are not supported by the data: Table I contains no k = 4 row, and the observed differences between configurations (e.g., 39.63% vs. 39.89% for M = 1, k = 2 and M = 2, k = 2) are within the noise one would expect from a 10-sample evaluation. The experimental section should either be substantially expanded or explicitly framed as a demonstration of the system's operation rather than a quantitative comparison.
minor comments (5)
- [Abstract and Section I] The benchmark name 'Flusk 2.0' should be corrected to the intended name (e.g., FLASK) for consistency with the literature.
- [Section II] The neighbor selection 'uniformly at random, k out of other n−1 neighboring devices' is not precise about whether selection is with replacement and whether it is independent across layers; these details affect the arrival-rate calculation in Eq. (2).
- [Algorithm 1] The variable j is used both as the layer index in the outer loop and as an index in the prompt-arrival procedure, which makes the pseudocode confusing. In addition, line 13 ('j ← j + 1') appears to increment the layer inside the per-user procedure, which would be a bug if taken literally.
- [Section IV] The phrase 'M = 2layers' should be 'M = 2 layers', and the sentence referencing k = 4 proposers should be aligned with the configurations actually listed in the tables.
- [Footnote 1] The limitation to 10 samples is stated only in a footnote; the abstract and conclusion should also qualify the experimental claims accordingly.
Circularity Check
No significant circularity: Theorem 1 is a rate-balance condition derived from the model definitions and a standard queueing criterion.
full rationale
The central claim, Theorem 1, is derived in Section III by computing each device queue's aggregate arrival rate R_in from the model parameters (lambda, k, M, n) and then applying the standard FCFS stability condition R_in < R_out with R_out = 1/alpha. Equation (1) is therefore not assumed, fitted, or renamed from data; it is the direct result of those definitions and an external queueing fact. The only work by the present authors cited (reference [18]) is background on age of gossip and is not load-bearing for the stability theorem. No parameter is fitted to a subset of data and then called a prediction, no uniqueness theorem from the authors is invoked, and no prior ansatz is smuggled in via citation. Even if one questions whether the single-queue rate condition is sufficient for a multiclass, synchronized feedback network, that would be a correctness or proof-rigor concern, not circularity. The experimental accuracy/latency comparisons are empirical demonstrations and do not feed back into the stability derivation, so the derivation chain is self-contained.
Assumptions & free parameters
assumptions (4)
- standard math A single FCFS queue with arrival rate R and average service time α is stable when R < 1/α.
- domain assumption Prompts arrive at each user as a stationary process with mean rate λ, and LLM inference times have mean α.
- domain assumption Each user forwards each prompt to exactly k uniformly random other users, independently across users and layers.
- domain assumption The MoA protocol generates M proposer layers plus one final aggregation, so each original prompt contributes (k+1)M+1 services in expectation.
Cite this review
Pith. "Pith review of Distributed Mixture-of-Agents for Edge Inference with Large Language Models." pith.science (2026). https://pith.science/paper/BLAVNDB5
@misc{pith2026241221200,
author = {Pith},
title = {Pith review of: Distributed Mixture-of-Agents for Edge Inference with Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/BLAVNDB5}},
note = {Machine review of arXiv:2412.21200}
}
read the original abstract
Mixture-of-Agents (MoA) has recently been proposed as a method to enhance performance of large language models (LLMs), enabling multiple individual LLMs to work together for collaborative inference. This collaborative approach results in improved responses to user prompts compared to relying on a single LLM. In this paper, we consider such an MoA architecture in a distributed setting, where LLMs operate on individual edge devices, each uniquely associated with a user and equipped with its own distributed computing power. These devices exchange information using decentralized gossip algorithms, allowing different device nodes to talk without the supervision of a centralized server. In the considered setup, different users have their own LLM models to address user prompts. Additionally, the devices gossip either their own user-specific prompts or augmented prompts to generate more refined answers to certain queries. User prompts are temporarily stored in the device queues when their corresponding LLMs are busy. Given the memory limitations of edge devices, it is crucial to ensure that the average queue sizes in the system remain bounded. In this paper, we address this by theoretically calculating the queuing stability conditions for the device queues under reasonable assumptions, which we validate experimentally as well. Further, we demonstrate through experiments, leveraging open-source LLMs for the implementation of distributed MoA, that certain MoA configurations produce higher-quality responses compared to others, as evaluated on AlpacaEval 2.0 benchmark. The implementation is available at: https://github.com/purbeshmitra/distributed_moa.
Figures
Figures from the paper (1 more)
Forward citations
Cited by 4 Pith papers
-
Chained Recursive Language Models for Multi-Iteration Reasoning
Chained fresh-root model calls with plain-text artifacts improve reported long-context reasoning accuracy over a single-call baseline, but the evidence lacks error bars and compute-matched comparison.
-
Balancing Information Accuracy and Response Timeliness in Networked LLMs
For binary questions, combining m specialized LLMs with a Bayesian majority rule improves accuracy, and the paper derives the optimal m that trades accuracy against system delay.
-
MOTIF: Modular Thinking via Reinforcement Fine-tuning in LLMs
A multi-round modular thinking RL fine-tuning method improves a 3B model's pass@1 on MATH500 and AIME2024 over vanilla GRPO in one run, with sample-efficiency claims based on 15% of training questions.
-
Toward Edge General Intelligence with Multiple-Large Language Model (Multi-LLM): Architecture, Trust, and Orchestration
A survey of multi-LLM systems in edge computing, covering architectures, enabling technologies, trust mechanisms, applications, and open datasets for edge general intelligence.
Reference graph
Works this paper leans on
- [1]
-
[2]
J. Wei, Y . Tay, R. Bommasani, C. Raffel, B. Zoph, S. Borgeaud, D. Yogatama, M. Bosma, D. Zhou, D. Metzler, et al. Emergent abilities of large language models. Trans. on Machine Learning Research, August 2022
work page 2022
-
[3]
W. X. Zhao, K. Zhou, J. Li, T. Tang, X. Wang, Y . Hou, Y . Min, B. Zhang, J. Zhang, Z. Dong, et al. A survey of large language models. 2023. Available at arXiv:2303.18223
arXiv 2023
-
[4]
Q. Dong, L. Li, D. Dai, C. Zheng, J. Ma, R. Li, H. Xia, J. Xu, Z. Wu, B. Chang, X. Sun, L. Li, and Z. Sui. A survey on in-context learning. In ACL EMNLP, November 2024
work page 2024
- [5]
-
[6]
J. Wang, J. Wang, B. Athiwaratkun, C. Zhang, and J. Zou. Mixture-of- agents enhances large language model capabilities. 2024. Available at: arXiv:2406.04692
arXiv 2024
-
[7]
D. Li, Z. Tan, P. Qian, Y . Li, K. S. Chaudhary, L. Hu, and J. Shen. SMoA: Improving multi-agent large language models with sparse mixture-of-agents. 2024. Available at arXiv:2411.03284
arXiv 2024
-
[8]
X. Luo, H. Chen, and Q. Guo. Semantic communications: Overview, open issues, and future research directions. IEEE Wireless Communica- tions, 29(1):210–219, January 2022
work page 2022
Show all 18 references
-
[9]
Z. Qin, X. Tao, J. Lu, W. Tong, and G. Y . Li. Semantic communications: Principles and challenges. 2021. Available at arXiv:2201.01389
2021 arXiv
-
[10]
A. Kalita. Large language models (LLMs) for semantic communication in edge-based iot networks. 2024. Available at arXiv:2407.20970
2024 arXiv
-
[11]
H. Lee, B. Lee, H. Yang, J. Kim, S. Kim, W. Shin, B. Shim, and H. V . Poor. Towards 6G hyper-connectivity: Vision, challenges, and key enabling technologies. Journal of Communications and Networks , 25(3):344–354, June 2023
2023
-
[12]
W. Yang, H. Du, Z. Q. Liew, W. Y . B. Lim, Z. Xiong, D. Niyato, X. Chi, X. Shen, and C. Miao. Semantic communications for future internet: Fundamentals, applications, and challenges. IEEE Communications Surveys & Tutorials, 25(1):213–250, November 2022
2022
-
[13]
K. Wang, Y . Lu, M. Santacroce, Y . Gong, C. Zhang, and Y . Shen. Adapting LLM agents through communication. 2023. Available at arXiv:2310.01444
2023 arXiv
-
[14]
Y . Li, H. Wen, W. Wang, X. Li, Y . Yuan, G. Liu, J. Liu, W. Xu, X. Wang, Y . Sun, et al. Personal LLM agents: Insights and survey about the capability, efficiency and security. 2024. Available at arXiv:2401.05459
2024 arXiv
-
[15]
A. J. Demers, D. H. Greene, C. H. Hauser, W. Irish, J. Larson, S. Shenker, H. E. Sturgis, D. C. Swinehart, and D. B. Terry. Epidemic algorithms for replicated database maintenance. In Epidemic algorithms for replicated database maintenance , August 1987
1987
-
[16]
D. Shah. Gossip algorithms. Foundations and Trends in Networking , 3(1):1–125, 2008
2008
-
[17]
R. D. Yates. The age of gossip in networks. In IEEE ISIT, July 2021
2021
-
[18]
Kaswan, P
P. Kaswan, P. Mitra, A. Srivastava, and S. Ulukus. Age of information in gossip networks: A friendly introduction and literature survey, 2023. Available at arXiv:2312.16163
2023 arXiv
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.