From 9ee81ffff578ffdc0cc8491e84d12bc3f297ee2b Mon Sep 17 00:00:00 2001 From: Tania <120768997+ItsTania@users.noreply.github.com> Date: Tue, 26 May 2026 17:30:34 +1000 Subject: [PATCH 1/5] Update evaluation command in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 953e06a..16f9ea8 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This template contains: uv sync # Run an evaluation - uv run inspect eval / --model openai/gpt-4o + uv run inspect eval /.py@ --model openai/gpt-4o # Run tests uv run pytest From b1a2dc81009f3959e4bd7ffed6f15cc8f7d75651 Mon Sep 17 00:00:00 2001 From: Tania <120768997+ItsTania@users.noreply.github.com> Date: Tue, 26 May 2026 17:41:39 +1000 Subject: [PATCH 2/5] Update path for evaluation run command in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 16f9ea8..9d546af 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ This template contains: uv sync # Run an evaluation - uv run inspect eval /.py@ --model openai/gpt-4o + uv run inspect eval src//.py@ --model openai/gpt-4o # Run tests uv run pytest From 52cf5ef4ffa74c13d793c8f71d06b82c3b2e1fc3 Mon Sep 17 00:00:00 2001 From: Tania <120768997+ItsTania@users.noreply.github.com> Date: Tue, 26 May 2026 17:45:07 +1000 Subject: [PATCH 3/5] Update README with task evaluation instructions Added instructions for running registered tasks in README. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9d546af..73f4e37 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,9 @@ This template contains: # Run an evaluation uv run inspect eval src//.py@ --model openai/gpt-4o + # Or if the task is registered in the .tomp file under `[project.entry-points.inspect_ai]` + uv run inspect eval eval_name + # Run tests uv run pytest From 425dd0e405e00a096fb3eb8b1f01d772113647d3 Mon Sep 17 00:00:00 2001 From: Tania <120768997+ItsTania@users.noreply.github.com> Date: Tue, 26 May 2026 17:45:47 +1000 Subject: [PATCH 4/5] Update README to reference pyproject.toml --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 73f4e37..10a3b17 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ This template contains: # Run an evaluation uv run inspect eval src//.py@ --model openai/gpt-4o - # Or if the task is registered in the .tomp file under `[project.entry-points.inspect_ai]` + # Or if the task is registered in the pyproject.toml file under `[project.entry-points.inspect_ai]` uv run inspect eval eval_name # Run tests From 37532885e095ed38e05aca08e249c02bda7bdcef Mon Sep 17 00:00:00 2001 From: Tania <120768997+ItsTania@users.noreply.github.com> Date: Tue, 26 May 2026 18:29:57 +1000 Subject: [PATCH 5/5] Remove the extra line --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 10a3b17..0cacaea 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,6 @@ This template contains: # Run an evaluation uv run inspect eval src//.py@ --model openai/gpt-4o - - # Or if the task is registered in the pyproject.toml file under `[project.entry-points.inspect_ai]` - uv run inspect eval eval_name # Run tests uv run pytest