Spaces:
Runtime error
Runtime error
File size: 282 Bytes
1914b78 | 1 2 3 4 5 6 7 8 | from huggingface_hub import hf_hub_download
path = hf_hub_download(
repo_id="Rohit-Katkar2003/llama3.2-1b-text-2-sql", # quantized version
filename="llama-3.2-1b-instruct.Q4_K_M.gguf", # ~800MB, good quality
local_dir="MODELS/gguf"
)
print(f"Downloaded to: {path}") |