Technology and AI

What You Owe Customers When Your AI Agent Gave the Same Wrong Answer to Many of Them

A single customer's mistake and a pattern discovered across hundreds of conversations are not the same problem. Here is what retroactive, population-scale correction actually requires.

Pratik Chothani

Pratik Chothani

Software Development Engineer·August 18, 2026·3 min read
What You Owe Customers When Your AI Agent Gave the Same Wrong Answer to Many of Them

Quick answerOnce you confirm the same wrong answer went out systemically, the obligation shifts from fixing the immediate cause to identifying every affected customer and reaching out proactively, not waiting for them to notice or complain. Build the affected population from logs by matching the specific wrong pattern, not just the time window, since a wide time-window pull will both miss variants of the same error and sweep in unrelated conversations. Prioritize outreach by consequence, a wrong pricing answer that led to an underpayment needs faster contact than a wrong answer about a feature that was never acted on, and document the whole remediation as a single tracked event, not as scattered one-off customer replies. ---

Why this is a different problem than a single customer's mistake

Our post on whether your AI agent should proactively tell a customer about its own mistake covers a single, real-time case: the agent got one answer wrong for one customer right now, and the question is whether to volunteer that immediately. This post covers what happens after the fact, once someone discovers the same wrong answer went out to many customers over an extended period. The single-customer case is about honesty in the moment; the systemic case is about finding everyone who was affected and deciding what you owe each of them, sometimes weeks or months later.

Building the affected population correctly is the hard part

The instinct is to pull every conversation from the window when the bad answer was live, but that both over-includes conversations where the topic came up without the error occurring and under-includes cases where the same underlying wrong logic surfaced with slightly different wording. Match on the actual pattern, ideally by re-running the corrected logic against historical transcripts to see where the old and new answers diverge, rather than trusting a keyword or date-range search to find everyone affected.

This overlaps with, but is not, an incident postmortem

A postmortem, covered in what a company should communicate to customers after an AI agent has a production incident, is built around a bounded event with a clear start and end, an outage or a specific bad deploy. A systemic wrong-answer pattern often has no clean start, since it may have been live for months before anyone noticed, and no clean single fix, since correcting the answer going forward does not itself remediate customers who already acted on the wrong one. Run the postmortem process for the technical root cause, but run a separate, population-focused remediation track for the customer-facing correction.

How the correction mechanism ties in without replacing outreach

A working customer-facing "flag this answer as wrong" mechanism is often how the pattern gets discovered in the first place, a spike in flags on the same topic is a strong systemic signal. But the mechanism only catches customers who noticed and bothered to flag it; the remediation obligation extends to the full affected population you reconstruct from logs, including the customers who never flagged anything because they never realized the answer was wrong.


FAQ

Should the outreach message be identical for every affected customer?

No. Segment by consequence and tailor the specific ask, an apology and a correction for low-stakes cases, a concrete remedy offer for anyone who suffered a real cost from acting on the wrong answer.

Who should own this remediation track internally?

Whoever owns customer trust and communications, not just the engineering team that fixed the underlying logic, since the technical fix and the outreach obligation run on different timelines and require different judgment calls.

Read next

All posts →