From 87d9fa62eda676d5886628a010878b5f3c339112 Mon Sep 17 00:00:00 2001 From: Saurav Shrestha <45953516+realsshrestha@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:17:02 -0400 Subject: [PATCH] Makes the URL prompt more user friendly Previously it was "Enter the URL from the email:" and that had a bunch of folks confused and they were just entering their email (because autopilot). This commit removes that possible disambiguation. --- download.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/download.sh b/download.sh index 9ba1b533c..8ad24260c 100755 --- a/download.sh +++ b/download.sh @@ -5,7 +5,7 @@ set -e -read -p "Enter the URL from email: " PRESIGNED_URL +read -p "Enter the download URL (copy in email): " PRESIGNED_URL echo "" read -p "Enter the list of models to download without spaces (7B,13B,70B,7B-chat,13B-chat,70B-chat), or press Enter for all: " MODEL_SIZE TARGET_FOLDER="." # where all files should end up @@ -67,4 +67,4 @@ do else (cd ${TARGET_FOLDER}"/${MODEL_PATH}" && md5sum -c checklist.chk) fi -done \ No newline at end of file +done