ChatRetriever: Adapting Large Language Models for Generalized and Robust Conversational Dense Retrieval
Overview
| Field | Content | |------|------| | Title | ChatRetriever: Adapting Large Language Models for Generalized and Robust Conversational Dense Retrieval | | Authors | Kelong Mao, Chenlong Deng, Haonan Chen, Fengran Mo, Zheng Liu, Tetsuya Sakai, et al. (7 authors) | | Published | 2024-04-21 | | Source | https://arxiv.org/abs/2404.13556 | | Type | Academic paper | | Section | Conversational Search |
Background and Motivation
Conversational search requires accurately interpreting user intent from complex multi-turn contexts. Traditional pipelines that treat retrieval, ranking, and generation separately struggle to meet the LLM-era demand for natural-language interaction, multi-hop reasoning, and up-to-date knowledge. ChatRetriever addresses this by inheriting the strong generalization capability of large language models to robustly represent complex conversational sessions for dense retrieval.
Method
The paper proposes a simple and effective dual-learning approach:
1. Contrastive learning adapts the LLM for retrieval tasks; 2. Masked instruction tuning on high-quality conversational instruction tuning data enhances complex session understanding.
This follows the standard pipeline of problem formulation → model design → training procedure → inference pipeline, where queries, documents, and user context are encoded as dense representations optimized jointly for retrieval quality and conversational comprehension.
Experiments
- Benchmarks: Five conversational search benchmarks
- Key results:
- Substantially outperforms existing conversational dense retrievers
- Achieves state-of-the-art performance on par with LLM-based rewriting approaches
- Exhibits superior robustness on diverse conversational contexts
- A Survey of Conversational Search (ACM, Sep 2025)
- Engineering Conversational Search Systems: A Review of Applications (arXiv:2407.00997)
- Agentic Conversational Search with Contextualized Reasoning via Reinforcement Learning
- CTR-Guided Generative Query Suggestion in Conversational Search (EMNLP)
- CoSearchAgent: A Lightweight Collaborative Search Agent with LLMs (arXiv:2402.06360)
- ConvGQR: Generative Query Reformulation for Conversational Search (arXiv:2305.15645)
Refer to the original paper for exact quantitative results.
Abstract (original)
> Conversational search requires accurate interpretation of user intent from complex multi-turn contexts. This paper presents ChatRetriever, which inherits the strong generalization capability of large language models to robustly represent complex conversational sessions for dense retrieval. To achieve this, we propose a simple and effective dual-learning approach that adapts LLM for retrieval via contrastive learning while enhancing the complex session understanding through masked instruction tuning on high-quality conversational instruction tuning data. Extensive experiments on five conversational search benchmarks demonstrate that ChatRetriever substantially outperforms existing conversational dense retrievers, achieving state-of-the-art performance on par with LLM-based rewriting approaches. Furthermore, ChatRetriever exhibits superior robustness in handling diverse conversational contexts. Our work highlights the potential of adapting LLMs for retrieval with complex inputs like conversational search sessions and proposes an effective approach to advance this research direction.
Key Takeaways for Search / Rec / Personalization
1. Architecture: Cascaded retrieve-rank-generate remains mainstream, but agentic paradigms are making retrieval strategy itself learnable; 2. Data: High-quality instruction data and session logs are critical; synthetic data requires care against knowledge 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. Production: Latency, cost, interpretability, and safety are hard constraints for industrial deployment — do not optimize academic benchmarks alone.
Limitations and Future Work
Potential limitations include experiment scale constrained by GPU budgets, benchmarks that may not match real user distributions, English-centric data leaving cross-lingual generalization unknown, and safety risks of agent systems on the open web. Future directions include more efficient test-time compute allocation, deeper integration with knowledge graphs and structured databases, and causal/fairness constraints for recommendation systems.
Related Entries
Glossary
| Term | Meaning | |------|------| | IR | Information Retrieval | | RAG | Retrieval-Augmented Generation | | LTR | Learning to Rank | | nDCG | Normalized Discounted Cumulative Gain, a ranking quality metric | | Agentic Search | Modeling search as sequential decision-making and tool calling | | Gen-IR | Generative Information Retrieval |