Papers
Topics
Authors
Recent
Search
2000 character limit reached

MA-EgoQA: Question Answering over Egocentric Videos from Multiple Embodied Agents

Published 10 Mar 2026 in cs.CV and cs.AI | (2603.09827v2)

Abstract: As embodied models become powerful, humans will collaborate with multiple embodied AI agents at their workplace or home in the future. To ensure better communication between human users and the multi-agent system, it is crucial to interpret incoming information from agents in parallel and refer to the appropriate context for each query. Existing challenges include effectively compressing and communicating high volumes of individual sensory inputs in the form of video and correctly aggregating multiple egocentric videos to construct system-level memory. In this work, we first formally define a novel problem of understanding multiple long-horizon egocentric videos simultaneously collected from embodied agents. To facilitate research in this direction, we introduce MultiAgent-EgoQA (MA-EgoQA), a benchmark designed to systemically evaluate existing models in our scenario. MA-EgoQA provides 1.7k questions unique to multiple egocentric streams, spanning five categories: social interaction, task coordination, theory-of-mind, temporal reasoning, and environmental interaction. We further propose a simple baseline model for MA-EgoQA named EgoMAS, which leverages shared memory across embodied agents and agent-wise dynamic retrieval. Through comprehensive evaluation across diverse baselines and EgoMAS on MA-EgoQA, we find that current approaches are unable to effectively handle multiple egocentric streams, highlighting the need for future advances in system-level understanding across the agents. The code and benchmark are available at https://ma-egoqa.github.io.

Summary

  • The paper introduces MA-EgoQA, a benchmark that challenges QA systems to integrate multi-agent, long-horizon egocentric video contexts.
  • It details a pipeline combining LLM-generated QA pairs, multi-span synthesis, and cross-agent event abstraction to ensure robust, multi-modal evaluation.
  • EgoMAS, a training-free baseline, leverages event-based shared memory and dynamic retrieval to significantly enhance inference efficiency and accuracy.

MA-EgoQA: Question Answering over Egocentric Videos from Multiple Embodied Agents

Introduction

The paper "MA-EgoQA: Question Answering over Egocentric Videos from Multiple Embodied Agents" (2603.09827) introduces MA-EgoQA, a new benchmark for evaluating question answering (QA) in realistic multi-agent embodied environments. The primary focus is on the reasoning capabilities and context integration necessary to answer questions that require system-level understanding from temporally aligned, long-horizon egocentric video streams captured by multiple agents. Current video LLMs and benchmarking protocols are inadequate for such scenarios, which motivates the new dataset and corresponding baseline proposed in this work.

Benchmark Design and Contributions

MA-EgoQA is constructed to evaluate a system's ability to understand and reason over multi-agent egocentric video. The benchmark is derived from EgoLife, a 266-hour egocentric video corpus, with simultaneous recordings from six agents over seven days. MA-EgoQA comprises 1,741 questions, each demanding cross-agent, long-term temporal reasoning for correct answering. Key contributions are as follows:

  • Problem Formalization: MA-EgoQA targets the challenge of QA over multiple, long-horizon, egocentric videos, requiring agents to both share and fuse experiences for system-level understanding.
  • Benchmark Composition: Five categories, specifically designed for the multi-agent setting, are included: Social Interaction (SI), Task Coordination (TC), Theory of Mind (ToM), Temporal Reasoning (TR), and Environmental Interaction (EI). Each question requires referencing at least two agentsโ€™ experiences, often spanning non-contiguous temporal windows (multi-span), demanding fusion of heterogenous episodic memories. Figure 1

    Figure 1: Problem formulation of MultiAgent-EgoQA and the associated challenges.

  • Challenge Characteristics: Questions span a broad temporal scale (seven days/agent) with balanced distribution across categories and agents, requiring nuanced multi-modal reasoning (Figure 2). Figure 2

Figure 2

Figure 2

Figure 2

Figure 2: Statistics for MA-EgoQA: per-category sample counts, day/agent reference distributions, and question type statistics.

Benchmark Construction Methodology

The benchmark is constructed through a multi-stage pipeline:

  • Data Generation: For SI, TC, and ToM, QA pairs and rationales are generated using LLMs over 5-minute, temporally synchronized video segments, using transcripts and dense captions from all agents.
  • Multi-span Synthesis: Semantically similar single-span QAs are merged into multi-span queries by clustering sentence embeddings; multi-span questions require integrating context from multiple, temporally distant events for the same topic.
  • Template Methods: TR and EI use template-driven generation based on multi-scale temporal segmentations and cross-agent event statistics.
  • Quality Assurance: Filtering includes zero-context difficulty pruning, single-agent answerability checks, cross-LLM validation with external models, and final human verification to ensure that questions are truly multi-agent and non-trivial. Figure 3

    Figure 3: Benchmark construction pipeline: generation, LLM filtering, and human verification steps.

Baseline Model: EgoMAS

The paper also introduces EgoMAS, a training-free centralized system designed as a competitive baseline for MA-EgoQA. EgoMAS is built around two pivotal strategies:

  • Event-based Shared Memory: For every 10-minute window, all agent captions are integrated into a global event memory using a structured 4W1H schema (When, What, Where, Who, How). This abstraction provides system-level context with efficient alignment of agentsโ€™ experiences.
  • Agent-wise Dynamic Retrieval: At response time, EgoMAS uses a lightweight BM25-based retriever to select relevant events, then further refines agent-specific queries and retrieves supporting episodic content from each agentโ€™s local memory, filtering results by relevance. The final answer is generated conditioned on both shared and agent-level memories. Figure 4

    Figure 4: Overview of EgoMAS: event-based memory construction and agent-wise dynamic retrieval across multiple embodied video streams.

Experimental Results

A suite of 16 baseline modelsโ€”proprietary and open-source LLMs/video LLMs (including Gemini-2.5-Flash, GPT-5, Llama-3.1, Qwen2.5/3, VideoChat-Flash, VideoXL-2)โ€”and several retrieval-augmented (RAG) baselines are benchmarked on MA-EgoQA. Most models employ naive concatenation strategies, and their performance is systematically inferior to retrieval-based approaches.

  • Even frontier models such as Gemini-2.5-Flash achieve only 36.9% average accuracy (random: 20%). Many open LLMs and video LLMs perform marginally above chance, highlighting severe context integration and distraction by irrelevant frames.
  • RAG-based baselines and EgoMAS substantially outperform naive approaches, despite using significantly less input context (e.g., EgoMAS (Gemini backbone): 41.4% avg, +4.48% over Gemini-2.5-Flash direct input; EgoMAS (Qwen3VL-8B-Thinking): 40.3%; all still far below the Oracle ceiling).
  • ToM remains the most challenging category, indicating the difficulty of reasoning about unobservable, latent mental states.

Fine-grained Analysis

  • Multi-agent and Long-horizon Challenges: Using only a single agentโ€™s memory leads to large drops in accuracy, demonstrating that MA-EgoQA questions fundamentally require multi-agent integration and temporal understanding. Accuracy consistently degrades as more agents must be referenced per question. Figure 5

Figure 5

Figure 5: (Left) Performance gap using single-agent vs. all-agent memory; (Right) Accuracy versus number of required agents.

  • Multi-span Queries: There are significant accuracy drops on queries requiring composite, cross-temporal evidence (multi-span and TR-comparison types), underlining weaknesses in retrieval and event binding.
  • Modular/Efficient Reasoning: EgoMAS attains better latency-accuracy trade-off compared to large-context-single-pass models, with only 1.3s per query at much higher accuracy. Figure 6

    Figure 6: (Right) Comparison of inference latency vs. accuracy for leading baselines and EgoMAS.

  • Ablations: Event abstraction with 4W1H yields better shared memory than alternatives (summary, triplet, graph). BM25 is competitive and efficient as a retriever, only outperformed (with higher compute cost) by dense retrieval with embedding models.

Implications and Future Directions

MA-EgoQA exposes the inability of current LLM and video LLM systemsโ€”even those with extended contextโ€”to reason over multi-agent, long-horizon, multimodal data. Crucially, naive context concatenation is ineffective and inefficient, and models must acquire finer-grained event abstraction, memory fusion, and retrieval-guided reasoning to close a >40% gap to oracle performance.

From a practical perspective, specialized memory schemas (such as event-centric shared memory) and dynamic, agent-wise retrieval are markedly superior approaches, and suggest a path for scalable, efficient QA in real-world, distributed agent systems. Future advances in multi-agent system LLMs will require not only scaling input capacity, but also advances in knowledge representation (i.e., entity-centric and event-centric modeling), improvement in retrieval, and recursive, compositional query planning. The persistent challenge with ToM reveals unsolved issues in modeling implicit/occluded mental processes from distributed, multimodal observations.

The benchmark further catalyzes progress towards embodied AI assistants capable of transparent reportability, agentic collaboration, and robust system-level monitoring in complex physical environments.

Conclusion

MA-EgoQA represents a consequential step toward evaluating multi-agent video QA, shifting the focus from isolated agent experiences to systemic, temporally extended, and cross-agent memory integration. The strong empirical gap between best baseline and oracle, especially for tasks requiring ToM and multi-span reasoning, defines substantial open challenges for embodied QA and multi-agent LLM architectures. This benchmark will be fundamental for driving innovation in scalable agent memory, fusion protocols, and inference in future human-robot and distributed agent systems. Figure 7

Figure 7: Case Study: EgoMAS outperforms strong baselines by effectively retrieving and integrating multi-agent events; naive context concatenation and non-fused retrieval fail on complex queries.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We found no open problems mentioned in this paper.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 5 tweets with 28 likes about this paper.