I built a benchmark that tests coding LLMs on REAL codebases (65 tasks, ELO ranked)

Posted by hauhau901@reddit | LocalLLaMA | View on Reddit | 87 comments

Hey everyone, been working on something for a while and figured it's time to share it.

I kept seeing new models drop every week with claims of being 10x better, benchmarks that don't translate to actual coding, and demos that look great but fall apart on real work. so I started building my own benchmark to figure out what actually works.

It's called APEX Testing. every task is an actual codebase with real code, real dependencies, and a real problem to solve. fix this bug, add this feature, refactor this module, build this from scratch. It's (currently) comprising of 65 tasks across 8 categories, ranging from React components to race condition debugging to building CLI tools. Each model gets a fresh clone of the same repo with the exact same starting point and exact same conditions.

Grading is done by multiple SOTA models independently, and then I also personally review every single output to catch anything unfair like timeouts or infra hiccups. If a model got unlucky, I rerun it (which ended up causing a lot bigger of a hole in my wallet haha). The whole thing is ranked with ELO, and you can filter by category to see where models actually shine vs where they struggle.

A couple things that caught me off guard so far:

- GPT 5.1 Codex Mini beating GPT 5.2 Codex pretty convincingly even though smaller and older, it came out way more consistent (but it also seemed to REALLY splurge on tokens)

- Some models look great on average but completely bomb certain task types

- The cost difference between models with similar scores is huge

It's a solo project, funded out of my own pocket (you can see total spend on the homepage lol). hope it helps you cut through the noise and pick the right model for your work.

https://www.apex-testing.org

Hope you all find it useful!

P.S. I will work on testing more quanted models as well and I might add more tests as well in the future.