ManuSearch: Democratizing Deep Search in Large Language Models with a Transparent and Open Multi-Agent Framework
Source: arXiv:2505.18105 · May 2025 Authors: Lisheng Huang, Yichen Liu, Jinhao Jiang, Rongxiang Zhang, Jiahao Yan, Junyi Li, et al. (7 authors)
Overview
ManuSearch is a transparent, fully open multi-agent framework for deep search with large language models. It was motivated by the observation that commercial deep research systems (which interleave reasoning, online search, and code execution behind closed APIs) are powerful but opaque, limiting scientific study and community reuse. ManuSearch opens up the complete agentic search pipeline so that it can be inspected, reproduced, and extended.
Design: Three Collaborative Agents
- Planning agent — orchestrates the overall deep research process, deciding when to search, when to execute code, and how to synthesize intermediate results.
- Search agent — interacts with the open web to retrieve up-to-date external knowledge beyond the model's training data.
- Code agent — writes and executes programs for computation, structured data processing, and verification tasks.
- ManuSearch reportedly outperforms existing deep research systems (including closed commercial ones) on challenging deep search benchmarks.
- The framework demonstrates that transparent, open designs can match proprietary agentic search pipelines, supporting reproducible research on agentic retrieval.
- By exposing the full trajectory of planning, searching, and coding, ManuSearch enables study of agent orchestration, tool-use policies, and evaluation in agentic RAG systems.
- A Comprehensive Survey of Deep Research (arXiv:2506.12594)
- A Survey of LLM-based Deep Search Agents (arXiv:2508.05668)
- Agentic Reasoning (arXiv:2502.04644)
- For researchers: ManuSearch provides an open baseline for studying how planning, retrieval, and execution should be coordinated in deep research agents.
- For engineers: the modular three-agent design is a reference architecture for building agentic search stacks with pluggable retrievers and tool interfaces.
- For the community: open, reproducible alternatives to closed deep research APIs help close the gap between academic evaluation and industrial systems.
This decomposition mirrors the capabilities that closed deep research products combine internally (reasoning, search, and code execution), but exposes each component openly.
Key Claims
Context
The paper sits at the intersection of agentic search, retrieval-augmented generation (RAG), and multi-agent collaboration. It complements related surveys and systems on deep research and LLM-based search agents, such as: