npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

cheapgpt-benchmarks

v0.1.0

Published

Interactive CheapGPT TTFT tests with opt-in public run results

Readme

CheapGPT Benchmarks

Public, reproducible evidence for the observed quality of models served by CheapGPT.

[!IMPORTANT] The latest published dataset is a complete ARC-AGI-2 run: 67.778% for gpt-5.6-sol, reasoning medium, through CheapGPT. All 334 logical attempts pass deterministic verification. The artifacts are checksummed but not signed as an official release.

Benchmark results measure the capability observed through the declared route. The returned model name is provider-controlled and may be normalized to the requested name; it does not independently establish the identity of the upstream model.

Measure TTFT with npm

npx cheapgpt-benchmarks ttft

Requires Node.js 20.11+. Enter your API key privately, choose a public nickname and select a model. The CLI runs 10 paid streaming requests and publishes one aggregate result in the TTFT leaderboard. Add --no-publish for local-only measurements. No request/response bodies or API keys are saved by this npm CLI.

Installation, measurement contract and privacy. The npm command becomes available after the first npm release; public submissions also require its matching CheapGPT backend deployment. The Python quality runner below remains separate.

Latest result

| Run | Benchmark | Model / reasoning | Score | Coverage | | --- | --- | --- | ---: | --- | | 2026-09-04.3 | ARC-AGI-2 public evaluation | gpt-5.6-sol / medium | 67.778% | 120 tasks, 167 test pairs, 334 attempts |

Completed on September 5, 2026. 75 tasks are fully solved, 13 partially solved. The run contains 370 transport records: 335 successful responses and 35 HTTP errors, all followed by successful retries. One logical attempt received an extra response after a parse failure. The run resumed with streaming after 300-second non-streaming timeouts: 118 successful responses use non-streaming and 217 use streaming, with zero streaming errors.

Run notes · Machine-readable result and SHA-256 hashes · HTML report · Full request/response log

Verify the committed result without making API calls:

uv run python scripts/export_result.py --check

Only the explicitly selected run is included in results/. Local runs/ directories are ignored. official/index.json remains reserved for signed releases.

Run the public quick profile

CHEAPGPT_API_KEY=... uvx cheapgpt-benchmarks run --model gpt-5.5

The default quick-v1 profile runs 26 fixed items from all five benchmarks three times each. It verifies the bundled plan hashes, retains all API attempts and produces terminal, HTML and JSONL results. LiveBench and LiveCodeBench scoring runs inside a network-disabled Docker sandbox; the pinned scorer image is pulled from GHCR, with a reproducible local build as fallback.

Comparable full contracts are also runnable. GPQA Diamond uses the Artificial Analysis contract:

CHEAPGPT_API_KEY=... uv run cheapgpt-benchmarks run \
  --model gpt-5.6-sol \
  --profile full \
  --track leaderboard \
  --benchmark gpqa-diamond

The runner downloads the public GPQA Diamond CSV, verifies its SHA-256, generates the published Artificial Analysis prompt with five deterministic permutations per question, fixes the model's reasoning effort explicitly and caps all traffic at 100 RPM by default. --resume RUN_DIRECTORY continues only missing logical attempts. The completed directory contains the full request and response JSONL, deterministic scores with a 95% interval and a local HTML report.

ARC-AGI-2 uses the ARC Prize public-evaluation contract:

CHEAPGPT_API_KEY=... uv run cheapgpt-benchmarks run \
  --model gpt-5.6-sol \
  --profile full \
  --track leaderboard \
  --benchmark arc-agi-2 \
  --effort medium \
  --concurrency 4 \
  --max-rpm 100 \
  --timeout 1800

This downloads the 120 public evaluation tasks at a pinned commit and checksum, generates the ARC Prize text prompt for all 167 test grids and makes two logical attempts per grid. Scoring is the per-task average, with either attempt allowed to solve a test grid. Requests now use Responses streaming and save the terminal response object. See the run notes for the exact retry policy and the mixed transport history of the committed result.

Benchmark matrix

| Benchmark | Variant | Upstream | | --- | --- | --- | | ARC-AGI-2 | public evaluation, text | ARC Prize | | LiveBench | pinned release | LiveBench | | Humanity's Last Exam | text-only | HLE | | GPQA | Diamond | GPQA | | MMLU-Pro | complete | MMLU-Pro | | LiveCodeBench | complete | LiveCodeBench |

Every model receives the same dataset, scorer and benchmark configuration. V1 models:

  • gpt-5.6-sol (low by default)
  • gpt-5.6-terra (medium by default)
  • gpt-5.6-luna (medium by default)
  • gpt-5.5 (medium by default)

The pre-run reference matrix records independent results for every published effort and gates expensive official runs. The first eligible comparison contract is Artificial Analysis GPQA Diamond: 198 questions, five repeats, matching effort and published prompt/scoring rules.

What the Python quality runner records

Each transport attempt records the complete benchmark request and all API content returned to the runner, including final text, tool calls, citations and available reasoning summaries. It also records requested and returned model names, run/item/request IDs, timestamps, latency, usage, errors, retries and a canonical SHA-256.

Authorization headers, API keys, cookies, PII, internal account/route IDs, internal URLs and unrelated user traffic are never publication artifacts. The runner has no telemetry and does not upload local results.

Development

uv sync --all-extras --dev
uv run cheapgpt-benchmarks doctor
uv run pytest
uv run ruff check .
uv run mypy

Adapter developers may pass a validated JSONL request plan with --plan. This low-level path exists for harness integration; its output must not be represented as an official result.

See methodology, artifact contract, security, community submissions, leaderboard contract, official release procedure, and canary protocol. The machine-readable comparison decisions are in references/matrix.yaml.

Licensed under Apache-2.0.