This is a benchmark for testing how capable different LLMs are at solving ascii mazes. Here is an example 4x4 maze:
START
v
# #######
# #
# ##### #
# # #
# #######
# # #
##### # #
# #
####### #
^
FINISH
Here is the solution:
#.#######
#. #
#.##### #
#.# #
#.#######
#.....# #
#####.# #
# ...#
#######.#
The benchmark randomly generates mazes from a seed, and evaluates LLMs ability to solve the maze.
Some LLMs tend to struggle with perfectly formatting the output for some reason, so we report scores at varying string distances to the correct response.
We evaluate all models using the OpenRouter API, to keep it simple. If it's not on open router, the benchmark will not be run.
-
Copy
.env.exampleto.envand add your OpenRouter API key:cp .env.example .env -
Edit the
.envfile and replaceyour_api_key_herewith your actual OpenRouter API key.
To generate and solve an example maze:
uv run ascii-maze-benchmark generate-example WIDTH HEIGHT [--seed SEED]
Example:
uv run ascii-maze-benchmark generate-example 5 5 --seed 42
To run benchmarks against a specific model:
uv run ascii-maze-benchmark run-benchmark MODEL_ID [OPTIONS]
Options:
--maze-sizes TEXT: Comma-separated list of maze sizes to test (format: WIDTHxHEIGHT)--mazes-per-size INTEGER: Number of different mazes to generate per size--seed INTEGER: Random seed for reproducible maze generation--cache-dir TEXT: Directory to cache API responses (uses platform-specific directory if not specified)
Example:
uv run ascii-maze-benchmark run-benchmark anthropic/claude-3-haiku-20240307 --maze-sizes 3x3,4x4 --mazes-per-size 2
- API responses are cached in a platform-specific directory:
- Linux:
~/.cache/ascii-maze-benchmark/api_responses - macOS:
~/Library/Caches/ascii-maze-benchmark/api_responses - Windows:
C:\Users\<username>\AppData\Local\ascii-maze-benchmark\Cache\api_responses
- Linux:
- Test the benchmarking code on a cheap model on OpenRouter first, to save costs.
- Use the
.envfile to manage OpenRouter credentials. - Use
uvfor package management and running commands. - There is a
src/ascii_maze_benchmark/generate_maze_script.pyfile you can use as a reference for maze generation logic.