Diagnostic TeardownAI

The Answer Has a Citation. Why Is It Still Wrong?

Author
Alex Florian
Published
Updated
Reading time
4 min

A citation changes how an AI answer feels. There is a document behind the paragraph, and a link you can inspect. But an authentic link can accompany a wrong answer: the document may have expired, the retrieved passage may omit an exception, or the assistant may apply the rule to someone it never covered.

This matters for retrieval-augmented generation, usually called RAG. The technique supplies external material to a model before it answers. It helps the assistant work with sources, but the presence of a source doesn't establish that the resulting claim is supported. [1]

The difference becomes easier to see when the rule and the answer are both on the page.

A real quotation can leave out the decisive sentence

Consider this fictional company equipment policy, written only to illustrate the problem:

Employees may request reimbursement for an approved monitor. Employees working at a client site must use the client-equipment route instead.

The employee asks: “I'm working at a client site. Can I buy an approved monitor and claim the cost?”

Now suppose the search system supplies only the first sentence. The assistant replies, “Yes, employees may request reimbursement for an approved monitor,” and links to the policy. It hasn't invented that sentence. It has lost the condition that determines whether the sentence applies to this employee.

Documents are often split into passages for retrieval. If the general rule and its exception are separated, finding a relevant passage may not be enough. A heading, date or prerequisite in a neighboring section can carry equally important context. The unit of text retrieved needs to preserve the unit of meaning the answer depends on. [1][2]

Adding every available document is not necessarily the repair. The assistant needs the relevant exception, not a longer pile of material in which that exception remains difficult to identify.

Three failures that deserve different repairs

The same employee could receive an equally confident wrong answer through three different routes.

What went wrongWhat the investigation would showWhere to start
Wrong sourceAn obsolete policy was selected instead of the current one.Source status, dates and replacement relationships.
Incomplete passageThe current policy arrived without the client-site exception.Passage boundaries and retrieval of the required context.
Wrong interpretationBoth sentences arrived, but the answer ignored the exception.How the model uses the evidence and handles the question.

These variations of the fictional case call for different investigations. Changing the answer's tone won't restore an absent exception; improving search won't necessarily fix a model that already received it and reasoned incorrectly.

I would inspect the exact passages passed to the model before replacing it. The original question belongs beside them. Rewriting the employee's words into a tidier query can accidentally remove the condition that exposed the fault.

A source can be relevant without being the rule

A knowledge collection may contain the approved policy, an old export, a draft and a team summary. All can match the search. Their similarity doesn't tell the system which one governs the employee's decision.

The collection needs usable distinctions between current guidance and historical or provisional material. If two supposedly authoritative policies genuinely conflict, the assistant should expose that conflict rather than settle it through search rank. The policy owner has a decision to make before the system can give a dependable answer.

What a better answer gives the reader

With the complete fictional policy, the response could be:

The standard reimbursement route does not apply while you are working at a client site. This policy directs you to the client-equipment route instead. It does not specify that route's approval steps, so those would need to be checked before you purchase the monitor.

The answer states the relevant exception and stops where its source stops. It doesn't manufacture the missing approval process to make the reply feel complete. Linking the decisive passage would also let the employee check the explanation without searching a long document.

Access remains part of this work. A better answer must not be obtained by retrieving information the employee is not permitted to receive. Where suitable evidence is unavailable, a clear limitation or a route to someone who can resolve the question is more helpful than an unsupported yes. [1][2]

A citation is valuable because it makes a claim inspectable. The stronger test is whether the claim survives that inspection: the right source, enough of its meaning and an answer that respects the conditions the reader actually described.