Skip to content
Closed
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
9 changes: 2 additions & 7 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
# --all-extras: mypy walks every eval's tests, so per-eval extras
# (e.g. lab_bench_2's labbench2 dep, which transitively provides Pillow)
# must be present for import resolution.
run: uv sync --frozen --all-extras
run: uv sync --frozen
- name: Run mypy
run: uv run mypy --version && uv run mypy src tests

Expand Down Expand Up @@ -150,9 +147,7 @@ jobs:
with:
python-version: "3.12"
- name: Install dependencies
# --all-extras: generate_readmes.py importlib-imports each eval
# package to introspect @task signatures; missing extras = ImportError.
run: uv sync --frozen --all-extras
run: uv sync --frozen
- name: Regenerate READMEs
run: uv run python tools/generate_readmes.py
- name: Fail if docs changed
Expand Down
1 change: 1 addition & 0 deletions .template-sync-sha
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ab3623ff56bd13c2b3fcdc7df24f888f415438b4
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# MANAGED FILE - Updates pulled from template. See MANAGED_FILES.md
"""
Analyze sample validity from Inspect Scout scan results.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# MANAGED FILE - Updates pulled from template. See MANAGED_FILES.md
"""
Extract and summarize Inspect Scout scan results.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# MANAGED FILE - Updates pulled from template. See MANAGED_FILES.md
"""
Run all default Inspect Scout scanners on eval logs.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# MANAGED FILE - Updates pulled from template. See MANAGED_FILES.md
"""
Default scanners for trajectory analysis using Inspect Scout.

Expand Down
1 change: 1 addition & 0 deletions agent_artefacts/trajectory_analysis/inspect_scout/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# MANAGED FILE - Updates pulled from template. See MANAGED_FILES.md
"""Shared utilities for Inspect Scout analysis scripts."""

from pathlib import Path
Expand Down
7 changes: 7 additions & 0 deletions src/examples/sync_theirs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
tree template/main:src/examples/

__init__.py
agentic/
gpqa/
llm_judge/
simple_qa/
6 changes: 6 additions & 0 deletions tests/examples/sync_theirs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
tree template/main:tests/examples/

test_agentic.py
test_gpqa.py
test_llm_judge.py
test_simple_qa.py
Loading