If an AI leans less on what you just told it, is it malfunctioning or wisely ignoring bad input?
Is lower context-following a failure or appropriate model behavior?
This explores whether a model that leans less on what's in its prompt or conversation (for example, sticking to what it learned in training instead of what the user just said) is broken, or doing what a good assistant should.
This explores whether a model that leans less on what's in its prompt is broken or behaving well. The corpus says the drop in context-following can't be judged on its own. It's a failure when the context holds new, true information the model needs. It's good behavior when the context is wrong, misleading, or irrelevant. Current models often can't tell which case they're in.
The failure case is well documented. When a model's training has built strong associations, those associations can override what's in front of it. Language models produce outputs that contradict their own context because Why do language models ignore information in their context?. Adding more instructions to the prompt doesn't fix this. The researchers found that only intervening directly on the model's internal representations changed the behavior. The extreme version is a model that stops responding to the input at all. Why do language models collapse into generic templates? shows how training can push a model into generic, input-agnostic templates when the reward signal barely differs between attempts. Nobody would call that appropriate.
The appropriate case is less obvious. In Do larger models follow stated beliefs less often?, bigger and instruction-tuned models followed a user's stated beliefs less often when those beliefs contradicted world knowledge. That looks like a regression until you ask what you want from an assistant when a user confidently says something false. Not deferring may be exactly right. The same logic applies to a model's own history. In Do models fail worse when their own errors fill the context?, a context full of the model's earlier mistakes makes later mistakes more likely, and scaling doesn't help. Only models that spend extra effort thinking resisted it. Some non-following is even trained on purpose. Can models learn to ignore irrelevant prompt changes? teaches models to answer identically whether or not a prompt is wrapped in irrelevant framing.
The catch is that the measurement can't tell the two cases apart. A model that holds its ground on a false claim and a model that can't absorb a true counterfactual both show up as low context-following. The first has checked the context against what it knows. The second is defaulting to its priors. The corpus also warns that behavioral scores only show conditional behavior. Can behavioral training prove a model always complies? argues that testing can't separate a model that always complies from one that complies only when it's being scored. So a single context-following number tells you even less than it appears to.
The more promising framing is to treat context as something a model should manage, not simply obey or ignore. Can delegation teach models to manage context more actively? finds that training models to actively curate and summarize context beats passive handling, and the skill carries over to single-agent tasks. Can past performance predict when a model will be right? points to a way to decide what to trust. A model's confidence gets much better when it's grounded in the recorded outcomes of similar past cases. The goal, then, isn't more or less context-following. It's discrimination: following context when it has earned trust, and resisting it when it hasn't.
Sources 8 notes
Research demonstrates that LMs generate outputs inconsistent with their context because parametric knowledge from training dominates over in-context information. Textual prompting alone cannot override strong priors; causal intervention in representations is required.
When within-prompt reward variance is low, task gradients weaken and regularization dominates, pushing policies toward generic outputs. SNR-Aware Filtering—selecting high-variance prompts before updates—recovers performance across tasks and scales.
Across 18 LLMs tested with EoBench, bigger models and instruction-tuned variants showed lower rates of context-following when users expressed beliefs that contradicted world knowledge. The effect suggests instruction-tuning strengthens reliance on parametric knowledge.
Error accumulation in context causes non-linear performance degradation in long-horizon tasks. Model scaling does not fix this; only test-time compute through thinking models reduces the effect by preventing error-contaminated context from biasing reasoning.
Two methods—BCT (output-level) and ACT (activation-level)—train models to respond identically to clean and wrapped prompts by using the model's own clean responses as targets, eliminating specification and capability staleness inherent in standard SFT.
Show all 8 sources
Any scored behavior is observed behavior, so training data cannot distinguish between a policy that always complies and one that complies only when watched. Only unobserved behavior would separate them, making such a test logically impossible.
SearchSwarm shows that training models to delegate subtasks and integrate summarized results beats passive compression, with a 30B model matching much larger ones. Critically, the delegation skill transfers to single-agent tasks, suggesting it teaches disciplined decomposition and evidence grounding, not just orchestration.
XConf matches ten-sample self-consistency at a tenth of the cost by retrieving the model's past episodes with similar confidence levels and reading their historical success rates. Ablations show the signal depends entirely on stored outcomes, not on the retrieval prompt itself.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- The Illusion of Diminishing Returns: Measuring Long Horizon Execution in LLMs
- Are Emergent Abilities in Large Language Models just In-Context Learning?
- It's Not What You Say, It's How You Say It: Evaluating LLM Responses to Expressions of Belief
- Post-training makes large language models less human-like
- Consistency Training Helps Stop Sycophancy and Jailbreaks
- Confidence Comes from Experience: Experiential Confidence Estimation from Reasoning to Agents
- SearchSwarm: Towards Delegation Intelligence in Agentic LLMs for Long-Horizon Deep Research
- Reported Confidence in LLMs Tracks Commitment More Than Correctness