mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 02:53:30 +00:00
Check that the model is found before use. (#182)
This commit is contained in:
parent
f913b57397
commit
734f59d3b8
1 changed files with 3 additions and 4 deletions
|
@ -158,12 +158,11 @@ def run_download_cmd(args: argparse.Namespace, parser: argparse.ArgumentParser):
|
||||||
info = prompt_guard_download_info()
|
info = prompt_guard_download_info()
|
||||||
else:
|
else:
|
||||||
model = resolve_model(args.model_id)
|
model = resolve_model(args.model_id)
|
||||||
|
if model is None:
|
||||||
|
parser.error(f"Model {args.model_id} not found")
|
||||||
|
return
|
||||||
info = llama_meta_net_info(model)
|
info = llama_meta_net_info(model)
|
||||||
|
|
||||||
if model is None:
|
|
||||||
parser.error(f"Model {args.model_id} not found")
|
|
||||||
return
|
|
||||||
|
|
||||||
if args.source == "huggingface":
|
if args.source == "huggingface":
|
||||||
_hf_download(model, args.hf_token, args.ignore_patterns, parser)
|
_hf_download(model, args.hf_token, args.ignore_patterns, parser)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue