From 6a8e80c01513c676dd1dcb45b64d7d57b8dd7749 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 7 Oct 2024 10:35:35 -0400 Subject: [PATCH] download: improve help text Improve the message that gives a hint about the URL needed for downloading a llama model. This now includes the URL someone should visit if they have not already done so. Closes #202 Signed-off-by: Russell Bryant --- llama_stack/cli/download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/cli/download.py b/llama_stack/cli/download.py index 4d0966bb2..a1495cbf0 100644 --- a/llama_stack/cli/download.py +++ b/llama_stack/cli/download.py @@ -169,7 +169,7 @@ def run_download_cmd(args: argparse.Namespace, parser: argparse.ArgumentParser): meta_url = args.meta_url if not meta_url: meta_url = input( - "Please provide the signed URL you received via email (e.g., https://llama3-1.llamameta.net/*?Policy...): " + "Please provide the signed URL you received via email after visiting https://www.llama.com/llama-downloads/ (e.g., https://llama3-1.llamameta.net/*?Policy...): " ) assert meta_url is not None and "llamameta.net" in meta_url _meta_download(model, meta_url, info)