Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/examples/gpqa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions tools/generate_readmes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading