File size: 562 Bytes
3b3fd0d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$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"