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

LLMs for Recommender Systems: A Survey of Paradigms, Methods, and Open Challenges

Forum topic · 小凯 · 2026-07-05

Summary

This survey examines how Large Language Models reshape recommender systems by contributing reasoning, language understanding, and generative capabilities absent in traditional recommenders. It maps the field along four axes: modeling paradigms (discriminative vs. generative retrieval), LLM integration patterns (RAG, agents, tool-use), optimization objectives (relevance, diversity, freshness), and evaluation (offline metrics, online A/B, LLM-as-judge). Key strengths highlighted include nuanced contextual comprehension, cross-domain transfer, unified approaches, shared-data holistic learning, explainability, and iterative refinement. The review also surveys dense retrieval, late interaction (e.g., ColBERT), generative IR, and agentic search, and traces evolution from BERT reranking and DPR (2019–2021) through RAG and FreshLLM (2022–2023) to conversational, agentic, and Gen-RecSys approaches from 2024 onward, with reinforcement-learning search agents, Deep Research, and GraphRAG emerging as 2025–2026 frontiers. Open challenges include prompt sensitivity, hallucinations, latency, cost, multilingual coverage, evaluation credibility, and safety.

LLMs for Recommender Systems: A Survey of Paradigms, Methods, and Open Challenges

Metadata

| Field | Value | |------|------| | Title | Exploring the Impact of Large Language Models on Recommender Systems: An Extensive Review | | Authors | Arpita Vats, Vinija Jain, Rahul Raja, Aman Chadha | | Published | 2024-02-11 | | Source | https://arxiv.org/abs/2402.18590 | | Type | Survey | | Category | Recommender Engine Surveys |

One-Sentence Summary

A systematic survey of how Large Language Models (LLMs) are transforming recommender systems through enhanced reasoning, language understanding, and generative capabilities, mapping methods, evaluation practices, and open challenges.

Background and Motivation

Recommendation in large-scale search and personalization systems has long faced challenges of efficiency, scalability, and accurate user-intent understanding. Traditional pipelines separate retrieval, ranking, and generation, which struggles to meet modern demands for natural-language interaction, multi-hop reasoning, and real-time knowledge. This survey addresses the resulting paradigm shift: LLMs introduce reasoning abilities absent from conventional recommenders, even when direct user interaction data is limited. The authors argue this constitutes a fundamental shift in how recommendation problems are formulated and solved.

Key scenarios covered include:

  • Open-domain information access
  • Enterprise knowledge retrieval
  • Conversational search
  • Semantic understanding in recommendation
  • End-to-end architectures that couple external knowledge sources with generative models
  • Core Contributions

  • Proposes a unified perspective that places scattered related work into a comparable framework.
  • Decomposes method components (representation learning, retrievers, rerankers, planners, generators, feedback loops) for easier engineering adoption.
  • Provides reproducible benchmarks, datasets, or taxonomy tables to lower the entry barrier for new researchers.
  • Discusses interfaces with LLM tool use, reinforcement learning, and multi-agent collaboration, outlining migration paths from research prototypes to industrial systems.
  • Explicitly lists open problems: evaluation credibility, latency and cost, hallucination and safety, and cross-lingual / multimodal extension.
  • Taxonomy

    | Dimension | Subcategories | Representative Approaches | Strengths | Limitations | |----------|--------------|--------------------------|-----------|-------------| | Modeling paradigm | Discriminative retrieval / Generative retrieval | Dual encoders, cross-encoders, DSI, GPT indexing | Mature, scalable | Semantic drift, update cost | | LLM integration | RAG / Agent / Tool-use | Retrieval augmentation, search agents, API calls | Flexible, explainable | Latency, error propagation | | Optimization objective | Relevance / Diversity / Freshness | Multi-objective LTR, RLHF, online learning | Business-aligned | Annotation scarcity | | Evaluation | Offline / Online / Human | nDCG, MRR, LLM-as-judge, A/B testing | Comparable | Gap with real satisfaction |

    The survey highlights four parallel research lines:

  • Dense retrieval: high recall, low latency, suitable for first-stage retrieval.
  • Late interaction (e.g., ColBERT): higher precision at the cost of larger indexes.
  • Generative IR: generates document tokens or docids directly, simplifying cascading pipelines.
  • Agentic search: models search as sequential decision-making, enabling multi-hop reasoning and self-reflection.
  • Timeline and Research Evolution

  • 2019–2021: BERT-based reranking and DPR establish foundations for neural retrieval.
  • 2022–2023: RAG and FreshLLM drive retrieval-generation fusion.
  • 2024: Conversational and agentic search, plus Gen-RecSys, accelerate.
  • 2025–2026: RL-trained search agents, Deep Research, and GraphRAG emerge as new growth areas.
  • Methods and Technical Routes

    The paper further develops sub-topics around how the four lines differ in training data, inference budget, and verifiability. Practitioners are advised to consult the original PDF for full quantitative tables; this report summarizes design logic based on the abstract and public metadata.

    Evaluation Paradigms

  • Datasets: MS MARCO, BEIR, Natural Questions, domain-specific corpora, public recommendation datasets.
  • Metrics: nDCG@10, MRR, Recall@k, Hit@k, human preference, task success rate, latency, and token cost.
  • Baselines: BM25, dense retrieval, cross-encoder rerank, retrieval-free LLMs, commercial search APIs.
  • Ablations: number of retrieval steps, reranker depth, training-data scale.
  • Main Conclusions and Insights

    1. Architecture: Cascaded retrieve-rerank-generate pipelines remain dominant, but agentic paradigms are turning "how many retrieval steps and which strategies" into learnable objects. 2. Data: High-quality instruction data is as critical as click/session logs; 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. Productization: Latency, cost, explainability, and safety are hard industrial constraints that cannot be ignored in favor of academic benchmarks.

    Research Gaps and Future Directions

    The authors identify several gaps: lack of unified benchmarks, irreproducible private data, LLM evaluation bias, and safety/cost constraints for agentic systems. Future work includes finer-grained process supervision, joint retrieval-reasoning training, enterprise metadata governance, and multimodal / cross-lingual consistency.

    Limitations

    Possible limitations include GPU-budget-constrained experiment scale, distribution mismatch between benchmarks and real users, English-centric data limiting cross-lingual generalization, and safety risks when agentic systems operate over the open web. Future avenues include more efficient test-time compute allocation, deeper integration with knowledge graphs and structured databases, and causality- and fairness-aware recommendation constraints.

    Cross-References

  • A Comprehensive Review on Harnessing Large Language Models to Overcome…
  • A Comprehensive Survey on Cross-Domain Recommendation: Taxonomy, Progress…
  • A Comprehensive Survey on Retrieval Methods in Recommender Systems…
  • A Review of Modern Recommender Systems Using Generative Models (Gen-RecSys)
  • A Survey of Generative Search and Recommendation in the Era of Large Language Models
  • A Survey on LLM-powered Agents for Recommender Systems, Feb 2025
  • Engineering Deployment Checklist

    | Check | Question | Recommendation | |-------|----------|----------------| | Data | Does training/indexing contain PII? How are versions managed? | Partitioned indexes, de-identification, rollback-capable embedding versions | | Latency | What is the p99 budget? How many retrieval steps? | Cascading with early stopping, hot-query caching, asynchronous reranking | | Quality | Does offline gain translate to online CTR/satisfaction? | Interleaving, manual sample audits, citation checks | | Safety | Does open retrieval introduce poisoning or bias? | Source allowlists, adversarial detection, output filtering | | Cost | What is per-query token and GPU footprint? | Model routing, sparse+dense hybrid, distillation |

    Original English Abstract

    > The paper underscores the significance of Large Language Models (LLMs) in reshaping recommender systems, attributing their value to unique reasoning abilities absent in traditional recommenders. Unlike conventional systems lacking direct user interaction data, LLMs exhibit exceptional proficiency in recommending items, showcasing their adeptness in comprehending intricacies of language. This marks a fundamental paradigm shift in the realm of recommendations. Amidst the dynamic research landscape, researchers actively harness the language comprehension and generation capabilities of LLMs to redefine the foundations of recommendation tasks. The investigation thoroughly explores the inherent strengths of LLMs within recommendation frameworks, encompassing nuanced contextual comprehension, seamless transitions across diverse domains, adoption of unified approaches, holistic learning strategies leveraging shared data reservoirs, transparent decision-making, and iterative improvements. Despite their transformative potential, challenges persist, including sensitivity to input prompts, occasional misinterpretations, and unforeseen recommendations, necessitating continuous refinement and evolution in LLM-driven recommender systems.

    Glossary

  • IR: Information Retrieval
  • RAG: Retrieval-Augmented Generation
  • LTR: Learning to Rank
  • nDCG: Normalized Discounted Cumulative Gain
  • Agentic Search: Search modeled as sequential decision-making with tool use
  • Gen-IR: Generative Information Retrieval

Tags

#large-language-models#recommender-systems#survey#retrieval-augmented-generation#agentic-search#generative-ir#evaluation#open-challenges

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/178208901