Key Takeaway
Reward-guided graph training steers an AI-agent designer to prefer smaller communication networks, cutting token usage by about 20.5% on average while keeping task accuracy unchanged.
ON THIS PAGE
Key Findings
A reward-driven training loop encourages an autoregressive graph generator to produce compact multi-agent communication structures that still solve tasks. Across six benchmarks, the method reduced the number of tokens the agents generate by an average of 20.5% compared to a likelihood-trained baseline, with statistically significant savings on five of six datasets. Accuracy was preserved — no statistically significant drop — and the only dataset without savings used very templated questions that already require tiny networks. Planning Pattern
Data Highlights
120.5% average reduction in token usage versus the previous autoregressive designer.
2Token reduction was statistically significant on 5 out of 6 benchmarks (MultiArith was the lone exception).
3Reward composition and inference details: task completion weight 0.60, agent-count weight 0.30, edge-count weight 0.10; Best-of-5 candidate sampling used at inference.
What This Means
Engineers building systems where multiple AI agents collaborate and cost matters — for example, teams assembling planner/critic/coder agents — will get concrete token and cost savings without sacrificing correctness. ML leaders and infrastructure owners can use the approach to reduce inference billable work and make multi-agent pipelines more query-adaptive. Researchers working on agent orchestration can reuse the reward-model idea to steer graph generators toward practical trade-offs between cost and accuracy. Human-in-the-Loop Pattern
Not sure where to start?Get personalized recommendations
Key Figures

Fig 1: Figure 1: Overview of our reward-guided pipeline for MAS topology generation.
Ready to evaluate your AI agents?
Learn how ReputAgent helps teams build trustworthy AI through systematic evaluation.
Learn MoreYes, But...
Results were measured using a single open-source base model (Qwen3-4B); outcomes may shift with different language models. Building the reward training set requires executing many candidate graphs on the chosen base model, so switching base models forces dataset reconstruction. The automated reward prioritizes correctness and compactness but may not capture other qualitative factors (like answer style or external constraints) unless incorporated into the reward function. Foundation Model
Full Analysis
The approach trains an autoregressive graph generator that builds a multi-agent communication graph one node and edge at a time, but instead of just imitating observed graphs, it learns to prefer smaller graphs that still solve the task. To do that, candidate graphs are sampled and executed on a base language model; each graph is scored by a compact, rule-based reward that combines task completion (dominant), agent count, and edge count. A reward model is trained from preference pairs and then used to fine-tune the generator with policy optimization so the designer prefers high-reward (correct and compact) graphs. In experiments across six standard benchmarks, the reward-guided designer cut token consumption by 20.5% on average compared with a likelihood-trained baseline, with statistically significant reductions on five benchmarks. Accuracy was maintained with no significant drops. Practical choices that matter: the reward mixes 60% correctness, 30% agent-count, and 10% edge-count, and at inference the system samples five candidate graphs and picks the best-scoring one. The method also lets a single reward model generalize across datasets, avoiding per-dataset retraining of the scorer — though the labeled training set itself depends on which base language model is used to execute graphs. Emergence-Aware Monitoring Pattern Supervisor Pattern
Explore evaluation patternsSee how to apply these findings
Credibility Assessment:
ArXiv preprint with low author h-indexes (1 and 3) and no listed reputable affiliations—fits emerging/limited-info category.