SYNTHESIS NOTE
TopicsMemorythis note

Can agents learn continuously from experience without updating weights?

This explores whether LLM agents can adapt to new tasks and failures by retrieving past experiences from memory alone, rather than requiring expensive parameter fine-tuning or rigid hardcoded rules.

Synthesis note · 2026-02-23 · sourced from Memory
How should we spend compute at inference time? What kind of thing is an LLM really? How do you navigate synthesis across fragmented research topics?

AgentFly addresses a central challenge: LLM agents either follow rigid hardcoded workflows (inflexible) or require parameter fine-tuning (expensive, impractical for continual adaptation). The alternative: learn continuously through memory, not weight updates.

The formalization is a Memory-augmented Markov Decision Process (M-MDP). The agent stores past trajectories as episodic traces — including both successes and failures — and retrieves similar past experiences to guide current decision-making. This aligns with case-based reasoning (CBR), a psychologically grounded learning strategy: humans often solve problems by recalling analogous past situations.

Three memory modules serve distinct functions:

  1. Case Memory — vectorized storage of prior task trajectories (task, plan, success/failure label). Supports retrieval via similarity-based search or an online-updating Q-function. This is the strategic memory: which approaches worked for which kinds of problems.

  2. Subtask Memory — text-based storage of active subtasks and their execution results. Orchestrates the planner-executor interaction within a single task. This is the working memory: what's being done right now.

  3. Tool Memory — text-based logs of tool interactions scoped per subtask. Records what tools were used, what they returned. This is the procedural memory: how specific operations were executed.

The learning mechanism: credit assignment happens via memory rewriting (updating case labels and Q-values based on outcome), and policy improvement happens via memory reading (retrieving relevant cases that shift the planning distribution). No gradient updates to the LLM — the LLM is a fixed reasoning engine, and adaptation happens entirely through what's retrieved into its context.

The result: top-1 on GAIA validation (87.88% Pass@3) and 79.40% on the test set, in the deep research setting.

Since Can agents learn from failure without updating their weights?, AgentFly provides the formal RL framework for this intuition: the M-MDP formalization shows how credit assignment and policy improvement can operate entirely through memory operations. The Q-function over cases provides a principled retrieval policy that improves with experience, rather than relying on static similarity-based retrieval.

Reweave 2026-05-18 — memory-vs-fine-tuning is not binary; the right architecture is dual-timescale. AgentFly's original framing positioned memory-based adaptation as the alternative to fine-tuning — choose one. Late-2025 evidence reframes this as a false dichotomy. Can agents adapt without pausing service to users? shows that production systems can have BOTH: memory-based adaptation on the fast timescale (zero downtime) AND LoRA fine-tuning during user-inactive windows (no service interruption). MetaClaw's OMLS scheduler monitors sleep hours, keyboard inactivity, and calendar occupancy to identify safe windows for weight updates.

The implication for AgentFly's design: its case bank addresses the fast-timescale adaptation problem, but the underlying LLM policy weights remain static — meaning failures that require new capabilities (not just new cases) cannot be resolved by case-based retrieval alone. A dual-timescale architecture would extend AgentFly with idle-window fine-tuning over the accumulated case bank as training data. The case bank becomes both the working memory (fast retrieval) AND the training dataset (slow weight updates). This is what Does agent memory degrade when continuously consolidated? also points toward — the right architecture preserves raw cases as first-class evidence but uses them deliberately for both retrieval and training, with explicit gating.

The corollary: when memory-based RL is presented as "no fine-tuning needed," that framing is correct for the deployment cost story but incomplete for the capability story. Fine-tuning during idle windows is essentially free in production cost terms, and addresses what memory-only systems cannot.

Inquiring lines that read this note 132

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 do aggregate reward models systematically exclude minority user preferences? What memory abstraction level best enables agent knowledge reuse? How should we design LLM systems to maintain alignment and control? What memory architectures best support persistent reasoning across extended interactions? How should agents balance memory condensation to optimize context efficiency? How do multi-agent systems achieve genuine cooperation and reasoning? Why do continual learning scenarios trigger catastrophic forgetting and interference? How should models express uncertainty rather than forced confident answers? How can AI agents autonomously learn and transfer skills across tasks? Does self-reflection enable models to reliably correct their errors? How should memory consolidation strategies shape agent performance over time? How does AI adoption affect human skill development and labor equality? Can alternative training methods improve on supervised fine-tuning for language models? What coordination failures limit multi-agent LLM systems as they scale? Does externalizing cognitive work and state improve agent reliability? Does fine-tuning modify underlying model capabilities or only behavioral outputs? How can conversational AI maintain consistent personas across conversations? Can AI-generated outputs constitute genuine knowledge or valid claims? Do language models develop causal world models or rely on statistical patterns? How do LLMs distinguish causal reasoning from temporal and semantic associations? How should iterative research systems allocate reasoning per search step? Can AI systems develop genuine social understanding without embodiment? What makes weaker teacher models effective for stronger student training? How do training priors constrain what context information can override? How does policy entropy collapse constrain reasoning-focused reinforcement learning? Why do reward structures fail to shape long-term agent learning? Why does finetuning cause catastrophic forgetting of model capabilities? Why do reasoning models fail at systematic problem-solving and search? Why do agents confidently report success despite actually failing tasks? Why do benchmark improvements fail to reflect actual reasoning quality? How do prompt structure and constraints affect model instruction reliability? What pretraining choices and baseline capability constrain reinforcement learning gains? Why does consolidated memory sometimes degrade agent performance? What drives capability and cost efficiency in agent systems? How should conversational agents balance goal-driven initiative with user control? Does reinforcement learning teach reasoning or just when to reason? How does test-time aggregation affect reasoning correctness and reliability? How does AI assistance affect human cognitive development and reasoning autonomy? How should systems govern persistent agent-generated code in shared infrastructure? Why do self-improving systems struggle without clear external performance metrics? How do self-generated feedback mechanisms enable effective model learning? Do harness improvements transfer across model scales or memorize shortcuts?

Related concepts in this collection 9

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

Concept map
18 direct connections · 108 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-based online reinforcement learning enables continual agent adaptation without fine-tuning through episodic case-based reasoning