GMIHHrJ6Wp / code /run.sh
DineshAI's picture
Rigorous claim-by-claim reproduction: model-free RHI + R-SAMPLE, 6/6 VERIFIED
473253d verified
Raw
History Blame Contribute Delete
707 Bytes
#!/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