OpenAI Introduces SimpleQA: A Benchmark for Measuring Model Factuality (Oct 2024)
Source
- Title: Introducing SimpleQA
- Organization: OpenAI
- Date: October 2024
- URL: https://openai.com/index/introducing-simpleqa/
- Category: Evaluation of Search Engines
- Evaluation of Retrieval-Augmented Generation: A Survey (arXiv:2405.07437)
- ARES: An Automated Evaluation Framework for RAG (arXiv:2311.09476)
- A Dataset of Information-Seeking Questions and Answers Anched in Research Articles (arXiv:2105.03011)
- AI Search Has A Citation Problem (Columbia Journalism Review, Mar 2025)
- AgentBoard: An Analytical Evaluation Board of Multi-turn LLM Agents (arXiv:2401.13131)
- Researchers: SimpleQA offers a reproducible factuality baseline; report abstention and error rates separately, not just accuracy.
- Engineers: Hallucination rate, latency, and cost are hard production constraints; combine automated factuality grading with human audits and citation checks.
- Product teams: User-perceivable reliability (correct answers, honest abstentions) matters more than offline ranking metrics alone.
What is SimpleQA
SimpleQA is a benchmark released by OpenAI in October 2024 to measure the factuality of language models on short, fact-seeking questions. Its central motivation is that models frequently answer incorrect questions with high confidence — the hallucination problem — and that frontier models have saturated many older short-form QA benchmarks, making it hard to measure further progress.
SimpleQA is designed around three key properties:
1. Easy to grade — questions have short, verifiable answers, so correctness can be checked automatically against a reference answer without expensive human labeling. 2. Hard for frontier models — the questions target knowledge where models commonly err, so the benchmark does not saturate immediately. 3. Hallucination-aware — grading distinguishes between a correct answer, an incorrect answer, and a failure to answer (abstention), allowing measurement of both accuracy and calibration.
This makes SimpleQA a practical metric for tracking how often a model produces confident factual errors versus appropriately declining to answer.
Context in Search and RAG Evaluation
The post situates SimpleQA within the broader landscape of information retrieval and retrieval-augmented generation (RAG) evaluation. As systems shift from static retrieval pipelines to LLM-driven and agentic search, evaluation metrics move beyond classic ranking measures (nDCG, MRR, Recall@k) toward task-level signals such as answer correctness, citation accuracy, and hallucination rate — exactly the dimensions SimpleQA targets.