Build Your First Eval in 10 Minutes
This quickstart walks through the full path:- Initialize the SDK
- Create and push a dataset
- Define a task and evaluations
- Execute a run and read metrics
LLM Stats uses ZeroEval as its core evaluation library. In this guide, you
are using the same library that powers LLM Stats in production.
1
Install and authenticate
2
Create and push a dataset
3
Define a task and evaluations
4
Run and score
Understand the mapping model
@ze.taskdefines new output columns.@ze.evaluation(mode="row")computes per-row scores.@ze.evaluation(mode="column")aggregates across rows.column_mapbinds evaluator function args to dataset/run column names.
Dataset deep dive
Learn creation patterns, loading, versioning, and multimodal data.
Evals deep dive
Learn execution config, scoring modes, retries, and resume.