Back to Feed
Agents / Efficiency & Inference

Adapting Agent Networks for Better Collaboration

Original: MANTA: Multi-Agent Network Topology Adaptation for Self-Evolving Multi-Agent Systems

Listen to the summary

Uses a voice available on your device

Audio options
On this page

Key Takeaways

  • MANTA uses an automated planner to build efficient team structures for agents without needing manual design.
  • The system can audit its own work and perform targeted repairs if it detects potential process errors.
  • It significantly outperforms existing methods by achieving an average score of 74 across five benchmarks.
  • The approach effectively transfers knowledge about how to structure teams across different types of tasks.

Summary & Methodology Analysis

The MANTA system approaches teamwork by treating the way agents interact as a flexible map, known as a topology, rather than a fixed rule. At the start of a task, a specialized planner analyzes the requirements to build a custom team, assigning specific roles like workers or voters to different agents. These agents interact within a structure that can include nested groups and direct communication lines. A central controller keeps track of who can see which messages to ensure information flows correctly, while deterministic code ensures that the team structure follows strict logical constraints before any work begins. If the system detects a potential issue, it can trigger a repair process that makes one controlled change to the team structure, such as adding a member or changing how information is shared. This process uses a two-horizon playbook, which acts as a memory system. A short-term log captures immediate task details, while a long-term playbook stores general lessons about which team structures work best for certain types of challenges. This long-term memory is updated periodically to help future agents benefit from past experiences without requiring them to undergo expensive training sessions to update their internal parameters. The methodology relies on a process-driven audit where the system inspects its own work for gaps in logic or evidence. However, this is limited because a clean audit does not guarantee that the final answer is correct. Additionally, the system currently limits itself to a single repair per task and relies on a specific model, meaning its performance could vary if applied to different AI technologies or if faced with problems where the initial process seems correct but the final answer is wrong.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. What is the core goal of MANTA?

The core goal is to allow multi-agent systems to evolve their communication networks online during a task rather than relying on static, hand-designed setups.

Q2. How does the system decide how to structure the team?

A topology planner analyzes the task and consults an experience memory to decide on the best interaction pattern, agent count, and specific roles.

Q3. Can the system fix its own mistakes?

Yes, if an audit flags a problem, the system can perform one bounded repair, such as changing a group pattern or adding an agent to improve the outcome.

Q4. What happens if a repair is not possible or safe?

If a proposed repair is invalid, the system uses a conservative repair compiler to handle the proposal or simply skips the mutation.

Q5. Does MANTA require changing the AI's internal weights?

No, it improves performance by adapting the external communication structure and using a long-term memory of successful strategies instead of modifying the internal weights of the agents.

Q6. How does the system know when a repair is needed?

A trace auditor scans the artifacts, packets, and evidence for flags, and it recommends repair if it detects process issues with medium or high severity.

Q7. Is the system efficient with resources?

Yes, MANTA achieves the lowest token consumption among the evaluated multi-agent systems, with meta-level operations making up only 12 percent of the budget.

Q8. What are the limitations regarding the audit process?

The audit is a reliability signal but not a guarantee of correctness, as the system can still produce an incorrect answer while following a process that appears clean.

Q9. Were other models tested besides Gemma 4 31B?

No, the paper only reports results using the Gemma 4 31B model with medium reasoning effort.