Skip to content

Multimodal and Vision: WebWatcher Redefines Deep Research

Sep 19, 20261 min
TL;DRAll deep research agents are 'text-first'—but the real world isn't just text. WebWatcher (NeurIPS 2025) is the first system to integrate visual reasoning into deep research, using OCR, image search, code execution, and other tools to handle charts, screenshots, videos, and other diverse information.

🌏 中文版

The previous articles all looked at text-centric deep research agents. But the real world isn't just text—you encounter:

  • Charts in papers (bar charts, flowcharts, architecture diagrams)
  • Screenshots on web pages (UI design, product interfaces)
  • Handwritten notes or scanned documents
  • Visual information in videos

WebWatcher (arXiv:2508.05748, NeurIPS 2025) is the first system to formally integrate visual reasoning into deep research.

Why Multimodal Matters

The problem with existing deep research agents is simple: they only read text, but the world isn't just text.

ScenarioProblem
Reading papersCharts contain key data, but text descriptions may be incomplete
Analyzing productsUI design, interaction flows can't be fully described in text
Field researchHandwritten notes, scanned documents need OCR
Video analysisVideo content can't be retrieved by text-only agents

WebWatcher's paper states clearly:

"Most research remains primarily text-centric, overlooking visual information in the real world."

WebWatcher Architecture

Core Design

ComponentFunction
Vision-Language ReasoningUnderstanding meaning of images, charts, screenshots
Multi-Tool CoordinationOCR, image search, code execution, web navigation
Think–Act–Observe LoopDynamic decision-making process

Training Method

  1. Synthesized multimodal trajectories: High-quality visual+text synthetic data for cold-start
  2. Multi-tool deep reasoning: Using various tools for reasoning
  3. RL generalization: Reinforcement learning for cross-scenario adaptation

Tool Suite

  • Web image search
  • Text search
  • Web navigation
  • Code interpreter
  • OCR (Optical Character Recognition)

New Benchmark: BrowseComp-VL

WebWatcher proposes BrowseComp-VL—a benchmark requiring both visual and text reasoning:

  • Not just text Q&A
  • Requires extracting information from images and combining with text
  • Simulates real-world multimodal research scenarios

Key Results

WebWatcher significantly surpassed four challenging VQA (Visual Question Answering) benchmarks:

  • Closed-source systems (e.g., OpenAI's vision models)
  • RAG workflows
  • Open-source agents

Core advantage: Modular design—vision reasoning, tool calling, and decision loop are clearly separated and can be independently optimized.

Series Connections

Series ArticleConnection
order 0 (Landscape)Multimodal is a natural extension of Phase III (Full-stack AI Scientist)
order 3 (IterResearch/AREX)Multimodal agents also need long-term memory
order 5 (Tongyi DeepResearch)Tongyi's Heavy mode can integrate multimodal reasoning
order 11 (Open-Source Tools)Multimodal tools are the new frontier of the open-source ecosystem

Trend: From Text to Full Multimodal

Text-only (2024) → Text+Image (WebWatcher, 2025) → Full Multimodal (future)

WebWatcher is just the beginning. Future deep research agents need to:

  • Understand tables, charts, maps, flowcharts
  • Process video, audio, 3D models
  • Cross-modal synthesis (derive conclusions from one image and one text)

Key Takeaways

  1. Real-world information is multimodal—agents that can only read text are "disabled"
  2. Tool coordination matters more than single-model capability—OCR, image search, and code each do their part
  3. Synthetic data is key—without large amounts of multimodal trajectories, there can be no multimodal agents

References