PromptForge
AI Glossary

Cost & performance

Evaluation (evals)

Also known as: evals, eval, benchmarking

Definition

Evaluation is systematically measuring AI output quality against a test set, rather than judging from a handful of examples. It is what makes prompt and model changes safe to ship.

Without evals, you are guessing. A prompt change that fixes the case in front of you may quietly break five others, and you will not find out until users do.

A workable eval set starts small: 20-50 representative inputs with expected outputs or grading criteria. Run it after every meaningful change. Grade automatically where you can (exact match, schema validity, presence of required elements) and use an LLM judge or human review for subjective quality.

Include the failures you have already fixed. An eval set that only contains easy cases will pass forever while quality drifts.

Related terms

Put this into practice

Understanding the term is step one. Our free courses and tools let you actually use it.