Spaces:
Running
Running
File size: 445 Bytes
d094faf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/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}" \
"${@}"
|