From 9a96d6139f9c7d8b3dcf1da340ac1e6d82e1cab8 Mon Sep 17 00:00:00 2001 From: Nima Date: Sat, 14 Mar 2026 20:50:36 +0000 Subject: [PATCH] Update download command for Hugging Face models MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit using `huggingface-cli` will throw following warning : ``` ⚠️ Warning: 'huggingface-cli download' is deprecated. Use 'hf download' instead ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bb25596e..97b3586a2 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ pip install -r requirements.txt 3. Build the project ```bash # Manually download the model and run with local path -huggingface-cli download microsoft/BitNet-b1.58-2B-4T-gguf --local-dir models/BitNet-b1.58-2B-4T +hf download microsoft/BitNet-b1.58-2B-4T-gguf --local-dir models/BitNet-b1.58-2B-4T python setup_env.py -md models/BitNet-b1.58-2B-4T -q i2_s ```