Decoding Discontinuity

Decoding Discontinuity

Memento: The Memory Architecture Ushering in AI's Agentic Discontinuity

The birth of "execution data" as a new strategic asset in the Agentic Era.

Raphaëlle d'Ornano's avatar
Raphaëlle d'Ornano
Sep 02, 2025
∙ Paid
Credit: Beku Kanomi

Last week, researchers from UCL's Centre for Artificial Intelligence and Huawei Noah's Ark Lab published Memento, a framework demonstrating that agents can achieve state-of-the-art performance through sophisticated external memory without fine-tuning the underlying language model. This methodology achieved remarkable benchmarks — all while using 50-80% fewer computational resources than traditional fine-tuning approaches. Here's why this matters for the future of Agentic AI.

As we continue to watch progress on Agentic AI, a key question has haunted the recent development of AI agents: How should they learn from experience?

Traditional approaches fall short. Pre-training on massive datasets produces static knowledge frozen at deployment. Human feedback loops bottleneck on scarce annotation resources. What AI agents actually require is something more organic: the ability to remember, reflect, and improve from their own interactions with the world.

This question strikes at the heart of what distinguishes true agents from sophisticated automation.

As I detailed in "Agentic Era Part 4", we're transitioning from applications that enhance human productivity to "Synthetic Colleagues." These systems can replace entire organizational functions and assume responsibility for complete workflows.

Yet, without memory, these agents are like Leonard Shelby, the main character in Christopher Nolan's film “Memento,” who suffers from anterograde amnesia —a condition that prevents him from forming new long-term memories after a head injury.

Extract from Memento (2000) - Christopher Nolan

Like poor Leonard, AI agents are capable of sophisticated reasoning within each interaction but are unable to build upon past experiences, condemned to repeat the same discoveries and mistakes in an endless loop.

The urgency of solving this memory challenge has intensified. As I wrote in last December's newsletter, Microsoft CEO Satya Nadella had warned at the time that "SaaS business applications could collapse in the Agent era." He was sending a strong signal that AI agents were not iterating on existing software paradigms, but were instead replacing them entirely. Now, months later, the debate on software's future rages on. Yet the answers (and even the questions) fail to address the critical issues. One of them is how agents learn and improve after deployment.

The companies that survive this transition will be those that build what I call a "Durable Growth Moat," combining strong fundamentals with adaptive capacity that turns disruption into advantage.

By demonstrating that agents can achieve state-of-the-art performance by augmenting them with sophisticated external memory and not just by enhancing the underlying language model, the Memento research introduces what I qualify as a true Discontinuity, not mere disruption or innovation, but a fundamental break in established patterns of value creation.

As I argued in "What is Discontinuity?", generative AI goes beyond disruption because it requires us to conceive of what has not yet happened and imagine consequences that will be unleashed.

The shift from parameter-based to memory-based learning exemplifies this perfectly: it's not just a technical improvement but a restructuring of how AI systems accumulate and compound value over time, invalidating some of the core assumptions that have guided AI development since the transformer revolution.

The Anatomy of Agentic Memory

To understand why Memento signals a discontinuity, we must first examine what memory means in the context of autonomous agents.

As I explored in "The Great AI Discontinuity", we're witnessing the emergence of truly agentic AI systems that can "understand contexts, set their own sub-goals, and navigate complex decision trees without constant human guidance." But these systems face a critical limitation: without memory, they're sophisticated but static.

Memento's memory architecture isn't the static retrieval of RAG systems, which simply fetch relevant documents from a corpus. Nor is it the parametric memory embedded in model weights through training.

It's something qualitatively different: episodic, experiential, and evolutionary.

Episodic Structure: Beyond Information Retrieval

Traditional AI systems operate on declarative knowledge, such as facts, relationships, and patterns extracted from training data. When you ask GPT-4 about the capital of France, it retrieves this information from patterns encoded in its weights during training. This is analogous to semantic memory in humans, the general knowledge divorced from specific experiences.

Memento implements what cognitive scientists call episodic memory, which is the recording of specific experiences situated in time and context. Each interaction generates a complete trace: the initial problem state, the strategy employed, and whether it succeeded or failed. These aren't abstract patterns but concrete experiences with contextual details that make them retrievable and applicable.

Consider a coding agent attempting to fix a complex bug.

With parametric memory alone, it might know that null pointer exceptions require checking for uninitialized variables. With episodic memory, it remembers the specific instance where a similar bug in a React component was caused by an async state update, the exact sequence of debugging steps that revealed the issue, and the particular fix that resolved it. This specificity enables nuanced problem-solving that goes beyond pattern matching to genuine learning from experience.

Memento formalizes this through a Memory-augmented Markov Decision Process (M-MDP) - essentially a framework where agents maintain external memory banks containing tuples of past experiences (state, action, reward) that can be retrieved and adapted for future decisions.

Une image contenant ligne, diagramme, cercle, TracéLe contenu généré par l’IA peut être incorrect.A graphical model of memory-based Markov Decision Process
Figure 1. Extract from Memento - A graphical model of memory-based Markov Decision Process.

Learning no longer requires backpropagation through millions of parameters. New experiences are immediately available for future decisions. The agent can selectively forget outdated experiences without retraining.

Case-Based Reasoning: The Bridge Between Past and Present

This episodic foundation enables the second innovation: sophisticated case-based reasoning that mirrors human expertise.

The technical implementation employs a two-stage architecture:

The Planner's matching process operates across multiple dimensions simultaneously. It evaluates structural similarity - recognizing when a React state management issue mirrors the architecture of a past async Python bug, even if surface details differ completely. It checks contextual alignment, ensuring the constraints and resources match previous scenarios. It weighs outcomes, prioritizing approaches that succeeded over those that failed. And it factors in temporal relevance, giving recent experiences more weight than aging solutions that may no longer apply.

The Executor then transforms these insights into action, orchestrating everything from web searches to code execution. It writes rich annotations back to memory - exactly which API calls succeeded, what sequencing proved optimal, where bottlenecks emerged, and why certain approaches failed.

This transforms every execution into a teaching moment for future agents.

Share

Contrasting Paradigms: Memory vs. Parameters

The battle lines in agentic AI are now clearly drawn, and Memento’s success highlights what is at stake.

Traditional fine-tuning approaches - whether through LoRA (Low-Rank Adaptation, a parameter-efficient tuning method) adapters or RLHF (Reinforcement Learning from Human Feedback) - require you to alter the model's parameters. This is expensive: training even a modest adapter for a 70B parameter model routinely consumes hundreds of thousands in GPU costs. It’s also slow: each training cycle takes days or weeks, and the resulting model is frozen at that moment in time.

Memento demonstrates a very different path. By maintaining an external case bank that operates at runtime, it achieves 50-80% lower computational costs simply by eliminating gradient computation. There is no training pipeline, no model versioning, no careful rollout procedures: New experiences become available instantly. When an agent encounters a novel situation, that experience improves the next day’s performance without any retraining.

This is not just technical; it is also strategic. In the fine-tuning paradigm, the moat belongs to those with the most compute: OpenAI, Google, Anthropic. But with memory-augmented learning, the moat shifts to those with the best domain-specific experiences. A startup with deep expertise in legal contracts can build agents that outperform GPT-4 on contract analysis, not by outspending OpenAI on compute, but by accumulating and curating superior execution data. With Memento, the playing field could be radically leveled.

The Discontinuity: From Training-Time to Runtime Learning

This architectural shift from parameter-based to memory-based learning represents a true Discontinuity, invalidating assumptions about how AI creates and captures value. Three transformations illustrate the magnitude of this shift:

  • The Compute Arbitrage

Traditional fine-tuning approaches require substantial computational resources. As discussed above, training a LoRA adapter for a 70B parameter model is expensive.

But the real arbitrage isn't just in training costs. It's in the elimination of the training-deployment cycle entirely. When an agent encounters a novel situation on Tuesday, that experience is immediately available to improve Wednesday's performance. There's no model versioning, no A/B testing of different fine-tuning runs, no careful rollout procedures.

Learning happens continuously, at runtime, as a natural consequence of operation.

  • The Composability Revolution

Perhaps more significant than cost reduction is the newfound composability of learned behaviors.

In the parameter-update paradigm, combining the capabilities of two fine-tuned models is a complex research problem. You can't simply average their weights or concatenate their layers. Each model is a monolithic artifact, its knowledge entangled in millions of inscrutable parameters.

Memory-based learning enables modular composition. Different agents can share memory banks, selectively importing experiences relevant to their domains. A legal research agent can borrow negotiation strategies from a contracts agent without inheriting its specific case knowledge. Teams of agents can maintain hierarchical memories, local expertise rolling up to departmental knowledge pools.

This architecture enables what we might call swarm intelligence for AI agents.

Unlike traditional swarm systems that rely on simple rules to produce emergent behaviors, memory-augmented agent swarms share learned strategies and accumulated wisdom. Each agent contributes to and benefits from a collective intelligence that transcends individual capabilities. When one agent discovers a novel solution to a complex problem, that breakthrough immediately becomes available to the entire swarm—not as a parameter update requiring retraining, but as an accessible memory that can be retrieved, adapted, and refined by others.

This composability extends temporally as well. Organizations can checkpoint memory states, experiment with different learning strategies, and roll back if performance degrades. They can A/B test not different models but different memory curation strategies. They can even implement "memory inheritance" where new agents bootstrap from the accumulated experiences of their predecessors.

  • The Democratization of Continuous Learning

Most profoundly, Memento democratizes access to continuously learning systems. When adaptation required fine-tuning, only organizations with massive computational resources and ML expertise could build truly adaptive agents. OpenAI, Google, and Anthropic held structural advantages through their infrastructure and talent density.

Memory-augmented learning levels the playing field. A startup with access to GPT-4's API can build agents that outperform OpenAI's own implementations on specialized tasks. The moat is no longer compute or model access. Instead, it's the accumulation and curation of domain-specific experiences. This shifts competitive advantage from those with the most resources to those with the most insight into specific problem domains.

These technical advances point to something even more profound: the emergence of an entirely new asset class.

This post is for paid subscribers

Already a paid subscriber? Sign in
© 2026 Raphaëlle d'Ornano · Privacy ∙ Terms ∙ Collection notice
Start your SubstackGet the app
Substack is the home for great culture