[CVPR 2025] AGENTVISTA: Stress-Testing Multimodal Agents in the "Wild" of Realistic Visual Scenarios
AgentVista: Evaluating Multimodal Agents in Ultra-Challenging Realistic Visual Scenarios
The paper introduces AGENTVISTA, a comprehensive benchmark designed to evaluate generalist multimodal agents in ultra-challenging, realistic visual scenarios. It comprises 209 manually authored tasks across 25 sub-domains, requiring long-horizon interactions and interleaved tool use (web search, code execution, image processing) to solve complex workflows grounded in fine-grained visual evidence.
TL;DR
While LLMs are getting better at "seeing," they are still remarkably poor at "acting" based on what they see in complex environments. AGENTVISTA is a new, ultra-hard benchmark that moves past simple Q&A to evaluate agents on multi-step, tool-integrated workflows. With even the best models (Gemini-3-Pro) failing nearly 73% of the time, this work exposes a massive gap between current AI capabilities and the requirements of real-world assistants.
The "Real-World" Gap: Why Current Benchmarks Fail
Most multimodal benchmarks are "static." They show a model a clean image and ask a question. In reality, a helpful agent—like one helping you troubleshoot a wiring diagram or planning a trip using a complex transit map—needs to interact. It needs to zoom in on a serial number, search for a manual online, calculate a voltage, and verify its findings.
Prior benchmarks suffered from two main issues:
- Capability Silos: They tested only web browsing or only code generation.
- Artificial Simplicity: Visuals were too clean, or tool use was shortened to 2-3 turns.
AGENTVISTA fixes this by demanding interleaved hybrid tool use over long horizons (averaging 12.7 turns, compared to the ~4 turns of existing sets).
Methodology: Engineering Complexity
The authors built AGENTVISTA using a 4-stage pipeline to ensure tasks were "vision-centric" and "tool-mandatory."
- Agent-Centric Filtering: Mining 300k images to find those requiring agentic potential (not just OCR).
- Expert Finalization: Human annotators crafted queries with real constraints (budget, time, safety).
- Execution Filtering: Removing any task that could be solved by the LLM's internal knowledge without using tools.
- Verification: Two rounds of human checking to ensure the answers were deterministic and verifiable.
The Toolset
Agents have access to a versatile environment:
- Web & Image Search: For external fact-gathering.
- Page Navigation (Visit): To extract deep content from URLs.
- Code Interpreter: Using Python (PIL, OpenCV) to crop, zoom, and process images or perform math.
Figure 1: A representative AGENTVISTA task involving a home renovation scenario requiring multi-image grounding and price calculations.
Experiments: A Reality Check for SOTA Models
The results are a "wake-up call" for the industry. Even with a generous 30-turn budget, model performance was surprisingly low.
| Model | Overall Accuracy | Avg. Tool Turns |
|---|---|---|
| Gemini-3-Pro | 27.3% | 6.67 |
| GPT-5.2 | 24.4% | 13.85 |
| Claude-Opus-4.1 | 18.2% | 7.28 |
| Qwen3-VL-235B | 12.9% | 2.34 |
Key Insights:
- Visual Grounding is the Bottleneck: Error analysis (Figure 8) shows that Visual Misidentification is the #1 cause of failure. Models often "think" they see one thing, anchor their entire search strategy on that mistake, and spiral into a "hallucination loop."
- GPT-5 vs. Gemini: GPT models lean heavily on the Code Interpreter (active image analysis), while Gemini and Claude prefer Web Search (retrieval-heavy).
- Multi-image Advantage: Contrary to intuition, multi-image tasks often had higher accuracy because additional views helped disambiguate cluttered scenes.
Table 3: Accuracy across different domains. Notice the significant drop in "Culture" and "Academics" for many models.
The Pathology of Failure: Why Do Agents Die?
One of the most valuable parts of this paper is the qualitative analysis of failures.
- Tool Execution Failure: The agent has a good plan but the code/search returns a malformed result.
- Instruction Misinterpretation: The agent ignores a critical constraint (e.g., "must be stationary").
- Knowledge Hallucination: The agent "invents" facts to make the image fit a search result it found.
Figure 8: Visual misidentification dominates, proving that MLLMs still struggle with fine-grained perception in cluttered scenes.
Conclusion & Future Outlook
AGENTVISTA proves that being a "Good Chatbot" is not the same as being a "Good Agent." The "Ultra-Challenging" nature of this benchmark suggests that scaling model size alone won't solve these problems. Instead, we likely need:
- Better Active Perception: Models that can autonomously decide to "look closer" or "adjust contrast" before reasoning.
- Test-Time Scaling: The paper shows that "Best-of-N" sampling (Figure 4) helps, but the gap remains large.
- Reinforcement Learning: Training agents specifically for the loop of perceive-act-verify.
For researchers looking to build the next generation of visual intelligence, AGENTVISTA is the new yardstick for true multimodal reasoning.
