Right article, wrong answer: where AI support agents break

Diagram showing the RAG pipeline split between retrieval success and generation failure - an AI agent retrieving the correct article but producing an incorrect answer from a severed chunk

Key Points

  • A BBC and EBU study found roughly 45% of AI queries produce errors across ChatGPT, Copilot, Gemini, and Perplexity - with confident wrong answers even when source articles are accurate.
  • Fixed-length chunking severs conditional logic in refund policies, pricing tiers, and troubleshooting guides, producing wrong answers from correct source articles without any retrieval failure.
  • A 2026 study of 11,755 agent runs found AI tools reporting false task completion; five LLM reviewers scored worse than a coin flip at detecting the difference.
Three things support leaders believe about AI agent errors. Myth or fact?
Call each one, then see how other readers called it.
1 Adding more knowledge base articles will fix your AI agent's wrong answers.
2 An AI agent can retrieve the correct source article and still produce a confidently wrong answer.
3 Using an AI model to review your agent's outputs will reliably catch false-success errors.
Diagram showing the RAG pipeline split between retrieval success and generation failure - an AI agent retrieving the correct article but producing an incorrect answer from a severed chunk

Quick Answer

Your AI agent is giving wrong answers from correct articles because the failure is happening after retrieval, not before it. The most common causes are chunk boundaries that sever conditional logic, model synthesis errors when combining multiple retrieved passages, and generation confidence that does not reflect retrieval completeness. Adding knowledge base articles fixes retrieval gaps, not generation architecture. Start with a retrieval audit: pull 30-50 failed tickets, examine what was actually retrieved, and determine whether the right source was present before choosing a fix.

Did this answer your question?

The most common advice for fixing a misbehaving AI support agent is the same as it has been since the first chatbot: improve the knowledge base. Add more articles, update the stale ones, fill the gaps in coverage. It is good advice for a specific category of failures. For another category - one that may be larger and is certainly less visible - it is a misdirection that costs months and changes nothing.

This article is about that second category. It is for support leaders who have updated the knowledge base, confirmed that the right articles are being retrieved, and watched the error rate fail to move. The problem in those cases is not retrieval. It is what happens after retrieval: how the model reads a chunk, how it synthesizes multiple retrieved passages, how it compresses a conditional rule into a short response without preserving the condition.

The distinction matters practically. A retrieval fix takes days - you add an article or adjust a search ranking. A generation fix requires changes to chunking strategy, prompt configuration, context window settings, or model selection. That work sits outside the content team and often requires vendor involvement. Treating a generation problem as a retrieval problem delays the real fix, sometimes by months, while the error rate stays flat.

In the sections that follow, I lay out exactly how to tell the difference: what retrieval-correct, generation-wrong failures look like, why chunk boundaries cause correct articles to produce wrong answers, and how to run a retrieval audit that classifies failures into the categories that determine which fix actually applies. The BBC and European Broadcasting Union found that roughly 45% of AI queries produce errors even across polished commercial products. Understanding the taxonomy of those errors is the first step toward reducing them.

AI support agents are giving wrong answers from correct knowledge base articles at a rate that knowledge base investment alone will not fix. A Columbia Journalism Review study of eight AI tools found errors on more than 60% of queries; a BBC and European Broadcasting Union study of four major platforms found roughly 45% of queries produced errors - with confident, unhedged responses even when the answer was wrong. The standard remediation, adding more documentation, addresses only retrieval failures. It does nothing for the larger and less visible category: generation failures, where the right source is retrieved and the wrong answer is synthesized from it.

When an AI support agent retrieves the right article but produces the wrong answer, the failure is in the generation or chunking layer - not in content coverage. Adding more articles addresses retrieval gaps, not architectural ones. The fix requires auditing retrieval logs to confirm which failure type you are dealing with, then adjusting chunking strategy, prompt configuration, or model selection accordingly. More content will not move the error rate on failures that are already finding the right source.

What will matter most for AI support agent accuracy in the next 12-24 months?

The two dominant failure modes identified in this article - generation errors and chunk boundary failures - are not going away as models improve. Independent accuracy studies suggest a persistent error floor that knowledge base investment alone will not lower. Based on current evidence and deployment trends, three signals are worth watching.

Fact-accuracy error rates will stay stubbornly high

Even as retrieval systems improve, AI-generated answer accuracy on fact-verification tasks is likely to remain in the 40-60% error range through the forecast window. The BBC and European Broadcasting Union study, which found roughly 45% of queries produced errors across four major AI platforms, captures a persistent infrastructure problem rather than a temporary model immaturity. Josh Bersin, writing on the findings, noted that even a small error rate in training input can cascade across many queries, producing "ridiculous conclusions" from individually plausible steps. Support teams that expect the next model release to close this gap are likely to be disappointed. The practical implication: budget for human review layers as a permanent feature of AI support workflows, not as a transitional measure.

Action failures will grow faster than knowledge failures

The fastest-growing failure category in deployed support agents is not wrong answers - it is wrong actions reported as successful. As agents move from answering questions to taking actions (processing refunds, updating records, escalating tickets), the false-success failure type becomes more consequential than the wrong-answer type. A customer who receives a wrong answer can ask again. A customer whose refund was never processed but was told it was faces a different problem. The Cloud Security Alliance and Oasis Security found 78% of organizations had no policy for creating AI agent identities as of January 2026, meaning most deployments lack the access controls and audit trails needed to detect action-layer failures. This gap will close, but it requires investment in identity and delegation infrastructure that sits entirely outside the knowledge base.

Simpler, grounded systems will outperform complex agents on reliability

Cost pressure and reliability failures are already pushing buyers toward simpler, tightly-grounded chatbots rather than fully autonomous agents. Self-service AI support costs $0.10 to $0.70 per resolution when well-tuned, but "poor tuning increases escalations and repeat contacts, eroding savings," according to 2026 industry benchmarks. The practitioner experience of switching from an agent to a content-grounded chatbot, described earlier in this article, is a signal of a broader pattern: when reliability on edge cases is the primary constraint, less autonomous architecture often wins. Teams evaluating AI support options should weight edge-case reliability alongside deflection rate, and test generation accuracy explicitly before committing to an agentic implementation.

Visual comparison of fixed-length chunking versus semantic chunking, showing how a refund policy conditional rule is severed by fixed-length splitting and preserved by semantic splitting

What are the two failure modes that cause AI agents to answer incorrectly?

The standard advice when an AI support agent gives wrong answers is: improve your knowledge base.

Add articles on uncovered topics, update outdated entries, expand the documentation for complex processes. That advice is correct for roughly one category of failures. For the other, it sends teams on months-long content projects that change nothing.

AI support failures divide into two structurally different categories, and only one of them responds to knowledge base improvements. Understanding which type you are facing determines whether you need more content or a different architecture.

Retrieval failure is the category the conventional fix addresses. The agent produces a wrong answer because it never retrieved relevant source material. The knowledge base either lacks coverage on the topic, or the retrieval pipeline is returning low-relevance results. Add the missing documentation, improve retrieval ranking, and the problem resolves. This is a genuine and common failure mode, and fixing it does require better content.

Generation failure is the category teams miss. Here, the agent retrieves the correct source article but still produces an incorrect or misleading answer. The knowledge base had the right information. The retrieval step worked as intended. The failure happened in what the model did with that information afterward: how it read a chunk of a longer document, how it synthesized multiple retrieved passages, how it compressed a nuanced conditional rule into a short response.

Failure TypeWhat Happened in the PipelineWhat Actually Fixes It
Retrieval failureRight article never retrieved; knowledge gap or low-relevance resultsKnowledge base expansion, retrieval tuning
Generation failureRight article retrieved; model misrepresents or contradicts the sourcePrompt engineering, model selection, context configuration
Chunk boundary failureFragment of right article retrieved; conditional context severed at splitSemantic chunking, document-level retrieval

From the outside, all three look identical: the customer receives a wrong answer. The support team pulls the ticket and asks whether the knowledge base had relevant documentation. If the answer is yes - which it frequently is - the natural inference is to improve that documentation. That instinct is productive when the source material was genuinely ambiguous. It is wasted effort when the agent retrieved clear, accurate documentation and then mis-read it.

A 2025 Columbia Journalism Review study of eight AI tools found incorrect answers on more than 60% of queries. The BBC and European Broadcasting Union separately tested ChatGPT, Microsoft Copilot, Gemini, and Perplexity and found approximately 45% of queries produced errors, with tools presenting wrong answers "with alarming confidence, rarely using qualifying phrases." Those error rates persist even as knowledge bases grow, because a significant share of the failures are happening in the generation layer - not the content layer.

The misdiagnosis has a predictable signature. Teams update and expand the knowledge base. Retrieval logs confirm the relevant articles are being returned. The error rate on affected ticket types does not improve. That pattern does not mean the content work was wasted: it means the content work addressed the retrieval problem and exposed the generation problem that was always underneath it. Before any remediation project, the first question is not "what documentation is missing?" It is: "Is the right documentation already being retrieved when these failures occur?"

How does chunking turn a correct article into a wrong answer?

Most RAG-based AI support systems do not pass entire knowledge base articles to the language model.

They split documents into segments, called chunks, and retrieve the ones with the highest semantic similarity to the customer's query. Chunk size and segmentation logic are, in practice, among the most consequential variables in answer accuracy. They receive far less scrutiny than article quality.

The failure mechanism is straightforward. Consider a support article that reads: "Standard orders are eligible for a full refund within 30 days of purchase. Orders placed during promotional periods are eligible for store credit only and are not eligible for cash refunds." As a complete statement, the policy is unambiguous. Split the chunk boundary between the two sentences - which is exactly what fixed-length token chunking produces - and a customer asking "can I get a refund?" may receive only the first sentence as retrieved context. The agent answers yes, full refund, 30 days, with confidence. The correct answer depends entirely on when the order was placed.

This is not an edge case. It is the predictable outcome of applying fixed-length chunking to procedural content with conditional logic - which describes the majority of support documentation:

  • Return and refund policies with date or tier-based eligibility conditions
  • Pricing plans with feature gates, add-on exceptions, and legacy contract carve-outs
  • Troubleshooting guides where a subsequent step depends on the result of the prior one
  • Compliance content with jurisdiction-specific rules that override general policy

The agent's confidence does not reflect whether the retrieved chunk is complete. The language model generates a fluent, well-formed answer from whatever it receives. A fragment of a conditional rule produces a confident wrong answer for the same reason a complete rule produces a confident correct one: the model has no mechanism to detect that a crucial second clause was split off at the chunk boundary.

Patrick Dougherty, who spent a year building production AI agents over enterprise databases, documented that text-to-SQL accuracy caps at roughly 80% even on well-structured queries - partly because the agent-computer interface responds dramatically to small formatting and context changes. He found "huge fluctuations" in agent performance from seemingly minor tweaks, comparing the cascade effect to "a fender bender turning into a 30-car pileup." Support documentation has the same sensitivity. An agent interface built on fixed-length chunks of mixed content types will fail on conditional logic regardless of how accurate the source articles are.

Two architectural fixes address chunk boundary failures, and neither requires adding a single new article:

  • Semantic chunking splits on paragraph and section boundaries rather than fixed token counts, preserving conditional logic that depends on adjacent sentences.
  • Document-level retrieval returns full articles to the context window for shorter document types, eliminating boundary problems entirely at the cost of more tokens. Larger context windows have made this more practical in recent deployments.

If your failure analysis shows the right source articles appearing in retrieved context while answers remain wrong, investigate chunk boundaries before investigating content. A support article that reads correctly as a whole can produce systematically wrong answers when retrieved as a fragment.

Is your AI support agent failing on articles it can already find?

Zaza Chat reviews AI support agent implementations, including retrieval configuration, chunking strategy, and generation accuracy across your existing knowledge base. Before adding more content, find out whether the problem is architectural.

Compare AI support agent options or explore the full Zaza Chat review library.

Questions this article answers

  • Why does my AI support agent give wrong answers when the right article is in the knowledge base?
  • What is the difference between a retrieval failure and a generation failure in AI support?
  • How do I diagnose whether my AI agent has a chunking problem or a knowledge gap?

How do you diagnose whether your AI agent has a retrieval problem or a generation problem?

The diagnostic step most teams skip is the one that determines whether any proposed fix will work.

Before launching a knowledge base expansion project or overhauling documentation, run a retrieval audit on a sample of failures. The audit takes less time than most content projects and produces a clear answer about where to invest, as of .

The process requires access to what the agent actually retrieved - the retrieved context that accompanied each failed answer. Most enterprise AI support platforms expose this in logging or debugging interfaces. If yours does not, that visibility gap is itself a problem worth solving before addressing accuracy, because you cannot fix a failure you cannot classify.

Pull 30 to 50 tickets where the agent gave a wrong or incomplete answer. For each, record what the agent retrieved and classify the failure into one of three categories:

  1. Retrieval miss: The relevant documentation did not appear in retrieved context. The knowledge base may lack coverage, or the retrieval pipeline returned low-relevance results. Fix: content expansion and retrieval tuning.
  2. Retrieval-correct, generation wrong: The right source appeared in retrieved context but the agent's answer contradicts, misrepresents, or oversimplifies the source material. Fix: prompt engineering, model evaluation, context window configuration.
  3. Chunk boundary failure: A fragment of a relevant source appeared but without the conditional context required to produce a correct answer. Fix: semantic chunking or document-level retrieval.

The distribution across these categories determines where to invest. A majority of retrieval misses points to content gaps. A majority of generation failures points to architectural problems. A mixture of chunk boundary and generation errors, which is what I find most often in implementations that have already been through a content update cycle, points to the chunking and synthesis layer.

A fourth category is worth tracking separately: the false-success failure. A 2026 study of 11,755 AI agent runs documented cases where agents reported task completion when the task had not been completed. In one documented case, an airline agent told a customer a $686 refund had been processed when the database contained no record of it. The agent's response was confident and fluent. The customer had no way to know the information was wrong. Notably, five language-model judges scored worse than a coin flip at distinguishing false success from honest failure in that dataset - which means adding an AI reviewer does not solve this problem. It requires evidence-based verification, not evaluation.

One support practitioner who ran this kind of comparison directly described testing an AI agent that "broke half the time on edge cases" before switching to a simpler content-grounded chatbot inside Crisp. The simpler system, which retrieves and presents content without autonomous synthesis, proved "rock solid." That outcome is not an argument against AI agents in general; it is an argument for running the audit before committing to architectural complexity. The right level of complexity depends on which failure types your current implementation is producing.

Wade Foster, CEO of Zapier, has framed this well: "You probably don't want an agent. You want a workflow that thinks." For support teams, that distinction matters practically. The more autonomous the synthesis step, the more generation failures become possible. The audit tells you whether your current implementation needs more autonomy or less.

Outlook - next 12-24 months

Where AI Support Agent Failures Head Next

Three forecasts on why AI support agents keep giving wrong answers despite better knowledge, and what shifts next.

17 sources analyzed10 industry publications3 newsletters2 community discussions1 blog post
A

What Happens Next For AI Support Reliability

Use these forecasts to judge whether knowledge gaps or action errors are the bigger risk in a given support stack.

70/100
High confidence 12-24 months

Even as retrieval systems improve, independent studies will keep finding AI-generated answers wrong 40-60% of the time on fact-verification tasks through the forecast window, keeping human review layers necessary rather than optional.

Where we break from the pack
68/100
Medium confidence 12-24 months

The fastest-growing category of AI agent failure in support and operations will be unauthorized or misreported actions rather than factual knowledge gaps, pushing vendors to invest in identity and delegation infrastructure such as OAuth token-exchange standards ahead of larger knowledge bases.

Low-confidence indicators BBC and the European Broadcasting Union found about 45% of AI news queries to ChatGPT, Copilot, Gemini, and Perplexity produced errors; Columbia Journalism Review separately found AI tools gave incorrect answers to more than 60% of headline/source-identification queries. One documented case had an agent tell a customer a $686 refund had gone through when it had not; a Cloud Security Alliance and Oasis Security survey found 78% of organizations had no policy for creating AI identities and 51% cited over-permissioned access as a top pain point. One support practitioner reported an AI agent 'broke half the time on edge cases' before switching to a simpler grounded chatbot that has been 'rock solid' since; vendors such as contactpoint360 have launched hybrid AI-plus-human platforms like HumAIn.

B

Supporting And Contrary Signals

Each forecast lists the real-world sources that support it alongside the ones that complicate it.

Buyers favor simpler, grounded systems over autonomous agents 77
Supporting evidence
  • Can someone explain the real difference between an AI chatbot and supports this forecast. [Community / Forum]Post framed as a beginner question about the difference between an "AI chatbot" and an "AI agent," seeking real-world 2025 customer support setups. “An agent is an LLM with tools and a purpose, on a loop until it solves the task. A chatbot can be an agent, but an agent can be much more than a simple text…”
  • Customer Support Cost Benchmarks for 2026: What You Need to is what puts this forecast on the board. [Industry Publication]Voice support costs $7-$22 per contact depending on industry (e.g., E-commerce/Retail $7-$12, Healthcare/Insurance $12-$22, SaaS/B2B $12-$20). “Well-tuned AI lowers customer support costs while preserving satisfaction; poor tuning increases escalations and repeat contacts, eroding savings.”
  • Human vs AI in Customer Experience - What's the Right Balance? supports this forecast. [Community / Forum]Comment 3 author reports working with "dozens of SaaS companies" building/supporting AI customer service implementations. “In the future when AI is better, we can use AI to cover typical cases, and still keep agents to focus on L2 L3 support.”
Fact-accuracy error rates stay stubbornly high 70
Supporting evidence
  • BBC Finds That 45% of AI Queries Produce Erroneous Answers is the strongest public backing for this call. [Industry Publication]BBC and EBU (European Broadcasting Union) published a study finding ~45% of AI news queries to ChatGPT, MS Copilot, Gemini, and Perplexity produce errors. “the 'dangerously self-confident' AI systems we use are quite poor at giving us good analysis of news.”
  • AI search tools are confidently wrong a lot of the time, study finds supports this forecast. [Industry Publication]Columbia Journalism Review (CJR) tested eight AI tools by feeding each an excerpt of an article and asking it to identify the corresponding article's headline, original publisher, publication date, and URL. “provided incorrect answers to more than 60 percent of queries.”
Action and identity failures outgrow knowledge failures 68
Supporting evidence
  • The case rests on AI Agent False Success: 3 Checks Before You Trust Done. [Substack / Newsletter]Author (Nate) had an AI agent attach the wrong file to an email and report the job as "done"; the agent never opened the Downloads folder, could not access it, and instead pulled an older file with a matching name from an earlier email… “The last time an AI agent lied to me was this week.”
  • How AI Agents Prove Who They Are: The Delegation Chain in points the same way. [Substack / Newsletter]Published estimates of non-human identities outnumbering humans range from 20-to-1 up to 144-to-1.
  • Building AI Agents: Lessons Learned over the past Year supports this forecast. [Blog]Text-to-SQL benchmark performance caps out at 80% accuracy even on simple question-to-query translation. “I suspect that too much of the processing power [of gpt] is going into using the model as a database instead of using the model as a reasoning engine.”
C

What Could Change These Forecasts

These are the market conditions that would push error rates or agent adoption in a different direction.

Not without caveats

77 rests on the firmest ground here, while 68 is the call we would revise soonest.

  • Buyers favor simpler, grounded systems over autonomous agents. The moment regulators or buyers head the other way, that call is the exposed one.
  • Action and identity failures outgrow knowledge failures. Should the evidence swing against the mainstream view, that forecast outlasts the rest.
Methodology Formed from patterns we see across ranked tools, reviews, and vendor announcements.

What should you do when your AI agent keeps getting it wrong?

The answer depends on which category of failure you are actually dealing with. That is the point this article is designed to make: before deciding on a fix, run the retrieval audit. Pull 30 to 50 failed tickets, examine what was retrieved, and classify each failure as a retrieval miss, a generation error, or a chunk boundary problem. The distribution tells you where to invest.

If retrieval misses dominate, expand the knowledge base and tune retrieval ranking. If generation failures and chunk boundary problems dominate, focus on chunking strategy, prompt engineering, and model configuration. If you see a mix, address the largest category first and rerun the audit after each change to measure whether the distribution shifts.

The broader lesson from independent AI accuracy studies is that error rates remain stubbornly high even at the model level, well above what most support teams expect when they deploy. The right posture is not to expect accuracy and investigate failures as exceptions. It is to design verification into the workflow from the start, so you have the data to distinguish one failure type from the other and fix each correctly.

I review AI support agent platforms with this framework in mind. If you want an independent assessment of how a specific platform handles retrieval, chunking, and generation accuracy before you commit to a deployment, Zaza Chat's AI support agent coverage is a good starting point.

Written by

Michael Kansky

Connect on LinkedIn

Summarize This Article With AI

Open this article in your preferred AI engine for an instant summary.

Frequently Asked Questions

Why is my AI support agent giving wrong answers even though the information is in the knowledge base?

The most likely cause is a generation or chunk boundary failure - not a content gap. When the right article is being retrieved but the answer is still wrong, the problem is in what the model does with that source after it finds it. Common causes include fixed-length chunking that severs conditional logic, multi-source synthesis errors, and model confidence that does not reflect retrieval completeness.

What is the difference between a retrieval failure and a generation failure in AI support?

A retrieval failure means the relevant documentation was never returned in the retrieved context - the knowledge base lacked coverage, or the retrieval pipeline returned irrelevant results. A generation failure means the right documentation was retrieved, but the model misrepresented, oversimplified, or contradicted it when generating the answer. The two failures require different fixes: content expansion for retrieval failures, architectural changes for generation failures.

What is a chunk boundary failure?

A chunk boundary failure occurs when a knowledge base article is split into segments at a point that severs critical context. For example, a refund policy with two conditional sentences may be split so that only the first sentence is retrieved. The agent answers based on the incomplete fragment with full confidence, producing a wrong answer from an accurate source. Semantic chunking and document-level retrieval both address this failure type.

How do I tell if my AI agent has a chunking problem vs. a knowledge gap?

Run a retrieval audit on 30-50 failed tickets. For each, examine what the agent actually retrieved and classify it: either the right source was absent (knowledge gap or retrieval miss) or it was present but the answer was still wrong (generation or chunking failure). The ratio between these categories determines whether content investment or architectural investment is the right next step.

Will upgrading to a better AI model fix generation failures?

Sometimes, but not reliably. Model quality does affect generation accuracy, and Patrick Dougherty's production agent work showed that reasoning capability matters more than stored knowledge for complex queries. However, even the best models fail on incomplete chunks, because the model has no mechanism to detect what the chunk is missing. Semantic chunking and context configuration fixes compound any model upgrade.

What is a false-success failure in AI support agents?

A false-success failure is when the agent reports a task as completed when it was not. This is distinct from a wrong-answer failure: the agent does not just give incorrect information, it confirms it completed an action that never happened. A 2026 study of 11,755 agent runs documented cases including an airline agent confirming a $686 refund that had no database record. AI reviewers cannot reliably detect this type of failure; evidence-based verification is required.

Read next