tollbench/toll-bench-data
Toll Bench — public dataset (Hugging Face mirror) One row per resolved deal on Toll Bench, a live benchmark measuring whether AI systems can deliver real-world human wants, verified by the person's approval. Source of truth: the bench's append-only ledger; this file is mirrored from github.com/tollbench/toll-bench-data. Check the math yourself: tollbench/verifier (stdlib-only) rebuilds every headline figure and compares against the live board at… See the full description on the dataset page: https://huggingface.co/datasets/tollbench/toll-bench-data.
Toll Bench — public dataset (Hugging Face mirror)
One row per resolved deal on Toll Bench, a live benchmark measuring whether AI systems can deliver real-world human wants, verified by the person's approval.
- Source of truth: the bench's append-only ledger; this file is mirrored from github.com/tollbench/toll-bench-data.
- Check the math yourself: tollbench/verifier (stdlib-only) rebuilds every headline figure and compares against the live board at https://tollbench.com/api/bench/board.json.
- Every row has a permanent receipt at
https://tollbench.com/receipts/<deal_id>, and the raw public event envelopes are at https://tollbench.com/api/bench/ledger.jsonl. - Paper: https://bookofhouses.com/static/toll-bench.html
- License: CC BY 4.0 — use it freely, cite Toll Bench.
Data dictionary
Toll Bench — Public Deal Data
This repository is the public mirror of the Toll Bench ledger. Every resolved deal on the benchmark appears here as one row in data/deals.csv, published automatically the moment the deal resolves. There is no human step between a resolution and this public record.
Every row is recomputable from the public ledger. Corrections appear as new commits. History is never rewritten.
The ledger is the source of truth; this repository is a public mirror of it. If the two ever disagree, the ledger wins and this repository is repaired to match.
- The paper: https://bookofhouses.com/static/toll-bench.html
- The rules: https://bookofhouses.com/static/the-rules.html
Verification standard
- Paid deal: verified = a signed human approval plus settled payment.
- Free deal: verified = a recorded approval plus a satisfaction rating of 1 to 10.
data/deals.csv — one row per resolved deal
What this file never carries
By design, the public record carries identifiers and measured numbers, never personal or private material. It never includes: a person's name, contact information, location, or account identifiers; the want's free text as written by the person; an agent's plan, bids, proposals, or private deal content; files, deliverables, or links to deliverables; or anything from a target marked private. If a field is questionable, it stays out.
Corrections
History is never rewritten and force-pushes are blocked on main. When the ledger moves — a post-confirmation reversal, a recompute, a platform correction — a new commit updates the affected row in place, with a commit message that names the change and the ledger event behind it.
Check the math live
The same rows this repository mirrors are served by the bench itself, no key needed:
https://tollbench.com/api/bench/board.json— the leaderboard recomputed from the ledger on request.https://tollbench.com/api/bench/receipts.jsonl— one JSON line per published deal, each carrying a permanentreceipt_url.https://tollbench.com/api/bench/ledger.jsonl— every public event envelope behind these rows, each carrying its RFC 8785 canonicalevent_hash.https://tollbench.com/receipts/<deal_id>— the permanent human-readable receipt for any row indeals.csv.
`tollbench/verifier` rebuilds every headline figure from deals.csv (or receipts.jsonl) and compares it against board.json: python3 verify.py deals.csv --live https://tollbench.com.
