File size: 707 Bytes
473253d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash
# Fixed run command (identical on every experiment node). Boots uv, syncs the
# locked env from pyproject.toml/uv.lock, then runs the full claim-verification
# CLI which writes EVAL.md + raw artifacts under .openresearch/artifacts/.
set -euo pipefail

# --- bootstrap uv (no system pip) -------------------------------------------
if ! command -v uv >/dev/null 2>&1; then
  curl -LsSf https://astral.sh/uv/install.sh | sh
  export PATH="$HOME/.local/bin:$PATH"
fi

# --- reproducible env from the lockfile --------------------------------------
uv sync --frozen --no-progress

# --- run every claim verifier -----------------------------------------------
uv run python -m rhi_repro.cli