MiTa: Hierarchical Multi-Agent Framework
- MiTa is a hierarchical, memory-integrated multi-agent framework that uses a manager–member architecture to coordinate global task allocation and ensure memory consistency via episodic summaries.
- It employs a global task allocation mechanism that integrates individual agent proposals and compressed episodic memories to prevent inter-agent conflicts and boost efficiency.
- Experimental benchmarks show that MiTa significantly reduces task steps and improves scalability compared to previous LLM-based systems through robust global reasoning.
MiTa is a hierarchical, memory-integrated multi-agent collaboration framework designed to address inter-agent conflict and memory inconsistency in LLM-driven embodied systems. The architecture organizes agents into a top-down manager–member structure, equipping the manager with two unique modules—Allocation for global task coordination and Summary for episodic memory integration—enabling efficient, consistent cooperation on complex tasks. Experimental benchmarks with multiple agent configurations demonstrate MiTa's superior efficiency and adaptability compared to previous LLM-based multi-agent systems (Zhang et al., 30 Jan 2026).
1. Hierarchical Manager–Member System
MiTa implements a strict manager–member hierarchy. The manager centralizes decision-making, maintaining a global belief state over the joint environment and task objective . Members individually perceive local observations , encode them (structured or raw RGB-D), and propose candidate actions via an LLM-driven negotiation module:
Each member preserves its own short-term memory and executes the manager-assigned subtask . The manager extends standard modules with Allocation (for task division and conflict avoidance) and Summary (for compressed, task-triggered memory updates).
2. Global Task Allocation Mechanism
Task allocation is formalized in the MPOMDP framework with joint action space . At each step, the manager aggregates member proposals, beliefs, and observations into a cross-agent context:
Allocation is performed by selecting the joint action maximizing a global scoring function instantiated by the LLM:
where 0 is implemented as an LLM prompt incorporating collaborative summary 1 and task progress 2. The allocation process explicitly avoids conflicts by operating from a global perspective. Algorithmically, the context is assembled, the LLM ranks feasible joint actions, and the top-scoring plan is dispatched to members.
3. Episodic Memory Integration via Summarization
MiTa addresses long-horizon context retention with an episodic summary module. Both manager and members log each executed joint action 3 and belief 4. When task progress, quantified via 5, changes, the manager triggers a summarization routine:
- Retrieve recent history chunk:
6
- LLM prompt uses the progress delta 7 and 8 to compress recent events into summary 9:
0
This mechanism ensures the manager's cross-agent context for allocation always incorporates the latest condensed sequence of collaboration, enabling consistent and scalable context propagation without unbounded memory growth.
4. Time Evolution and Consistency Maintenance
The operational loop of MiTa is organized such that, at each time step:
- Members generate and send 1 to the manager.
- The manager, using 2, allocates 3 globally.
- Members act in the environment; the joint outcome (4) is observed.
- Beliefs are updated:
5
- If 6, as evaluated against 7, changes, the summary module is invoked and 8 is refreshed. This process ensures that memory fragments propagate forward efficiently and all task allocations remain globally coherent, with summaries available for future reference and planning.
5. Computational and Memory Complexity
The allocation module operates at time complexity 9 per step (0 agents, 1 candidate joint actions; 2 is pruned in practice via prompt restrictions), with memory 3 for proposals and 4 for episodic summaries. The summary module triggers only on progress changes (5 number of subtasks), operates in 6 time per summary (7 = summary history window), and transiently requires 8 memory.
6. Empirical Performance and Robustness
Experimental validation in VirtualHome-Social (C-WAH benchmark, five household tasks) demonstrates MiTa's superiority over CoELA and ProAgent. For three agents (GPT-4o backbone, symbolic mode), MiTa achieves an average step count 9 (0 efficiency improvement), outperforming CoELA (1) and ProAgent (2). Across all task types and agent counts, MiTa delivers the lowest step count, with its hierarchical allocation and episodic memory structures yielding the largest gains in the multi-agent case. Robustness testing shows downgrading member LLMs marginally increases 3 (4+1), but downgrading the manager LLM increases 5 by 6–7, confirming high-quality global reasoning is critical (Zhang et al., 30 Jan 2026).
7. Module Ablation and Sensitivity
Ablation studies confirm that removal of the allocation module (leaving only member negotiation) increases steps by 8, leading to uncoordinated, myopic behaviors. Removing the summary module (no episodic integration) increases steps by 9, indicating degraded long-horizon context and increased action conflict. Full MiTa, with both modules, attains maximal efficiency.
MiTa represents an overview of negotiation-aware, hierarchical task allocation with episodic, LLM-driven memory summarization, systematically addressing coordination and memory bottlenecks in LLM-based multi-agent systems. Empirical evidence confirms its efficiency and robustness, particularly in complex multi-agent environments requiring long-horizon, globally consistent planning (Zhang et al., 30 Jan 2026).