Why do LLM agents remember preferences but not act on them?
Research using paired recall and behavioral tests explores why language models often retrieve user preferences correctly yet fail to apply them in actual responses, especially for health-related requests.
The paper separates two things that memory benchmarks usually run together. It administers "paired Know and Act tests to the same user preference": a recall test, and a behavioral scenario where that preference should shape the response. Across 16 systems, five memory architectures, and 1,000 preferences embedded at three levels of expression strength, the authors report "a large gap between Know and Act outcomes." Agents "often pass the recall test" but "fail to reflect that same preference in the paired behavioral scenario." Memory architectures reduce the gap without closing it, and utilization "remains especially weak for health and therapy-related preferences," which the authors flag as the cases where failing to act carries the greatest real-world stakes.
The paper's name for the underlying problem is a "knowledge utilization problem": a model may fail to act on a preference "even when [it is] fully present in context." When a response is not tailored, an evaluator cannot tell whether the model failed to remember or remembered and failed to use, and the paired design exists to tell those apart. The failure attribution in the conclusion then splits the errors into three stages, retrieval, comprehension, and application, and reports that "comprehension failures dominate overall." On this account the bottleneck is less about getting the preference into context than about interpreting what it means for the present request. The authors conclude that personalization systems should ensure memories are "selectively retrieved, correctly interpreted, and reliably translated into context-appropriate behavior."
This sits close to Why do LLM agents ignore condensed experience summaries?, which also finds that information available to an agent does not reliably change what it does. What this paper adds is a design that isolates the point of loss: same preference, two tests, so recall accuracy and behavioral uptake can be compared directly. It also extends the argument in How should we actually evaluate agent memory systems? by adding a stage after retrieval, where stored content has to be applied. And it qualifies Does retrieved memory quality depend on its functional role?: getting the right memory retrieved is necessary, but the response can still ignore it. The reduction the paper reports from memory architectures should not be read against Do memory systems actually help language models learn continuously?, since the excerpt does not say which architectures narrow the gap or how they compare with the long-context baselines it also evaluates.
The excerpt is silent on most of what would make the result actionable: how large the Know-Act gap is in numbers, how it moves across the three expression levels beyond "varies," which architectures help most, how comprehension failure was operationalized, and what share of errors falls in each of the three stages beyond comprehension being the largest. It also does not say whether health and emotional preferences are harder to interpret or simply harder to translate into behavior. What it does support is narrower and still useful: a passing recall score is not evidence that a personalized agent will act on what it recalled, so behavioral tests belong beside recall tests, with particular care in health and therapy contexts.
Inquiring lines that read this note 6
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
Can preference-based training achieve better behavior optimization than supervised fine-tuning alone? Does abstract user knowledge outperform concrete interaction history in personalization? How should agents manage memory granularity to improve long-term performance? Do language models reason like humans or mimic surface patterns?Related concepts in this collection 4
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Why do LLM agents ignore condensed experience summaries?
LLM agents faithfully learn from raw experience but systematically disregard condensed summaries of the same experience. This study investigates whether the problem lies in how summaries are made, how models process them, or whether models simply don't need them.
parallel finding that available experience fails to change behavior; this paper adds a paired recall-versus-action design
-
How should we actually evaluate agent memory systems?
Current benchmarks score agent memory by task success alone, hiding critical design questions about cost, trade-offs, and robustness. What would evaluation reveal if we decomposed memory into its core data-management stages?
decomposition argument extended by a post-retrieval application stage
-
Does retrieved memory quality depend on its functional role?
Conversational RAG systems retrieve context to improve responses, but does the *type* of memory matter as much as its relevance score? This explores whether different memory roles (clarifying vs. irrelevant) drive response quality differently.
retrieval of the right memory is necessary but here does not guarantee the response uses it
-
Do memory systems actually help language models learn continuously?
When you subtract what a model already knows, do dedicated memory architectures genuinely enable continual learning, or do they mainly inherit base capability? CL-BENCH isolates learning from prior skill to test this.
contrast in scope; the excerpt's architecture-reduces-gap claim is not comparable to that stateless-baseline result
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Know It, Act on It: Investigating Memory Utilization in LLM Personalization
- Memory is Reconstructed, Not Retrieved: Graph Memory for LLM Agents
- Harness-1: Reinforcement Learning for Search Agents with State-Externalizing Harnesses
- Toward Conversational Agents with Context and Time Sensitive Long-term Memory
- Useful Memories Become Faulty When Continuously Updated by LLMs
- Keep It InMind: Benchmarking the Implicit-Association Blind Spot in Agent Memory
- A Looming Replication Crisis in Evaluating Behavior in Language Models? Evidence and Solutions
- AgentFly: Fine-tuning LLM Agents without Fine-tuning LLMs
Original note title
LLM agents often recall a user preference but fail to act on it — utilization is especially weak for health and therapy preferences