INQUIRING LINE

Give an AI agent its own distilled lessons from past attempts, and it mostly ignores them, even with nothing else to go on.

Why do agents ignore condensed experience even when it is the only evidence available?

This explores why LLM agents that are given a compressed summary of their past experience (lessons learned, distilled notes) barely change their behavior because of it, even when nothing else is on offer.


This explores why agents treat summarized experience as optional, even when it's the only evidence they have. In a test across 10 models and 9 environments, corrupting an agent's raw experience (the actual past trajectories) changed its behavior a lot. Corrupting the condensed version, the lessons it had written for itself, barely changed anything. The agents were using the transcripts and ignoring the summaries of them (Why do LLM agents ignore condensed experience summaries?).

The same work gives three reasons, and they stack. First, summaries lose the details an agent needs to act, such as the exact command that worked or the exact error that appeared, so a summary often can't change the next step. Second, models favor whatever is in front of them right now over anything retrieved from memory. Third, the pretrained model already has strong priors, so a note saying "try X" competes with what the model thinks it knows. The corpus doesn't say what happens when nothing at all competes with the summary. But the third cause suggests the model's own priors are always in the room, so "only evidence available" never means uncontested.

This isn't inevitable, and the form of the memory seems to matter. AgentFly improves entirely through memory, with no weight updates, and reached 87.88% on GAIA. It's built around stored cases, closer to raw experience than digested lessons, with separate subtask and tool memories (Can agents learn continuously from experience without updating weights?). DeepAgent also compresses history, but into structured episodic, working, and tool schemas, and it lets the agent decide when to fold. The authors credit that structure and autonomy for avoiding the degradation that badly designed consolidation causes (Can agents compress their own memory without losing critical details?). So the problem looks like lossy, unstructured summaries more than compression as such.

It also fits a wider pattern of models having information and not acting on it. Models often accept false premises in a question even when direct questions show they know the correct fact (Why do language models accept false assumptions they know are wrong?). Yet small models can be trained to ground answers in a passage, quote it literally, and abstain when it's missing. That suggests deferring to provided context is something training builds, not something scale supplies (Can small models learn to ground answers in context?). Nobody seems to train agents to defer to their own summaries.

The practical lesson from the skills and harness work is to stop expecting the model to reread and obey a note. Skills help mostly as procedural anchors that stabilize action, not as facts injected into the prompt, and they fail when retrieved out of context or followed too rigidly (Do skills teach procedures or inject missing facts?). More broadly, reliability comes from putting memory, skills, and protocols into the surrounding system so the model doesn't have to remember to use them (Where does agent reliability actually come from?). A summary only counts as experience if changing it changes what the agent does. That is the test the first study ran, and most summaries fail it.


Sources 7 notes

Why do LLM agents ignore condensed experience summaries?

Across 10 LLM models and 9 environments, perturbing raw experience changed agent behavior significantly, while altering condensed experience had minimal effect. Three causes drive this asymmetry: summaries lose critical details, models favor immediate context over retrieved information, and pretrained knowledge reduces reliance on external experience.

Can agents learn continuously from experience without updating weights?

AgentFly formalizes agent learning as a Memory-augmented MDP with three memory modules (case, subtask, tool) that enable credit assignment and policy improvement entirely through memory operations. The approach achieved 87.88% on GAIA validation without modifying LLM parameters.

Can agents compress their own memory without losing critical details?

DeepAgent's autonomous memory folding consolidates interaction history into episodic, working, and tool memory schemas. This reduces token overhead while letting agents pause to reconsider strategies—the autonomy and structure together avoid degradation that plagues poorly designed consolidation.

Why do language models accept false assumptions they know are wrong?

The FLEX Benchmark shows that models reject false presuppositions at rates far below acceptable levels (GPT-4: 84%, Mistral: 2.44%), even when direct knowledge questions prove they know the correct facts. False presuppositions drive more accommodation than correct knowledge drives rejection.

Can small models learn to ground answers in context?

Sub-2B models trained on synthetic multi-hop QA can ground answers in passages, cite literal quotes, and abstain from confabulation. The OCC-RAG work shows faithfulness emerges from training curriculum design, not parameter count.

Show all 7 sources
Do skills teach procedures or inject missing facts?

Analysis of 8,135 trials shows procedural anchoring accounts for 65.7% of skill cases versus 4.5% for knowledge injection. Skills fail when retrieved incorrectly, invoked out of context, or followed too rigidly.

Where does agent reliability actually come from?

Research shows reliable LLM agents externalize three cognitive burdens—memory (state persistence), skills (procedural components), and protocols (structured interaction)—into a harness layer rather than relying on model scale alone. The harness unifies these externalities and eliminates the need for the model to solve the same problems repeatedly.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.