What is a hallucination?

A confident-sounding statement a model made up, not something it flagged as a guess.

An admin approves every new account by hand. Nothing is created until then. We reply by email; no newsletter, no sequence.

app.salescrew.io/inbox
The unified reply inbox with classified threads

HallucinationA hallucination is a confident, plausible statement produced by a language model that is not supported by its inputs or by fact. In a CRM context it means an invented meeting, quote or commitment.

Why it matters

A language model produces the most statistically likely continuation of a prompt, not a database lookup. Most of the time that continuation matches reality closely enough to be useful. Sometimes it does not. The model states something false with the same fluent confidence as something true. A meeting that was never booked. A price that was never quoted. A commitment nobody made. In a CRM, this is not a harmless quirk. A fabricated commitment can end up in front of a customer.

The dangerous part is that a hallucination reads exactly like a correct answer. There is no italic font or warning label the model attaches to its own guesses. Asking it to double-check often produces another confident answer rather than an honest "I don't know". The practical response is to ground the model in real data wherever possible. Use retrieval-augmented generation, or have it work only from the record's own timeline. Treat anything the model states about an external fact, a date, a number, a promise, as something to verify before it reaches a customer.

How to reduce hallucination risk

  1. 1

    Ground the model in real data

    Retrieval-augmented generation or the record's own timeline, not open recall.

  2. 2

    Ask for specifics, not summaries

    A model asked for an exact date or figure is more likely to guess than one quoting a source.

  3. 3

    Keep external claims out of auto mode

    Anything stated as fact to a customer should pass through review first.

  4. 4

    Cite the source

    Output that names which document or record it drew from is easier to check.

  5. 5

    Review anything customer-facing

    Before a claim about dates, prices or commitments goes out.

The mistake to watch for

Assuming a model will flag its own uncertainty. It usually will not. Ground it, constrain it and review anything external.

Questions

How is a hallucination different from an error?
An error is usually a mistake with a traceable cause, like bad input data or a bug. A hallucination is the model generating a plausible but unsupported statement on its own, with no faulty input required.
Can retrieval-augmented generation eliminate hallucination?
No. It reduces the risk when it retrieves the right source passage. If retrieval misses, or the model ignores what it was given, the model can still state something ungrounded.
Should every AI-generated statement be reviewed?
Not every one. Anything stating a specific external fact, a date, a price, a commitment, deserves review before it reaches a customer. That is where a hallucination causes real damage.