feat(bench): HMMT/AIME small-subset harness + answer extraction tests

This commit is contained in:
transcrilive
2026-05-10 03:20:33 +02:00
parent 5dc447fe6c
commit 6745416228
4 changed files with 185 additions and 0 deletions

7
conftest.py Normal file
View File

@@ -0,0 +1,7 @@
"""Root conftest : add repo root to sys.path so `from scripts.* import ...` works."""
import sys
from pathlib import Path
_ROOT = Path(__file__).resolve().parent
if str(_ROOT) not in sys.path:
sys.path.insert(0, str(_ROOT))