Update README.md to latest huggingface CLI (#64)

huggingface-cli changes to hf 
HF_TOKEN concerpt intoduced for download speed
This commit is contained in:
zynzynack
2026-03-01 13:49:31 +00:00
committed by GitHub
parent a8c3fa89ea
commit 8462d300e7
+3 -2
View File
@@ -95,12 +95,13 @@ llama-cli --list-devices
### 3. Download Model ### 3. Download Model
Example: Qwen3 Coder 30B (BF16) Example: Qwen3 Coder 30B (BF16)
Consider: setting your Hugging Face HF_TOKEN for faster downloads
```bash ```bash
HF_XET_HIGH_PERFORMANCE=1 huggingface-cli download unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF \ HF_XET_HIGH_PERFORMANCE=1 hf download unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF \
BF16/Qwen3-Coder-30B-A3B-Instruct-BF16-00001-of-00002.gguf \ BF16/Qwen3-Coder-30B-A3B-Instruct-BF16-00001-of-00002.gguf \
--local-dir models/qwen3-coder-30B-A3B/ --local-dir models/qwen3-coder-30B-A3B/
HF_XET_HIGH_PERFORMANCE=1 huggingface-cli download unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF \ HF_XET_HIGH_PERFORMANCE=1 hf download unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF \
BF16/Qwen3-Coder-30B-A3B-Instruct-BF16-00002-of-00002.gguf \ BF16/Qwen3-Coder-30B-A3B-Instruct-BF16-00002-of-00002.gguf \
--local-dir models/qwen3-coder-30B-A3B/ --local-dir models/qwen3-coder-30B-A3B/
``` ```