mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 19:04:19 +00:00
Add --manifest-file option to argparser
This commit is contained in:
parent
b3da6b8afb
commit
e08e963f86
1 changed files with 6 additions and 0 deletions
|
@ -74,6 +74,12 @@ For source=huggingface, files matching any of the patterns are not downloaded. D
|
||||||
safetensors files to avoid downloading duplicate weights.
|
safetensors files to avoid downloading duplicate weights.
|
||||||
""",
|
""",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--manifest-file",
|
||||||
|
type=str,
|
||||||
|
help="For source=meta, you can download models from a manifest file containing a file => URL mapping",
|
||||||
|
required=False,
|
||||||
|
)
|
||||||
parser.set_defaults(func=partial(run_download_cmd, parser=parser))
|
parser.set_defaults(func=partial(run_download_cmd, parser=parser))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue