Conversational AI Systems Recommender Systems Language Understanding and Pragmatics

Can language models bridge the gap between critique and preference?

When users express what they dislike rather than what they want, can LLMs reliably transform those critiques into positive preferences that retrieval systems can actually use?

Note · 2026-05-03 · sourced from Recommenders Conversational
What breaks when specialized AI models reach real users? Why do LLMs fail at understanding what remains unsaid?

In conversational recommendation people often state preferences as critiques of the current candidate rather than as positive descriptions of what they want. "It doesn't look good for a date" tells you something the user wants — a date-suitable place — but expressed as the negation of a property of the current option. Conventional retrieval systems can't directly act on critiques because their indexes match positive descriptors of items, not negations of properties.

The proposal is to use a large neural language model in few-shot mode to transform the critique into a positive preference. "It doesn't look good for a date" becomes "I prefer more romantic." The transformed preference is then used to retrieve reviews that mention the matching positive aspect — "Perfect for a romantic dinner" becomes a candidate review.

This works because LLMs can perform the common-sense inference required to convert a negation into a preference: knowing that "good for a date" implies "romantic" or "intimate," that the negation of one suggests the affirmation of an opposite, and that the relevant aspects to surface depend on the domain. Few-shot prompting with examples is enough to elicit this transformation; no fine-tuning is required.

The architectural pattern is general: when user feedback is naturally expressed in a form the indexing system can't consume, use an LLM as a translator between the feedback and the index's vocabulary. The LLM doesn't need to be the recommender — it just needs to bridge the linguistic gap between user expression and retrieval representation. This separates the conversational interface from the retrieval infrastructure cleanly, which means the retrieval can stay efficient (review embeddings) while the interface becomes natural.


Source: Recommenders Conversational

Related concepts in this collection

Concept map
15 direct connections · 119 in 2-hop network ·medium cluster

Click a node to walk · click center to open · click Open full network for a force-directed map

your link semantically near linked from elsewhere
Original note title

critique-to-preference transformation enables retrieving better recommendations from natural negative feedback