Multi-turn LLM agents solve tasks by repeatedly observing the environment, generating
actions, and appending the resulting interaction history to the next prompt. This
design gives the model useful feedback for exploitation, but it also changes the role
of context: previous assistant outputs can start to look like few-shot demonstrations
written by the model itself.
We find that longer histories do not always help. Agent performance can degrade at
moderate context lengths that remain far below modern model capacity limits. Attention
analysis suggests a concrete mechanism behind this degradation: models increasingly
attend to their own previous responses, especially along token-aligned diagonal
patterns, and become biased toward repeating earlier behavior.
We call this failure mode conversational inertia. It appears as strong
diagonal attention to previous assistant responses and can make the model reproduce the
structure of earlier actions instead of adapting to new observations. This motivates our
two complementary mitigations: Context Preference Learning and Clip Context.