SYNTHESIS NOTE
Recommender Systems

Does LLM input augmentation beat direct LLM recommendation?

Can LLMs enrich item descriptions more effectively than making recommendations directly? This explores whether specialized models work better when LLMs focus on what they do best: content understanding rather than ranking.

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

Two paradigms exist for incorporating LLMs into recommender systems. The first uses LLMs as recommenders directly: build a prompt with task description, user profile, item attributes, and user-item history, ask the LLM to predict interaction probability. The second uses LLMs as input augmenters: use them to enrich item descriptions, then feed the enriched descriptions to a conventional recommender model.

LLM-Rec investigates the second paradigm with three prompt types. P1 instructs the LLM to paraphrase the original content, preserving information without adding new details. P2 instructs the LLM to summarize content with tags, generating a more concise overview. P3 instructs the LLM to deduce content characteristics and provide categorical responses at a coarser granularity than the original.

Combining the original description with the augmented texts from these prompts improves recommendation performance over either the original alone or the LLM-as-recommender approach. The mechanism: each prompt extracts a different aspect of the item that the LLM "knows" from pretraining (paraphrase preserves content but normalizes phrasing; tags compress to discriminative attributes; categories provide hierarchy). The augmented input enriches the recommender's representation without subjecting it to the LLM's recommendation-task biases.

The methodological lesson is to ask which problems an LLM is good at versus what you need for your task. LLMs are excellent at content understanding (paraphrase, summarization, categorization). They are not specialized recommenders. Letting the LLM do what it's good at — generate enriched textual features — and letting a specialized model do recommendation often beats trying to make the LLM do everything.

Inquiring lines that use this note as a source 17

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 4

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

Concept map
13 direct connections · 64 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-Rec input augmentation outperforms LLM-as-recommender — content prompting for paraphrase summary and category labels enriches representation