InfoDeepSeek: Information Seeking in the Agentic LLM Era (EmergentMind Entry)
This post catalogs an academic paper entry listed on EmergentMind (paper ID 2505.15872), filed under the chapter Evaluation of Search engines.
Background and Motivation
Large-scale search, recommendation, and personalization systems face long-standing challenges in efficiency, scalability, and user intent understanding. Traditional pipelined approaches treat retrieval, ranking, and generation as separate stages, which struggles to satisfy LLM-era requirements for natural-language interaction, multi-hop reasoning, and real-time knowledge. This work addresses that intersection, targeting scenarios such as open-domain information access, enterprise knowledge retrieval, conversational search, and end-to-end architectures that coordinate external knowledge sources with generative models.
Core Contributions (as summarized in the entry)
- A unified perspective that organizes scattered related work into a comparable framework.
- A clear decomposition of method components: representation learning, retrievers, rerankers, planners, generators, and feedback mechanisms.
- Reproducible benchmarks, datasets, or taxonomy tables to lower the entry barrier for follow-up research.
- Discussion of interfaces with LLM tool calling, reinforcement learning, and multi-agent collaboration, including paths from research prototypes to production systems.
- Explicit open problems: evaluation trustworthiness, latency and cost, hallucination and safety, and cross-lingual / multimodal extension.
- Datasets: MS MARCO, BEIR, Natural Questions, domain corpora, public recommendation sets.
- Metrics: nDCG@10, MRR, Recall@k, Hit@k, human preference, task success rate, latency, token cost.
- Baselines: BM25, dense retrieval, cross-encoder reranking, retrieval-free LLMs, commercial search APIs.
- Ablations: contribution of retrieval steps, reranking depth, training data scale.
- IR: Information Retrieval
- RAG: Retrieval-Augmented Generation
- LTR: Learning to Rank
- nDCG: Normalized Discounted Cumulative Gain
- Agentic Search: modeling search as sequential decision-making and tool invocation
- Gen-IR: Generative Information Retrieval
- AI Search Has A Citation Problem, Mar 2025, CJR
- Evaluation of Retrieval-Augmented Generation: A Survey (arXiv:2405.07437)
- A Dataset of Information-Seeking Questions and Answers Anchored in Research Articles (arXiv:2105.03011)
- ARES: An Automated Evaluation Framework for RAG (arXiv:2311.09476)
- AgentBoard: An Analytical Evaluation Board of Multi-turn LLM Agents (arXiv:2401.13178)
- Original entry: <https://www.emergentmind.com/papers/2505.15872>
Typical Method Pipeline
1. Input & representation: encode queries, documents, and user context into dense/sparse representations or structured prompts. 2. Core modules: retrievers, rerankers, planners, memory, tool interfaces — chained or parallel by task. 3. Learning strategies: supervised fine-tuning, contrastive learning, distillation, RL (including process rewards), bootstrapped data synthesis. 4. Inference strategies: single-pass retrieval, iterative retrieval, parallel sub-queries, early stopping and budget control.
Evaluation (typical protocol)
Note: concrete numbers should be verified against the original PDF; this entry is based on the abstract and public metadata.
Key Insights for Search / Rec / Personalization
1. Architecture: cascaded retrieval + reranking + generation remains mainstream, but agentic paradigms make retrieval count and policy themselves learnable. 2. Data: high-quality instruction data and click/session logs are both critical; synthetic data must guard against knowledge leakage and distribution shift. 3. Evaluation: the gap between offline metrics and online satisfaction is widening; LLM-as-judge needs cross-validation with human evaluation. 4. Product: latency, cost, explainability, and safety are hard constraints for industrial deployment — not just academic benchmarks.
Engineering Checklist
| Item | Question | Recommendation | |------|----------|----------------| | Data | PII in training/index? Versioning? | Partitioned indexes, sanitization, rollback-capable embedding versions | | Latency | p99 budget? Retrieval steps? | Cascades + early stopping, hot-query caching, async reranking | | Quality | Does offline gain transfer to online CTR/satisfaction? | Interleaving experiments, human audits, citation verification | | Security | Poisoning/bias via open retrieval? | Source whitelisting, adversarial detection, output filtering | | Cost | Token/GPU spend per query? | Small-model routing, distillation, hybrid sparse+dense |