AI-powered-SQL / download_model.py
github-actions
Auto deploy from GitHub Actions
1914b78
raw
history blame contribute delete
282 Bytes
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}")