SYNTHESIS NOTE
Topics›Memory›this note

Should agent memory live inside the model backbone?

Can foundation models improve memory by internalizing persistent memory states and procedures, rather than relying on external modules? This explores whether the asymmetry between internalized perception and external memory represents a real architectural limitation.

Synthesis note · 2026-09-25 · sourced from Memory

The Metis paper starts from an asymmetry: agent capabilities such as multimodal perception and reasoning have been "internalized" into foundation models, yet "agent memory is still primarily implemented through external modules." It proposes memory foundation models to close that gap and defines native memory in two parts. The first is "a persistent and dynamically evolving memory state within the backbone." The second is "native memory procedures that autonomously store and utilize information through model computation." The paper says this offers advantages in architecture, end-to-end optimization, and efficiency, and presents Metis as "the first prototype."

The reasoning in the introduction is a decoupling argument. External memory is "decoupled from backbones with separated targets and processing stages": the memory system builds an informative context, and the backbone then performs conditional language modeling over whatever it was handed. Two failures follow. The memory may not supply what the backbone needs, and the backbone may not use the memory optimally, because neither side is trained against the other's behavior. Metis answers with a different architecture. "Metis blocks" combine local memory blocks and hyper memory blocks, keeping "compact dense memory states across interaction steps" and updating them from the current input and the generated response. History is compressed into the model and read through memory attention. The store-and-use procedures are acquired in mid-training, using a memory-specific dataset built from public benchmarks and three kinds of objective (memory reconstruction, memory operation, regularization).

This sits close to Can neural memory modules scale language models beyond attention limits?, which also puts a compressed, persistent memory inside the network and reads it alongside attention. The difference in emphasis is that Metis treats memory as a capability class the model acquires through training, comparable to reasoning, and not only as an architectural component for long context. It also reframes what How should we actually evaluate agent memory systems? describes. In an external system those four stages are separable modules that can be inspected. In a native design they fold into model computation, so the decomposition that note recommends has no obvious place to attach. The failure modes in Do memory systems actually help language models learn continuously? and Does agent memory degrade when continuously consolidated? belong to external, text-consolidating memory. Native memory is a candidate response to them, but only in the sense that it removes the hand-off the introduction criticizes.

The excerpt does not establish the payoff. It says experiments "verify the effectiveness of Metis" and analyze its behavior, but it gives no benchmarks, baselines, model sizes, memory capacity, or numbers. It also says nothing about how a compressed memory state handles stale or wrong content, and it calls Metis "an early step." The introduction passage shows only the first of the "several limitations" of external memory that its Figure 1 lists. What the paper supports at this strength is a formulation and a prototype design: the decoupling between memory and backbone is a specific, nameable cost of external memory, and end-to-end training is the proposed remedy. Whether that remedy beats external memory on the tasks where external memory fails is left to the full paper and to later work.

Inquiring lines that read this note 15

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.

How should agents manage memory granularity to improve long-term performance? How does harness optimization generalize across different model architectures and domains? Why does adding new knowledge through fine-tuning degrade existing capabilities? Can prompt-based context override biases that were embedded during pretraining? Can memory architectures handle ultra-long context better than attention? Why does memory consolidation cause performance regression in continual learning?

Related concepts in this collection 6

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

Concept map
12 direct connections · 98 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

memory foundation models put a native memory state and native memory procedures inside the backbone instead of leaving agent memory to external modules