The short answer
Hallucination is the failure mode that makes voice agents risky in regulated or transactional settings. A spoken statement carries no citation and cannot be reread, so a fabricated price, policy or confirmation is likely to be believed and acted on. Mitigation is architectural — grounding, tool use, and refusal paths — not a matter of instructing the model to be accurate.
In detail
The behaviour follows from how the models work. They are trained to produce likely continuations, and a fluent, specific-sounding answer is more likely than an admission of ignorance unless something in the training or the prompt makes the admission preferable. The output is not a lie in any intentional sense; it is a high-probability sequence that happens not to correspond to anything real.
Voice raises the cost of every instance. There is no hyperlink to check, no visible hedging, and the delivery is as confident for a fabrication as for a fact. Callers reasonably treat a spoken statement from a business as authoritative, and a hallucinated commitment — a discount, a booking, an eligibility decision — can create real obligations for the operator.
Speech pipelines can also hallucinate before the model does. Some recognisers, when fed silence, noise or music, emit plausible text rather than nothing, and the agent then responds to something no one said. Filtering low-confidence and non-speech segments before they reach the model closes a failure mode that prompt-level defences cannot touch.
The practical mitigations are consistent: ground answers in retrieved or function-returned data, instruct the model explicitly to refuse rather than guess, keep the scope narrow, and escalate anything outside it. Reviewing transcripts for confident statements that no source supports is the only reliable way to find what slipped through.
Related terms
Grounding
Grounding is the practice of constraining a model’s responses to information supplied from a verified source rather than its parametric knowledge.
Retrieval-augmented generation
Retrieval-augmented generation is an architecture in which relevant documents are fetched from a knowledge store at query time and supplied to a language model as context for its answer.
System prompt
A system prompt is the standing instruction set given to a language model that defines its role, constraints and behaviour for every turn of a conversation.
Word error rate
Word error rate is the proportion of words a speech recogniser gets wrong, counting substitutions, deletions and insertions against a reference transcript.