I want to upload a local LLM to a private Jfrog "huggingface-ml" repository.
First I have installed the HF python client:
python3 -m pip install "huggingface_hub[cli]"
With this client in place, I have created a simple download script to get unsloth/Phi-4-mini-instruct-GGUF:
from huggingface_hub import snapshot_download
# Define model repository ID
model_id = "unsloth/Phi-4-mini-instruct-GGUF"
# Define local directory to store the model
local_dir = "./phi3_mini_instruct"
# Download the model
print(f"