llama-2-gguf / download_model.py
mvasim's picture
downloading model manual
e3bfcb3
raw history blame
No virus
182 Bytes
from huggingface_hub import hf_hub_download
REPO_ID = "TheBloke/Llama-2-7B-Chat-GGUF"
FILENAME = "llama-2-7b-chat.Q5_K_M.gguf"
hf_hub_download(repo_id=REPO_ID, filename=FILENAME)