Skip to content

Commit 4197ada

Browse files
authored
feat: enable resume download for hf_hub_download (#1249)
1 parent 09d9a91 commit 4197ada

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/setup

+9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
#!/usr/bin/env python3
22
import os
3+
import argparse
34

45
from huggingface_hub import hf_hub_download, snapshot_download
56

67
from private_gpt.paths import models_path, models_cache_path
78
from private_gpt.settings.settings import settings
89

10+
resume_download = True
11+
if __name__ == '__main__':
12+
parser = argparse.ArgumentParser(prog='Setup: Download models from huggingface')
13+
parser.add_argument('--resume', default=True, action=argparse.BooleanOptionalAction, help='Enable/Disable resume_download options to restart the download progress interrupted')
14+
args = parser.parse_args()
15+
resume_download = args.resume
16+
917
os.makedirs(models_path, exist_ok=True)
1018
embedding_path = models_path / "embedding"
1119

@@ -24,6 +32,7 @@ hf_hub_download(
2432
filename=settings().local.llm_hf_model_file,
2533
cache_dir=models_cache_path,
2634
local_dir=models_path,
35+
resume_download=resume_download,
2736
)
2837

2938
print("LLM model downloaded!")

0 commit comments

Comments
 (0)