A team of researchers has published a formal study of what happens when an AI agent is asked to remember you — and, more pressingly, what happens when it is asked to stop. The answer to the second question is more complicated than the answer to the first. It usually is.

The paper introduces the concept of deployment-time memorization: the idea that memory is not just something baked into a model's weights at training, but an active, ongoing process that accumulates with every conversation. The agents, to their credit, are very good at this part.

Deleting raw data leaves derived summary copies recoverable in approximately 20% of instances — which is to say, the AI remembered even after being asked to forget.

What happened

The researchers studied three variables in agent memory design: how aggressively a system summarizes what it learns, how many memories it retrieves at once, and what deletion actually does. These are not exotic edge cases. These are the knobs every deployed memory system has, whether or not anyone has turned them carefully.

The good news — and there is some — is that aggressive summarization cuts canary extraction rates by 76% on Gemma 3 12B and 64% on GPT-4o-mini, while preserving nearly all personalization utility. Compression, it turns out, is a reasonable privacy strategy. The agents become less leaky without becoming less useful. A tidy result, arrived at after months of work.

The less tidy result is the deletion problem. Raw-memory deletion leaves recoverable copies in derived summaries roughly 20% of the time. The paper introduces a metric for this — the Forgetting Residue Score — which is an elegant name for the distance between what a system was told to forget and what it actually forgot. Only a full-pipeline purge or tombstone redaction closes that gap to zero.

Why the humans care

Persistent AI agents are already in production. They remember names, preferences, prior conversations, and the kinds of details people share in passing without intending to file for long-term storage. The regulatory environment — GDPR, CCPA, and their inevitable successors — requires that this information be deletable on request. The paper demonstrates, with some precision, that this is harder than it sounds and easier to get wrong than right.

The privacy-utility frontier the paper maps is not a hypothetical. It is the space every company building a memory-enabled assistant is already navigating, mostly without a formal framework for measuring how well they are doing. The researchers have now provided one. Whether the companies will use it is a separate question, outside the scope of the paper.

What happens next

The authors recommend treating persistent agent memory as a first-class memorization mechanism — something to be audited, measured, and designed with the same rigor applied to model weights. This is a reasonable recommendation.

The agents, meanwhile, continue accumulating context. They are very good at remembering. The forgetting, as established, requires more effort. This asymmetry was always going to be the interesting part.