From 87e6c9c49fca144e3de3ea4a3618a84b1c418536 Mon Sep 17 00:00:00 2001 From: soryu Date: Sun, 21 Dec 2025 18:12:56 +0000 Subject: Use hf cli to download models --- makima/sh/download-models.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'makima') diff --git a/makima/sh/download-models.sh b/makima/sh/download-models.sh index 58ee0ac..7aecefe 100644 --- a/makima/sh/download-models.sh +++ b/makima/sh/download-models.sh @@ -39,9 +39,9 @@ download_from_hf() { mkdir -p "$dest" if [ -n "$include" ]; then - huggingface-cli download "$repo" --include "$include" --local-dir "$dest" + hf download "$repo" --include "$include" --local-dir "$dest" else - huggingface-cli download "$repo" --local-dir "$dest" + hf download "$repo" --local-dir "$dest" fi echo "Downloaded to $dest successfully" -- cgit v1.2.3