| set -euo pipefail | |
| ROOT="${ROOT:-$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)}" | |
| cd "$ROOT" | |
| UV="${UV:-/home/clouduser/miniconda3/envs/vllm-nightly/bin/uv}" | |
| : "${MODEL_BASE_URLS:?Set this from artifacts/servers/<run>/endpoints.env after host readiness}" | |
| "$UV" run agentic-search benchmark run \ | |
| --dataset data/raw/hotpotqa/dev_distractor.json \ | |
| --corpus data/processed/multihop_context_union.jsonl \ | |
| --experiment configs/experiments/controller_matrix.yaml \ | |
| --no-cache \ | |
| --run-id "${RUN_ID:-final_$(date -u +%Y%m%d_%H%M%S)}" | |