File size: 284 Bytes
ec6eb20 | 1 2 3 4 5 6 7 8 9 10 | #!/bin/bash
cd /home/openclaw/distillation
source .env
export HF_TOKEN="${HF_TOKEN:-$(cat ~/.cache/huggingface/token 2>/dev/null || echo '')}"
exec python3 scripts/remote_validator.py \
--lium-api-key "$LIUM_API_KEY" \
--lium-pod-name "distil-eval" \
--tempo 600 \
--use-vllm
|