SYNTHESIS NOTE
Recommender Systems

How should language models integrate into recommender systems?

When building recommendation systems with LLMs, should you use them as feature encoders, token generators, or direct recommenders? The choice affects efficiency, bias, and compatibility with existing pipelines.

Synthesis note · 2026-05-03 · sourced from Recommenders General
What breaks when specialized AI models reach real users?

The Wu et al. survey of LLM-based recommendation organizes the field into three paradigms with distinct architectures and trade-offs.

LLM Embeddings + RS treats the language model as a feature extractor. Item and user features feed into the LLM, which outputs corresponding embeddings. A traditional recommender model consumes these knowledge-aware embeddings for recommendation tasks. The LLM doesn't make recommendations; it enriches representations.

LLM Tokens + RS goes a step further. The LLM generates semantic tokens based on item and user features. These tokens capture preferences through semantic mining and feed into the decision-making of a recommendation system. Tokens are denser than full embeddings and easier to integrate into existing pipelines.

LLM as RS is the direct paradigm. The pre-trained LLM is transferred into a recommendation system, with input sequences containing profile descriptions, behavior prompts, and task instructions. The LLM directly outputs recommendations. This is the most ambitious paradigm and faces challenges around position bias, popularity bias, and fairness bias inherent to language models.

The three paradigms differ in efficiency, latency, and how much they leverage existing recommendation infrastructure. Embeddings are most compatible with existing pipelines but underuse LLM capability. Direct LLM-as-RS maximizes LLM use but introduces LLM-specific biases and latency. Tokens are an intermediate point. Choice depends on what the deployment can tolerate — production latency, existing pipeline investment, and tolerance for LLM-specific biases all factor in.

The survey's framing is methodologically useful: rather than treating "LLM-based recommendation" as one thing, naming the three paradigms clarifies which problems different research efforts are actually solving.

Inquiring lines that use this note as a source 6

This note is a source for these synthesized inquiries. Follow a line forward into its question, or open it to trace back to all of its sources.

Related concepts in this collection 5

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
13 direct connections · 62 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

LLM as recommender has three integration paradigms — embeddings tokens or directly as the recommendation system