graphtestbed / agents /mlevolve /examples /run_figraph.sh
Zhu Jiajun (jz28583)
Add agents/ harness integrations and HF Space scoring deployment
d094faf
raw
history blame contribute delete
445 Bytes
#!/usr/bin/env bash
# End-to-end smoke test of MLEvolve on the `figraph` task.
set -euo pipefail
REPO_ROOT="$(cd "$(dirname "$0")/../../.." && pwd)"
cd "${REPO_ROOT}"
: "${CLIPROXYAPI_KEY:?Set CLIPROXYAPI_KEY before running}"
python3 -m agents.mlevolve.runner \
--task figraph \
--model "${MODEL:-gpt-5.3-codex-spark}" \
--steps "${STEPS:-30}" \
--time-limit-min "${TIME_LIMIT_MIN:-30}" \
--gpus "${GPUS:-0}" \
"${@}"