veriloop-coder-e1 / publish_veriloop_coder_e1.ps1
ConorWang's picture
Upload publish_veriloop_coder_e1.ps1
3b3fd0d verified
raw
history blame
562 Bytes
$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"