[CVPR 2025] AGENTVISTA: Stress-Testing Multimodal Agents in the "Wild" of Realistic Visual Scenarios

AgentVista: Evaluating Multimodal Agents in Ultra-Challenging Realistic Visual Scenarios

Summary
Problem
Method
Results
Takeaways
Abstract

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."

  1. Agent-Centric Filtering: Mining 300k images to find those requiring agentic potential (not just OCR).
  2. Expert Finalization: Human annotators crafted queries with real constraints (budget, time, safety).
  3. Execution Filtering: Removing any task that could be solved by the LLM's internal knowledge without using tools.
  4. 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.

AGENTVISTA Framework Overview 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.

ModelOverall AccuracyAvg. Tool Turns
Gemini-3-Pro27.3%6.67
GPT-5.224.4%13.85
Claude-Opus-4.118.2%7.28
Qwen3-VL-235B12.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.

Performance Comparison 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.

Error Distribution 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:

  1. Better Active Perception: Models that can autonomously decide to "look closer" or "adjust contrast" before reasoning.
  2. Test-Time Scaling: The paper shows that "Best-of-N" sampling (Figure 4) helps, but the gap remains large.
  3. 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.

Find Similar Papers

Try Our Examples

  • Search for recent multimodal agent benchmarks released in 2024-2025 that specifically evaluate long-horizon planning and autonomous tool use in open-domain environments.
  • Which papers introduced the foundational techniques for "active perception" in LLM-based agents, and how do they compare to the code-based image manipulation approach used in AgentVista?
  • Explore research papers and technical reports that apply Reinforcement Learning from Human Feedback (RLHF) or Monte Carlo Tree Search to improve the reliability of tool-calling trajectories in multimodal models.
Contents
[CVPR 2025] AGENTVISTA: Stress-Testing Multimodal Agents in the "Wild" of Realistic Visual Scenarios
1. TL;DR
2. The "Real-World" Gap: Why Current Benchmarks Fail
3. Methodology: Engineering Complexity
3.1. The Toolset
4. Experiments: A Reality Check for SOTA Models
4.1. Key Insights:
5. The Pathology of Failure: Why Do Agents Die?
6. Conclusion & Future Outlook