Handling AI hallucination in customer service means making it hard for the AI to invent answers in the first place (grounded retrieval, refusal-when-uncertain), verifying any factual claim the AI is about to make against a known source, and running a post-hoc audit that catches what slipped through. Real-time detection is hard; the working pattern is several smaller defences stacked.

An AI agent tells a customer the policy says one thing. The customer takes the AI at its word. Two weeks later, when they try to act on that answer, they find out the policy says the opposite. The AI did not lie deliberately. It generated a fluent answer that was not anchored in any actual source. From the customer's view, it lied. From the system's view, it hallucinated.

What people in the field are saying

kdschemin's "Reliability is the product" argues that hallucination in AI customer service is not a model problem to be solved by a better model; it is a system problem to be solved by how the model is wired into knowledge, verification, and audit.

What does grounded retrieval do?

It forces the AI to base its answer on a specific source it retrieved, rather than on what the model thinks the answer is. If the source contains the answer, the AI uses it. If no relevant source is found, the AI does not generate an answer; it hands the conversation over. The defence is upstream of the model: the model is given less rope.

What does refusal-when-uncertain mean in practice?

The model produces a confidence score (or the system infers one). Below a threshold, the AI does not answer; it asks a clarifying question or escalates. This is the discipline most deployments skip, because refusing feels like a worse customer experience than a confident answer. It is the opposite: a confident wrong answer is worse than a polite "let me get someone who can confirm this for you."

What about verification?

For factual claims (a price, a policy, an account state), the AI's draft is checked against the source before it is sent. The customer never sees the unverified draft. The system that verifies is separate from the system that drafts, so a hallucinating model cannot also verify itself.

What does the post-hoc audit catch?

What slipped past the upstream defences. Sample real conversations weekly and read them. Compare the AI's answers against current policy. Tag the ones where the answer was wrong, and trace back: was the source stale, was retrieval wrong, was the confidence threshold too low, did the verification step exist for that claim type. The audit drives the changes the upstream defences need.

Where does this whole approach fail?

When the source itself is wrong (stale knowledge), grounded retrieval grounds confidently in a stale truth. When refusal-when-uncertain is set so aggressively that the AI escalates everything, the team underneath drowns. When verification is bypassed for speed on a class of contacts that turns out to need it after all.

Related: the field note on AI passing demos and failing customers, how to keep an AI knowledge base current, and why AI can sound smart but fail customers.