Skip to content
AI.info

Research

Augmented Runtime Collaboration for Self-Organizing Multi-Agent Systems: A Hybrid Bi-Criteria Routing Approach

Overview Research area: Multi-agent systems (MAS) built on large language models, specifically decentralized "next-hop" task routing in self-organizing agent networks. Technical level: Intermediate. T

arXiv
2512.00740
Published
2025-11-30
Authors
Qingwen Yang, Feiyu Qu, Tiezheng Guo, Yanyi Liu, Yingyou Wen

AI summary

Overview

Research area: Multi-agent systems (MAS) built on large language models, specifically decentralized "next-hop" task routing in self-organizing agent networks.

Technical level: Intermediate. The conceptual framing (routing a task between agents) is accessible, but the paper includes formal notation, a bi-branch neural scoring model, and training-data construction details.

Scope: The paper proposes BiRouter, a learned dual-criteria routing method that lets each agent in a decentralized network choose the next agent using only local information, evaluated against 12 baselines on six benchmarks.

What This Paper Is About

Most LLM-based multi-agent systems rely on static topologies or a centralized planner with a global view of all agents, which limits scalability and adaptability in open, decentralized settings. The authors ask how an individual agent, seeing only its own history, its own description, and the descriptions of its immediate candidates, can make a "next hop" decision that contributes to a globally effective solution. Their answer is BiRouter, a routing method that balances an agent's long-term relevance to the task against its short-term contextual fit, augmented by a dynamically updated reputation score.

Key Contributions

  1. BiRouter, a bi-criteria routing method for dynamic, decentralized task planning that balances long-term task relevance (ImpScore) with short-term state-awareness (GapScore) at runtime.
  2. A large-scale, cross-domain dataset (MARS) for training multi-agent collaboration models, comprising thousands of annotated task-routing paths generated across 115 curated domains.
  3. A dynamically updated reputation mechanism that acts as a multiplicative gate on routing scores, improving robustness in untrustworthy environments.
  4. Extensive experimental validation across centralized and decentralized settings, showing improved collaboration efficiency and robustness over established baselines.

Main Findings

  • Highest average accuracy in centralized settings: BiRouter reaches an average accuracy of 91.73 across the benchmarks in Table 1, which the authors report as gains of 5.86% to 7.06% over single-agent methods, 4.65% to 7.58% over static coordination methods, and 4.52% to 5.23% over dynamic coordination methods. It achieves optimal results on 4 out of 6 benchmarks.
  • Per-benchmark results: MMLU 86.80 (+8.99), GSM8K 94.09 (+6.64), SVAMP 93.20 (+4.04), HumanEval 91.46 (+4.38), MultiArith 100.00 (+3.15), and MBPP 84.82 (+12.99).
  • Token-economical: BiRouter surpasses all other baselines in performance with the lowest token expenditure on SVAMP and GSM8K. On HumanEval it delivers a 3.96% performance boost over G-Designer while maintaining a comparable token count.
  • Best resilience in decentralized SO-MAS: In a simulated setting where each agent can communicate only with three randomly selected agents, BiRouter scores 91.99 on GSM8K and 89.63 on HumanEval, exceeding DyLAN (87.95 and 68.29) and MaAS (86.43 and 79.27) while using fewer tokens (2.8×10⁶ vs. 6.3×10⁶ and 3.8×10⁶ on GSM8K; 4.6×10⁵ vs. 6.2×10⁵ and 4.9×10⁵ on HumanEval).
  • Robust to unreliable agents: When equal numbers of deliberately unreliable agents are injected, BiRouter rapidly down-weights them via credit scores and remains the highest-performing method under attack (92.37 on GSM8K and 90.55 on HumanEval versus 84.79/82.93 for the variant without credit scores).
  • All three components matter (ablation): Removing the reputation mechanism hurts most under attack; removing successor-aware messaging lowers collaborative efficiency; removing the Finisher agent increases token overhead by approximately 69% on GSM8K and 50% on HumanEval.
  • Adaptive chain length: Case studies show BiRouter forms chains of only one or two hops for simple problems and recruits additional agents such as QuestionAnalyst and CodeAuditor for complex ones.

Methodology in Plain English

The authors model a multi-agent system as a decentralized network of agents, each knowing only its own description and the descriptions of its known successor candidates. When a task arrives, each agent partially handles it and forwards it onward using its built-in BiRouter module.

BiRouter is inspired by A* search. It has two output scores that mirror A*'s two terms: an ImpScore (analogous to the heuristic cost, capturing how important a candidate agent is to the overall goal) and a GapScore (analogous to the path cost, capturing how well a candidate fits as the next step given the current context). Both branches use a shared frozen encoder (qwen3-embedding-0.6b) followed by separate Cross-Attention and MLP layers, producing score vectors for the candidate set. These are combined in a weighted sum controlled by a hyperparameter α, then multiplied element-wise by each candidate's dynamic credit (reputation) score, and passed through a softmax to produce a probability distribution over successors. The authors set α = 0.3 after tuning on 100–200 randomly sampled GSM8K and MBPP queries.

Two design details stand out. First, the handoff message is generated after the successor is chosen, so the current agent can tailor its message to the specific capabilities of the next agent ("successor-aware messaging"). Second, a special Finisher agent can be selected at any step to end the task adaptively rather than at a fixed length.

To train the scoring functions, the authors built MARS. They prompted an LLM to produce domain keywords, manually curated them into 115 domains, generated queries within and across those domains, and used an RBF-kernel density estimate to find and fill sparse regions of the query embedding space. For each query, an LLM generated multiple candidate execution paths and ranked agents by criticality; ranks were averaged across iterations. ImpScores come from a scaled Sigmoid over rank (with bounds l = 0.3, u = 1, β = 2) times a penalty factor γ for agents appearing in long, token-heavy paths. GapScores come from position in the path, computed as 1/(i − k + 1) for agents at or after the current step and 0 otherwise. A Finisher agent was appended to each path.

All agents were powered by gpt-4o-mini, agent profiles were generated with gpt-4.1, temperature was set to 0 for single-agent methods and 1 for multi-agent methods, and each experiment was run twice with the average reported.

Why This Matters

Research impact: The paper targets a recognized gap between agent-interoperability protocols (such as A2A and ANP), which solve discovery and connectivity, and the task-oriented collaboration strategies needed to make those networks useful. It reframes collaboration planning as a local, learned pathfinding problem rather than a global pre-computation, which is a meaningful shift for decentralized MAS research.

Real-world applications:

  • Open agent marketplaces where independently operated agents from different vendors must be composed into a working pipeline without a central orchestrator.
  • Enterprise workflows that route a request across specialized internal services or departments, where no single component has a full picture of the organization.
  • Fault-tolerant and adversarial settings, such as networks that include compromised, unreliable, or low-quality agents that need to be detected and down-weighted over time.
  • Cost-sensitive deployments where token budget matters, since BiRouter's Finisher mechanism and routing policy aim to shorten chains and cut unnecessary calls.

Industry relevance: The emphasis on local-only decisions, token efficiency, and reputation-based robustness maps directly onto practical concerns for anyone operating agent infrastructure at scale, where global coordination is expensive or impossible and trust cannot be assumed.

Future Directions

  • Online adaptive optimization: The authors explicitly name this as future work, meaning the routing policy could be updated during deployment rather than fixed after training.
  • More complex collaboration patterns: Beyond sequential next-hop chains, such as branching, parallel, or hierarchical coordination.
  • Deeper evaluation of decentralized degradation: The SO-MAS simulation uses a communication limit of three randomly selected peers; how BiRouter behaves under other connectivity levels or network topologies is not reported.
  • Reputation dynamics over longer horizons: The paper shows credit-score trajectories on GSM8K and HumanEval, but the long-run behavior of the reputation mechanism and recovery of penalized agents is not detailed.

Target Audience

Researchers and practitioners working on LLM-based multi-agent systems, decentralized agent networks, and agent collaboration planning will benefit most. It is also relevant to engineers building agent orchestration infrastructure who care about token cost, robustness to unreliable components, and operating without a central scheduler. Readers should be comfortable with basic notation for sets and probabilities and with standard multi-agent benchmarking practice.

Authors’ abstract

LLM-based multi-agent systems have demonstrated significant capabilities across diverse domains. However, the task performance and efficiency are fundamentally constrained by their collaboration strategies. Prevailing approaches rely on static topologies and centralized global planning, a paradigm that limits their scalability and adaptability in open, decentralized networks. Effective collaboration planning in distributed systems using only local information thus remains a formidable challenge. To address this, we propose BiRouter, a novel dual-criteria routing method for Self-Organizing Multi-Agent Systems (SO-MAS). This method enables each agent to autonomously execute ``next-hop'' task routing at runtime, relying solely on local information. Its core decision-making mechanism is predicated on balancing two metrics: (1) the ImpScore, which evaluates a candidate agent's long-term importance to the overall goal, and (2) the GapScore, which assesses its contextual continuity for the current task state. Furthermore, we introduce a dynamically updated reputation mechanism to bolster system robustness in untrustworthy environments and have developed a large-scale, cross-domain dataset, comprising thousands of annotated task-routing paths, to enhance the model's generalization. Extensive experiments demonstrate that BiRouter achieves superior performance and token efficiency over existing baselines, while maintaining strong robustness and effectiveness in information-limited, decentralized, and untrustworthy settings.

Read the original paper