pathakDev10/EstateGuru
0
1from huggingface_hub import hf_hub_download2import os3 4repo_id="Qwen/Qwen2.5-1.5B-Instruct-GGUF"5filename = "qwen2.5-1.5b-instruct-q4_k_m.gguf"6script_dir = os.path.dirname(os.path.abspath(__file__))7model_path = hf_hub_download(8 repo_id=repo_id,9 filename=filename,10 local_dir=script_dir,11)12 13print(f"Model downloaded to: {model_path}")