Skip to content

Commit

Permalink
increase timeout for vllm download model step (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
aksh-at authored Aug 2, 2023
1 parent 9e6b3d8 commit c444150
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion 06_gpu_and_ml/vllm_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ def download_model_to_folder():
.pip_install("hf-transfer~=0.1")
.env({"HF_HUB_ENABLE_HF_TRANSFER": "1"})
.run_function(
download_model_to_folder, secret=Secret.from_name("huggingface")
download_model_to_folder,
secret=Secret.from_name("huggingface"),
timeout=60 * 20,
)
)

Expand Down

0 comments on commit c444150

Please sign in to comment.