QAnswer
QAnswer

QAnswer AI Search

⌘K
Try for Free
Back to Blog

Published July 8, 2025

News

How Accurate Is ChatGPT? Accuracy Rates and Hallucinations (2026)

13 min read

Amandine Cami

Amandine Cami

Commercial Director

How Accurate Is ChatGPT? Accuracy Rates and Hallucinations (2026)
QAnswer

AI Summary by QAnswer

The honest answer to "is ChatGPT accurate?" is: it depends far less on which model you use than on whether the model has the source material in front of it.

Ask ChatGPT to recall an obscure fact from memory and error rates are high. Give it the relevant document and ask it to answer only from that document, and the best models now stay under 2% on measured hallucination benchmarks. Same model, same day — an order of magnitude difference in reliability.

That single distinction is the most useful thing to understand about AI accuracy, and it is what this guide is built around. We cover what accuracy actually means for a language model, why models produce confident falsehoods, what the current benchmark numbers really say, the specific ways ChatGPT fails, and the concrete techniques that raise accuracy in production — including Retrieval-Augmented Generation (RAG).

What Does "Accuracy" Mean for ChatGPT?

"Accuracy" sounds like one number. For a language model it is at least four different things, and conflating them is why people talk past each other.

  • Factual recall: can it state a true fact from its training data, unaided?
  • Faithfulness (grounding): given a source document, does it stick to what the document says?
  • Reasoning correctness: does it get multi-step logic, arithmetic and deduction right?
  • Calibration: when it is unsure, does it say so?

A model can be excellent at one and poor at another. Most real-world complaints about ChatGPT being "wrong" are actually failures of faithfulness or calibration, not of raw knowledge — and those two are the ones you can engineer away.

Why ChatGPT Gets Things Wrong

This is no longer guesswork. In Why Language Models Hallucinate, OpenAI researchers Adam Tauman Kalai, Ofir Nachum, Santosh Vempala and Edwin Zhang make a precise argument: models hallucinate because training and evaluation reward guessing over admitting uncertainty.

Pre-training rewards plausibility, not truth

A model is trained to predict likely text. Plausible and true overlap most of the time, which is why it works at all — but where training data is thin, a fluent falsehood scores about as well as a fact. The model has no separate signal for "this is real."

Benchmarks reward confident guessing

This is the part most people miss. Most benchmarks score answers as right or wrong, with nothing in between. Under that scoring, a guess has positive expected value and "I do not know" scores zero — exactly like a multiple-choice exam with no penalty for wrong answers. As the paper puts it, models are optimised to be good test-takers, and guessing when uncertain improves test performance.

So the behaviour you find frustrating is not a bug that slipped through. It is the rational response to how these systems are graded. The authors' proposed fix is social as much as technical: change the scoring so confident errors cost more than admitted uncertainty.

Confidence is not truth

Fluency and certainty of tone are properties of the writing, not evidence about the world. A model can be well-calibrated in a statistical sense and still deliver a wrong answer in an entirely authoritative voice. This is why ChatGPT errors are dangerous in a way that a search engine returning nothing is not: there is no visual signal that anything went wrong.

How Accurate Is ChatGPT in Practice? What the Benchmarks Show

Anyone quoting you a single "ChatGPT accuracy rate" is oversimplifying. The number moves enormously with the task.

Ungrounded factual recall: the hardest case

Benchmarks built from short, obscure, fact-seeking questions are deliberately adversarial — they select for exactly the long-tail facts a model is least likely to know. Frontier models get a substantial share of these wrong, and reported figures vary widely between model generations and test sets. Treat any specific percentage you see as a snapshot of one benchmark, not a property of the model.

The practical takeaway is more stable than the numbers: do not use an LLM as a database. Unaided recall of specific facts, figures, dates, citations and prices is the single least reliable thing you can ask for.

Grounded summarisation: dramatically better

Now change the task. Vectara's public hallucination leaderboard measures something narrower and far more relevant to business use: given a document, and instructed to use only that document, how often does a model introduce something that is not there? It runs over 7,700 articles ranging from 50 to 24,000 words, at temperature 0, with a dedicated evaluation model judging each summary.

Across 100+ models, measured rates span roughly 1.8% for the best performers to around 24% for the worst, with a broad middle around 10-15%.

Two conclusions follow, and they matter more than any single figure:

  • Grounding the model in source material moves reliability into a completely different regime than open-ended recall.
  • Model choice still matters a lot — a 13x spread between best and worst is not noise. But the architecture of your application sets the ceiling.

Why the same question gives different answers

Worth knowing before you benchmark anything: identical prompts can produce different outputs even at temperature 0. If you evaluate a model on a single run, you are measuring one sample of a distribution. We covered the mechanics of this in why LLMs are not deterministic even at temperature 0 — test across multiple runs, or your accuracy measurement is noise.

Is ChatGPT Always Right? The Specific Failure Modes

No. And knowing the shape of the failures is more useful than knowing a percentage, because each has a different countermeasure.

  • Confident fabrication. Invented statistics, quotes, case law, product features or academic references, delivered in the same tone as correct answers.
  • Stale knowledge. Training data has a cutoff. Ask about anything recent and an ungrounded model will either decline or answer from an outdated world.
  • Arithmetic and multi-step reasoning. Long chains of calculation or deduction accumulate errors, and an early mistake propagates confidently to the conclusion.
  • Fabricated sources. Plausible-looking URLs, DOIs and page references that do not resolve. Especially damaging because a citation looks like verification.
  • Over-compliance. Push back on a correct answer and models often fold, because agreeableness was rewarded during training. Confidence therefore tells you nothing about correctness.
  • Silent context loss. In long conversations or very large documents, earlier material can effectively drop out without any warning.

How to Measure Accuracy on Your Own Use Case

Public benchmarks tell you about public benchmarks. What matters is your task, your documents, your users. Building a usable eval set is less work than teams expect:

  1. Collect 50-200 real questions your users actually ask. Real ones, not invented ones.
  2. Have a domain expert write the correct answer, and record which document it comes from.
  3. Run your candidate setups — different models, different prompts, with and without retrieval.
  4. Score three things separately: is it correct, is it supported by the cited source, and did it appropriately refuse when the answer was not available?
  5. Re-run periodically. Models change underneath you, and so does your documentation.

That third scoring dimension is the one teams skip and the one that matters most in regulated environments. A system that answers 90% of questions correctly and confidently invents the other 10% is often worse than one that answers 75% and says "not in the documentation" for the rest.

How to Make ChatGPT More Accurate

Ranked roughly by impact per unit of effort.

1. Ground it in your own documents (RAG)

This is the big one. Instead of asking the model to recall, retrieve the relevant passages first and ask it to answer from those. Retrieval-Augmented Generation converts an unreliable memory task into a much more reliable reading-comprehension task — which is precisely the shift that takes you from open-domain error rates to the single-digit range the grounded benchmarks show.

accuracy.txt
Ungrounded    "What is our refund policy?"    model guesses from training data
Grounded      retrieve policy doc    answer strictly from that text  +  citation

It also gives you something auditable: every answer points at a source a human can check. See our guide to using ChatGPT with your own data for how this works in practice.

2. Require citations, and make refusal acceptable

Instruct the model explicitly that answering "this is not covered in the provided documents" is a correct and valued outcome. Given how benchmark incentives shaped these models, you have to actively grant permission to abstain — it will not default to it.

system-prompt.txt
Answer only from the provided documents.
Cite the source for every factual claim.
If the documents do not contain the answer, say so plainly
and do not draw on outside knowledge.
Never infer figures, dates or names that are not written in the source.

3. Constrain the output shape

When you need data rather than prose, force the response into a schema. It removes a whole class of ambiguity and makes downstream validation possible — a field is either present and well-typed or it is not. We cover the mechanics in our ChatGPT API guide.

answer.json
{
  "answer": "30 days from delivery",
  "source_document": "returns-policy-2026.pdf",
  "source_page": 4,
  "confidence": "high",
  "answer_found_in_source": true
}

4. Match the model to the task

Reasoning-heavy work benefits from a more capable model; classification and extraction over retrieved text often does not. Given the spread across models on grounded benchmarks, it is worth testing two or three candidates on your own eval set rather than assuming the newest is best for your workload.

5. Split verification from generation

Have a second pass check whether each claim in the answer is actually supported by the retrieved text. It costs an extra call and catches a meaningful share of unsupported statements before a user ever sees them.

6. Keep humans on the consequential path

For medical, legal, financial or safety-critical output, AI drafts and a qualified human approves. This is not a failure of the technology; it is what appropriate deployment looks like at current reliability levels.

Enterprise Accuracy: Grounding Beats a Bigger Model

Organisations evaluating AI tend to start with "which model is most accurate?" The benchmark data suggests a better first question: does this system answer from our documents, and can we verify that it did?

A mid-tier model reading your actual policy document will beat a frontier model recalling a vague approximation of it, every time. That is why the accuracy conversation and the private AI conversation are the same conversation: the architecture that makes answers verifiable — retrieval over your own governed content — is also the architecture that keeps your data inside your perimeter.

Two further requirements show up in every serious deployment:

  • Permissions must survive retrieval. An assistant should never surface a document to someone who could not open it directly. See governance and access control.
  • Answers must be traceable. If you cannot show which document produced an answer, you cannot audit it — and in regulated sectors an unauditable answer is unusable regardless of whether it happened to be right.

Improving Accuracy with QAnswer

QAnswer is built on exactly this principle: answers grounded in your organisation's own content, with the source attached. Its RAG mode retrieves the most relevant document chunks for each question rather than handing an LLM an entire dataset, so the model answers from a focused, verifiable context.

In practice that means:

  • Answers drawn from your documentation, not a model's recollection of the internet
  • A citation on every answer, so a human can check it in one click
  • Access rights enforced at retrieval time
  • Deployment on-premise or in a private cloud, so nothing leaves your infrastructure

Connect it to SharePoint, Confluence, your website, databases or document stores and the assistant answers from what your organisation actually knows. That is the difference between an AI that sounds right and one you can put in front of customers or auditors — and it is why QAnswer is ISO 27001 certified and deployed at the European Parliament and the European Commission.

Frequently Asked Questions

Is ChatGPT accurate?

For grounded tasks — summarising, extracting from or answering over a document you supply — modern models are highly reliable, with the best measured under 2% hallucination on Vectara's leaderboard. For unaided recall of specific facts, figures or citations, it is considerably less reliable and should be verified. Accuracy is a property of how you use it more than of the model itself.

What is ChatGPT's accuracy rate?

There is no single rate, and any source quoting one without naming a benchmark and a task is not telling you much. On grounded summarisation, published rates range from about 1.8% to 24% hallucination depending on the model. On adversarial long-tail factual recall, error rates are far higher. The only number that should drive your decisions is the one you measure on your own questions.

Is ChatGPT always right?

No, and it does not signal when it is wrong. Wrong answers arrive in the same confident register as correct ones, which is why verification has to be built into your process rather than left to the reader's judgement.

How correct is ChatGPT compared with a search engine?

Different failure modes. A search engine returns documents and leaves interpretation to you; when it has nothing, you can see that. ChatGPT synthesises an answer and will usually produce one whether or not it has the grounds for it. Retrieval-based systems combine the two: search for the evidence, then let the model read and explain it, with the source shown.

Why does ChatGPT make things up?

Because pre-training rewards plausible text and standard benchmarks award no credit for admitting uncertainty, so guessing is the strategy that scores best. OpenAI's own researchers set this out in Why Language Models Hallucinate, and argue the fix is to change how models are scored.

Does a newer model fix accuracy?

It helps, but it does not change the category of problem. Newer models hallucinate less; none reach zero, and none can know facts absent from their training data. A modest model with retrieval typically outperforms a frontier model without it on questions about your own business.

Can ChatGPT be accurate on company-specific questions?

Only if you give it the company material. Out of the box it has never seen your policies, contracts or product documentation. Supplying the relevant content at query time via RAG — the approach behind QAnswer's AI assistants — is what makes internal question answering reliable.

How do I reduce hallucinations?

Ground answers in retrieved documents, require citations, explicitly permit "I do not know", constrain output to a schema where you need data, verify claims against the source in a second pass, and keep a human reviewer on consequential decisions.

The Bottom Line

ChatGPT is not reliably accurate as a source of facts, and it is highly reliable as a reader of facts you give it. Almost every practical accuracy problem comes from using it as the former when you could be using it as the latter.

So the useful question is not "how accurate is ChatGPT?" but "is my system giving the model the right information, and can I prove where each answer came from?" Get that right and accuracy stops being a matter of trust and becomes a matter of architecture.

Build an AI assistant that answers from your own documents, with sources attached, using QAnswer. Explore our AI Assistants and integrations, or compare plans on our pricing page.

Learn more at www.qanswer.ai

Want to see it on your own content? Contact us or email info@the-qa-company.com


Back to Blog

Share this article:

The AI platform that works.

Try for free today