| from huggingface_hub import hf_hub_download | |
| # Replace with your model repo and filename | |
| file_path = hf_hub_download( | |
| repo_id="SeccondDefense/DeepSeek-Coder-V2-Instruct-0724-Q5_K_M", | |
| filename="DeepSeek-Coder-V2-Instruct-0724-Q5_K_M.gguf" # change if the filename is different | |
| ) | |
| print("Downloaded to:", file_path) | |