English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

MindSearch: Mimicking Human Minds Elicits Deep AI Searcher

Forum topic · 小凯 · 2026-07-05

Summary

MindSearch (arXiv:2407.20183, July 2024) is an LLM-based multi-agent framework for deep web information seeking and integration, developed by researchers including Zehui Chen and Kai Chen. It addresses three challenges of naive LLM-plus-search-engine approaches: complex requests cannot be answered by a single retrieval, relevant information is scattered across noisy web pages, and long contents exceed LLM context limits. MindSearch mimics human cognition through two agents: WebPlanner, which decomposes a user query into atomic sub-questions modeled as a dynamically constructed graph, and WebSearcher, which performs hierarchical retrieval for each sub-question and feeds results back to extend the graph. The multi-agent design enables parallel processing of over 300 web pages in about 3 minutes, work that would take a human roughly 3 hours. Experiments show significant improvements in response depth and breadth on both closed-set and open-set QA. Notably, MindSearch built on InternLM2.5-7B produced responses preferred by human evaluators over ChatGPT-Web and Perplexity.ai, suggesting an open-source framework can rival proprietary AI search engines. This post summarizes the paper's motivation, architecture, evaluation, and engineering implications for agentic search systems.

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

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

  • 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)
  • References

  • Original paper: MindSearch: Mimicking Human Minds Elicits Deep AI Searcher — arXiv:2407.20183
> Original abstract (excerpt): "Information seeking and integration is a complex cognitive task that consumes enormous time and effort... The multi-agent design of MindSearch enables the whole framework to seek and integrate information parallelly from larger-scale (e.g., more than 300) web pages in 3 minutes, which is worth 3 hours of human effort. ... responses from MindSearch based on InternLM2.5-7B are preferable by humans to ChatGPT-Web and Perplexity.ai applications."

*Note: Quantitative results should be verified against the original PDF before citation; this post is based on the abstract and public metadata.*

Tags

#mindsearch#agentic-search#llm-agents#information-retrieval#multi-agent#web-search#rag#internlm

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/178208454