Skip to main content

An auditor for LLM evaluations — tells you whether you can trust your eval results.

Project description

EvalTrust

An auditor for LLM evaluations.
It doesn't tell you how good your model is — it tells you whether you can trust the evaluation you used to decide.

Install · Quick start · What it checks · Docs · Contributing

PyPI Python versions License: MIT CI


The problem, in ten seconds

You spent a week evaluating two models. One scored 84.7%, the other 86.2%. Ship the better one, right?

Maybe. Or maybe that 1.5-point gap is pure luck and the two models are actually the same. You can't tell by looking, and neither can anyone else. People ship models, publish benchmark numbers, and kill good ideas every day based on gaps that are just noise.

EvalTrust does the math that tells you. Point it at your eval results and it says, in plain English, whether the difference is real, whether it's big enough to matter, and whether you had enough data to know — then gives you one verdict: High, Moderate, or Low confidence. You keep using whatever eval tool you already have. Think of it as a code reviewer for your eval's conclusion.

Why you can't just eyeball it

Think about a coin. Flip it 10 times, get 6 heads. Rigged? No — that happens by luck constantly. Now flip it 1,000 times and get 600 heads. That's real. Six out of ten and six hundred out of a thousand look the same on the surface, but only one is signal.

"84.7 vs 86.2" is the exact same trap. EvalTrust computes how likely that gap is to be a lucky streak. If it's likely luck, it tells you straight: don't ship on this yet.

Example

$ evaltrust audit gpt4_run.json claude_run.json
EvalTrust  claude-3 vs gpt-4 · 150 examples · deepeval

● Low Confidence
Not enough data to call a winner. Collect more before deciding.

Statistical Validity
  ✗ Improvement of claude-3 over gpt-4 is inconclusive
  ! Effect size is negligible
  ! Sample size may be too small
Benchmark Health
  ✓ Benchmark has headroom
  ✓ Benchmark discriminates between examples

What to do
  • Don't call a winner yet. Collect more examples first.
  • Collect ~90 more examples (~240 total) to catch a small effect.

Two runs at 71% and 74% — a three-point "win" that is actually noise. EvalTrust catches it before it becomes a shipping decision. (Add --explain for the exact p-values and reasoning behind each line.)

Why the numbers are real, not our opinion

Fair question for a tool that judges trust. Three things keep it honest:

  • It runs standard, decades-old statistics — the same significance tests, confidence intervals, and power analysis scientists already use. Nothing invented.
  • The math is proven correct. Every calculation is checked in the test suite against the libraries researchers trust (scipy, statsmodels) and must produce the same numbers. So it's not "trust us" — it's "our math matches the reference everyone already trusts."
  • It's reproducible. Same input, same answer, every time. An opinion drifts; a calculation doesn't.

One honest limit: EvalTrust checks whether your numbers support your conclusion. If the eval measured the wrong thing to begin with, it catches some of that (saturated benchmarks, judges that disagree) but not all of it. It's the statistician auditing your results, not a replacement for a well-designed eval.

Installation

pip install evaltrust

Requires Python 3.10 or newer. That's the whole setup — no API keys, no config, no account.

Install from source (for development)
git clone https://github.com/k-dickinson/evaltrust
cd evaltrust
pip install -e ".[dev]"
pytest

Quick start

  1. Run your evaluation with whatever tool you already use (Promptfoo, DeepEval, or anything that can export scores to CSV/JSON) and save the output.

  2. Point EvalTrust at it:

    # A file that already compares two or more models (e.g. Promptfoo):
    evaltrust audit results.json
    
    # Two single-model runs (e.g. two DeepEval runs), paired by example id:
    evaltrust audit gpt4_run.json claude_run.json
    
  3. Read the verdict. Fix what it flags. Re-run.

Want to see it work before pointing it at your own data? The repo ships sample files:

evaltrust audit examples/clean_win.json        # -> High Confidence
evaltrust audit examples/borderline.json       # -> Moderate Confidence
evaltrust audit examples/deepeval_gpt4.json examples/deepeval_claude.json

Useful flags:

Flag Effect
--json Emit the full audit as JSON, for CI logic and experiment trackers.
--plain Plain ASCII output — safe for Windows terminals, CI logs, and piping to a file.
--strict Exit with a non-zero status on a Low-Confidence verdict (use it to gate CI).
--model-a, --model-b Choose which two models to compare, or label the two files.
--alpha Significance level (default 0.05).
--seed Seed for the resampling (results are deterministic; change only to stress-test).

Use it from Python

The CLI is a thin wrapper over a small API, so you can audit inside a notebook, a training script, or a CI job:

import evaltrust

report = evaltrust.audit("results.json")           # path, two paths, or an EvalData
print(report.verdict.level)                         # VerdictLevel.HIGH / MODERATE / LOW

if report.verdict.level is evaltrust.VerdictLevel.LOW:
    raise SystemExit("Evaluation isn't trustworthy enough to ship on.")

report.to_dict()          # machine-readable, JSON-serializable — log it, store it, diff it

Gate CI on it

--strict returns a non-zero exit code on a Low-Confidence verdict, so an audit can block a merge the way failing tests do:

# .github/workflows/eval.yml
- name: Audit the evaluation
  run: |
    pip install evaltrust
    evaltrust audit results.json --strict --plain

What it checks

EvalTrust audits four pillars of trust and ends in one plain-language verdict — High, Moderate, or Low Confidence. There is no arbitrary aggregate score.

Pillar The question it answers
Statistical Validity Is the difference a real improvement, no real difference, or just too little data to tell? Significance (McNemar for pass/fail, paired permutation for continuous), equivalence testing, an interpretable effect size, and the minimum detectable effect.
Benchmark Health Can the benchmark even separate these models, or is it saturated / flat?
Repeatability If you reran the evaluation, would the winner stay the winner? Uses repeated-run data when the file contains it.
Judge Reliability Would a different judge reach the same verdict? Uses multi-judge data when the file contains it.

Every finding follows the same rule — why it matters, how we detected it, and how to fix it. Checks that need extra data (repeated runs, multiple judges) don't guess when it's missing; they tell you how to generate it.

See docs/checks.md for the methods and thresholds behind each one.

Supported inputs

You never write an EvalTrust-specific format. It reads what your tool already produced and auto-detects the shape. First-class adapters today:

  • Promptfoo results (several providers compared across test cases)
  • DeepEval test-results export (one model per run — pass two files to compare)
  • Nested JSON{"models": [...], "examples": [{"id", "scores": {...}}]}
  • Record lists — JSON like [{"id", "model", "score"}, ...]
  • CSV — long (id,model,score) or wide (id,gpt,claude)

Tools without a dedicated adapter yet (LangSmith, OpenEvals, and others) work by exporting to CSV or a record list — usually a one-liner. More native adapters are a top roadmap item; contributing one is straightforward. Details and single-model pairing in docs/input-formats.md.

How it works

your eval output ──▶ auto-detect + adapter ──▶ canonical model ──▶ audit ──▶ verdict

Adapters map every format into one internal representation, so the statistics are written once and work everywhere. Every statistical method is validated in the test suite against an independent reference (scipy and statsmodels), and all resampling is seeded, so the auditor is itself reproducible. See docs/architecture.md.

Roadmap

  • Now: offline CLI and Python API, four pillars, terminal / JSON / plain output, equivalence testing, adapters for Promptfoo, DeepEval, JSON, and CSV.
  • Next: multi-metric eval suites (auditing several metrics at once with multiple-comparison correction), more native adapters, and an optional HTML report.
  • Later: opt-in orchestration for the pillars that need to generate evidence (robustness perturbations, extra judges) and a provenance/reproducibility check.

Contributing

Contributions are welcome — new format adapters and additional checks especially. Start with CONTRIBUTING.md. All participants are expected to follow the Code of Conduct. Report security issues per the security policy.

License

EvalTrust is released under the MIT License — a permissive, OSI-approved license. Anyone, including companies and organizations, may use, modify, and distribute it, in commercial or proprietary settings, free of charge. There is no copyleft obligation and no contributor license agreement to sign.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

evaltrust-0.3.0.tar.gz (62.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

evaltrust-0.3.0-py3-none-any.whl (42.3 kB view details)

Uploaded Python 3

File details

Details for the file evaltrust-0.3.0.tar.gz.

File metadata

  • Download URL: evaltrust-0.3.0.tar.gz
  • Upload date:
  • Size: 62.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for evaltrust-0.3.0.tar.gz
Algorithm Hash digest
SHA256 839ecf6ef67177b4e17eccc0395e614ee9ddcf157522592394507eb575742eee
MD5 05546dbcb55d31c89ce78fba7355860d
BLAKE2b-256 4f2a500f9ea1995abc4755e851412e859d80db8f09a360e4cac8f9f17f7cfcc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for evaltrust-0.3.0.tar.gz:

Publisher: publish.yml on k-dickinson/evaltrust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file evaltrust-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: evaltrust-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 42.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for evaltrust-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16704b68f4473583d2c4cc7c814ddd200d6f73a5cda8bb3f751397ab236571d3
MD5 462ad61e8a824b7de09e10dafa99e010
BLAKE2b-256 c8a2605760d97d1b2410067a6c1bcc0f71d3ff4f76660e600655465cf10d1a39

See more details on using hashes here.

Provenance

The following attestation bundles were made for evaltrust-0.3.0-py3-none-any.whl:

Publisher: publish.yml on k-dickinson/evaltrust

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page