Spaces:
Sleeping
Sleeping
File size: 182 Bytes
e3bfcb3 |
1 2 3 4 5 6 7 8 |
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)
|