$ErrorActionPreference = "Stop" $repoRoot = Split-Path -Parent $MyInvocation.MyCommand.Path $pythonScript = Join-Path $repoRoot "stage_and_publish_veriloop_coder_e1.py" if (-not $env:HF_TOKEN -and -not $env:HUGGING_FACE_HUB_TOKEN) { throw "HF_TOKEN or HUGGING_FACE_HUB_TOKEN is not set." } python -m pip install -U huggingface_hub python $pythonScript ` --source-repo "Qwen/Qwen3-Coder-Next" ` --target-repo "veriloop-lab/veriLoop-coder-e1" ` --display-name "VeriLoop-Coder-E1" ` --stage-dir "D:\hf_stage\veriloop_coder_e1" ` --revision "main"