MindSearch: Mimicking Human Minds Elicits Deep AI Searcher
| Field | Detail | |---|---| | Authors | Zehui Chen, Kuikun Liu, Qiuchen Wang, Jiangning Liu, Wenwei Zhang, Kai Chen, et al. (7 authors) | | Published | 2024-07-29 | | Source | https://arxiv.org/abs/2407.20183 | | Type | Academic paper | | Category | Agentic Search |
TL;DR
MindSearch is an LLM-based multi-agent framework that mimics how humans seek and integrate web information. A WebPlanner decomposes queries into a dynamically growing graph of sub-questions, while a WebSearcher performs hierarchical retrieval for each. It can read and integrate information from 300+ web pages in ~3 minutes (equivalent to ~3 hours of human effort) and outperforms ChatGPT-Web and Perplexity.ai in human preference tests, even when powered by a 7B model.
Background and Motivation
Information seeking and integration is a complex cognitive task. While recent work combines LLMs with search engines, performance remains unsatisfying due to three challenges:
1. Complex requests often cannot be accurately and completely retrieved in a single search-engine call; 2. The information to be integrated is spread across multiple web pages mixed with massive noise; 3. Large numbers of long web pages quickly exceed the maximum context length of LLMs.
Inspired by the human cognitive process, MindSearch mimics human minds in web information seeking and integration via a simple yet effective LLM-based multi-agent framework.
Method / Architecture
- WebPlanner: Models multi-step information seeking as a dynamic graph construction process. It decomposes the user query into atomic sub-questions as graph nodes and progressively extends the graph based on WebSearcher's results.
- WebSearcher: Tasked with each sub-question, it performs hierarchical information retrieval with search engines and collects valuable information for the WebPlanner.
- Significant improvement in response quality in terms of depth and breadth on both closed-set and open-set QA problems.
- Responses from MindSearch based on InternLM2.5-7B are preferred by humans over ChatGPT-Web and Perplexity.ai, indicating that MindSearch already delivers a competitive open-source alternative to proprietary AI search engines.
- A Systematic Framework for Enterprise Knowledge Retrieval
- Retrieval Augmented Generation and Understanding in Vision: A Survey
- Synergizing RAG and Reasoning: A Systematic Review (arXiv:2504.15909)
- AceSearcher: Bootstrapping Reasoning and Search for LLMs via RL (arXiv:2509.24193)
- Agentic Information Retrieval (arXiv:2410.09713)
- Original paper: MindSearch: Mimicking Human Minds Elicits Deep AI Searcher — arXiv:2407.20183
The multi-agent design allows the framework to seek and integrate information in parallel from a larger scale of web pages (e.g., more than 300) within 3 minutes — work worth about 3 hours of human effort.
Experimental Results
Key Takeaways for Search / Rec / Personalization
1. Architecture: Cascaded retrieval + re-ranking + generation remains mainstream, but the agentic paradigm makes retrieval count and strategy themselves learnable/planable. 2. Data: High-quality instruction data and session logs remain critical; synthetic data must guard against leakage and distribution shift. 3. Evaluation: The gap between offline metrics and online satisfaction is widening; LLM-as-judge should be cross-validated with human evaluation. 4. Deployment: Latency, cost, explainability, and safety are hard constraints for production systems — do not optimize only for academic benchmarks.
Limitations and Future Directions
Potential limitations include experimental scale constrained by compute budgets, mismatch between benchmarks and real user distributions, unclear cross-lingual generalization, and safety risks when agents operate on the open web. Future work may explore more efficient test-time compute allocation, deeper integration with knowledge graphs and structured databases, and causal/fairness constraints for recommendation settings.
Related Entries
References
*Note: Quantitative results should be verified against the original PDF before citation; this post is based on the abstract and public metadata.*