From 81b3e65897d628b6c4c885525796e51fce253423 Mon Sep 17 00:00:00 2001 From: reidliu Date: Sat, 22 Feb 2025 08:56:31 +0800 Subject: [PATCH] chore: update download error message Signed-off-by: reidliu --- 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 af86f7243..b43d50217 100644 --- a/llama_stack/cli/download.py +++ b/llama_stack/cli/download.py @@ -343,7 +343,7 @@ def _hf_download( "You can find your token by visiting https://huggingface.co/settings/tokens" ) except RepositoryNotFoundError: - parser.error(f"Repository '{repo_id}' not found on the Hugging Face Hub.") + parser.error(f"Repository '{repo_id}' not found on the Hugging Face Hub or incorrect Hugging Face token.") except Exception as e: parser.error(e)