ConorWang commited on
Commit
3b3fd0d
·
verified ·
1 Parent(s): 29d8f6e

Upload publish_veriloop_coder_e1.ps1

Browse files
Files changed (1) hide show
  1. publish_veriloop_coder_e1.ps1 +17 -0
publish_veriloop_coder_e1.ps1 ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ $ErrorActionPreference = "Stop"
2
+
3
+ $repoRoot = Split-Path -Parent $MyInvocation.MyCommand.Path
4
+ $pythonScript = Join-Path $repoRoot "stage_and_publish_veriloop_coder_e1.py"
5
+
6
+ if (-not $env:HF_TOKEN -and -not $env:HUGGING_FACE_HUB_TOKEN) {
7
+ throw "HF_TOKEN or HUGGING_FACE_HUB_TOKEN is not set."
8
+ }
9
+
10
+ python -m pip install -U huggingface_hub
11
+
12
+ python $pythonScript `
13
+ --source-repo "Qwen/Qwen3-Coder-Next" `
14
+ --target-repo "veriloop-lab/veriLoop-coder-e1" `
15
+ --display-name "VeriLoop-Coder-E1" `
16
+ --stage-dir "D:\hf_stage\veriloop_coder_e1" `
17
+ --revision "main"