smevals - a small eval suite for evaluating models, prompts, and harnesses Simon Willison released smevals, a new open-source tool for running small eval suites across different model configurations, grading results, and generating static HTML reports. The tool, available via `uvx smevals`, supports commands like `run`, `grade`, `serve`, and `build`, and is designed to evaluate models, prompts, and harnesses. Willison describes it as his third iteration on eval tooling, which he plans to expand and apply to his own projects. smevals - a small eval suite for evaluating models, prompts, and harnesses https://primeradiant.com/blog/2026/smevals.html The result is smevals , a new tool for running small eval suites across different model configurations and grading the results. This blog entry describes the tool in detail. Here's the 10 second version: run uvx smevals docs to learn the tool this outputs Once you've created an eval - which takes the form of a directory with some YAML files - you can run it against models like this: uvx smevals run path-to-eval/ -m gpt-5.5 -m claude-opus-4.6 Runs are treated separately from grading operations - you can grade your runs against your defined set of checks using: uvx smevals grade path-to-eval/ Then you can run a localhost web server to explore the results: uvx smevals serve path-to-eval/ Or run the smevals build command to build that report as static HTML, which you can then host anywhere. Here's an example https://static.simonwillison.net/static/2026/smevals-haiku-build/ /haiku showing an eval suite I built to evaluate how well models can write haikus. I've been trying to figure out an approach I like for evals for several years now. smevals is my third iteration on the idea and it feels right to me. I'm looking forward to expanding this more in the future, as well as pointing it at some of my own projects. Tags: projects https://simonwillison.net/tags/projects , ai https://simonwillison.net/tags/ai , generative-ai https://simonwillison.net/tags/generative-ai , llms https://simonwillison.net/tags/llms , llm https://simonwillison.net/tags/llm , evals https://simonwillison.net/tags/evals , jesse-vincent https://simonwillison.net/tags/jesse-vincent