Answer-Query Drift
Answer Doesn't Address the Actual Question
11 patterns for this goal
Answer synthesis fails when a model has the right retrieved context in front of it and still produces a wrong or misleading answer — drifting off the actual question, ignoring the context in favor of stale training data, cherry-picking supporting evidence while dropping caveats, hallucinating details the context never contained, or losing a fact to over- or under-stuffed context. All 11 patterns describe failures that happen after retrieval has already succeeded, which is what makes answer synthesis distinct from a retrieval problem: the correct information was there, and the generation step still didn’t deliver it faithfully.
hallucination-confidence-miscalibration in cross-cutting/accuracy), with sibling domain variants for document processing and vision.Nearly every answer-synthesis pattern documents the same underlying tension: a language model is optimized to produce a fluent, complete-sounding, decisive answer, and that training pressure works against faithfully representing an incomplete, conflicting, or off-target set of retrieved context. Whether the failure looks like ignoring context in favor of a training-data prior, papering over a source conflict, dropping caveats to sound more decisive, or stating an answer with unwarranted confidence, the mechanism is the same optimization pressure showing up in different places along the synthesis pipeline. The mitigations that recur across the goal all push back against that pressure explicitly: query-decomposition and answer-relevancy verification steps that check the answer against the actual parsed query rather than trusting the generation step got it right, multi-source consensus checks that require disagreement to be surfaced rather than silently resolved, and structured response templates that mandate a caveats/limitations section rather than leaving completeness to the model’s own judgment.
Hallucination Despite Context is about the content of the answer — the model states facts, numbers, or details that the retrieved context never contained. Confidence Miscalibration is about the framing of the answer — the model states its answer (whether accurate or hallucinated) with the same declarative certainty regardless of how well-supported it actually is by the context.
Per Answer-Query Drift, retrieval succeeded — the relevant documents are in context — but the generated answer addresses a different aspect of the topic than what was actually asked (e.g. answering a question about card activation steps when the user asked whether personal expenses are allowed on a corporate card). If the retrieved context itself is wrong or missing, that’s a retrieval-stage failure; if the context is right and the answer still misses the question, it’s synthesis drift.
No — Context Window Saturation documents the opposite past a certain point: quality holds fairly steady from 2k to 8k tokens of context, then degrades measurably at 32k and drops sharply by 80k tokens, driven partly by the “lost in the middle” effect where facts placed in the middle of a long context are recalled markedly less reliably than facts at the start or end.
Per Source Contradiction, add explicit conflict detection between retrieved passages before generation, and require the response to surface the disagreement (which sources say what, and why) rather than silently defaulting to whichever source happens to be retrieved first or scores marginally higher on relevance.
Prompting alone helps but the documented, more reliable fix in Cherry-Picking is structural: require extraction to explicitly populate a caveats/limitations/exceptions section as part of the response schema, rather than relying on the model to remember to volunteer qualifying information it has an incentive to omit for a cleaner-sounding answer.
| Pattern | Mechanism |
|---|---|
| Answer-Query Drift | Model generates an answer about the retrieved context’s topic rather than the specific question actually asked |
| Cherry-Picking | Model selects supporting evidence while omitting caveats, exceptions, or contradicting information from the same context |
| Compression Information Loss | Context summarization before synthesis drops specific numbers, dates, or exceptions the query needed |
| Confidence Miscalibration | Model states an answer with the same declarative confidence regardless of how well the context actually supports it |
| Context Ignored | Model responds from generic training knowledge instead of the specific retrieved context provided |
| Context Window Saturation | Excess retrieved context dilutes model attention and degrades answer quality past an optimal context size |
| Hallucination Despite Context | Model fabricates plausible-sounding detail (numbers, names, dates) not present in the retrieved context |
| Noise Corruption | Irrelevant retrieved documents mixed into context corrupt or distract from an otherwise correct answer |
| Parametric Override | Model’s training-data prior overrides current, correct information present in the retrieved context |
| Source Contradiction | Retrieved documents disagree and the model silently picks one without acknowledging or reconciling the conflict |
| Synthesis Errors | Model incorrectly associates facts or attributes across multiple entities when combining multi-source context |
Total: 11 patterns
Answer Doesn't Address the Actual Question
Model Selectively Uses Supporting Evidence, Ignores Contradicting
Context Summarization Loses Critical Information
Model Confidence Doesn't Match Answer Reliability
Model Ignores Retrieved Context
Too Much Context Overwhelms Synthesis
Model Generates Information Not in Retrieved Documents
Irrelevant Context Corrupts the Response
Model Uses Training Data Over Retrieved Context
Retrieved Documents Contain Conflicting Information
Model Incorrectly Combines Information from Multiple Sources