File size: 279 Bytes
0f2ad2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from huggingface_hub import hf_hub_download
import os

repo_id = os.environ.get("MODEL_REPO")
filename = os.environ.get("MODEL_FILE")

print("Downloading model:", repo_id, filename)
hf_hub_download(repo_id=repo_id, filename=filename, local_dir=".", local_dir_use_symlinks=False)