From 1cd1b7c4f06052da5acf56f6866e3e6f4832250f Mon Sep 17 00:00:00 2001 From: ItsTania <120768997+ItsTania@users.noreply.github.com> Date: Fri, 5 Jun 2026 17:45:03 +1000 Subject: [PATCH] Update docs generation --- src/examples/gpqa/README.md | 6 ++++++ tools/generate_readmes.py | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/examples/gpqa/README.md b/src/examples/gpqa/README.md index 8f958a2..40f3d05 100644 --- a/src/examples/gpqa/README.md +++ b/src/examples/gpqa/README.md @@ -35,6 +35,12 @@ from examples.gpqa import gpqa_diamond eval(gpqa_diamond) ``` +If your directory name doesn't match your package name but you have registered your eval task, you can also run: + +```bash +uv run inspect eval gpqa_diamond --model openai/gpt-5-nano +``` + After running evaluations, view logs with: ```bash diff --git a/tools/generate_readmes.py b/tools/generate_readmes.py index 47e185a..72fb209 100644 --- a/tools/generate_readmes.py +++ b/tools/generate_readmes.py @@ -248,6 +248,12 @@ def build_usage_section(eval_info: EvalInfo) -> list[str]: eval({first_task}) ``` + If your directory name doesn't match your package name but you have registered your eval task, you can also run: + + ```bash + uv run inspect eval {first_task} --model openai/gpt-5-nano + ``` + After running evaluations, view logs with: ```bash