mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 02:53:30 +00:00
minor typo and HuggingFace -> Hugging Face (#113)
This commit is contained in:
parent
3ae1597b9b
commit
3c99f08267
4 changed files with 7 additions and 7 deletions
|
@ -51,7 +51,7 @@ class ModelDescribe(Subcommand):
|
|||
colored("Model", "white", attrs=["bold"]),
|
||||
colored(model.descriptor(), "white", attrs=["bold"]),
|
||||
),
|
||||
("HuggingFace ID", model.huggingface_repo or "<Not Available>"),
|
||||
("Hugging Face ID", model.huggingface_repo or "<Not Available>"),
|
||||
("Description", model.description),
|
||||
("Context Length", f"{model.max_seq_length // 1024}K tokens"),
|
||||
("Weights format", model.quantization_format.value),
|
||||
|
|
|
@ -36,7 +36,7 @@ class ModelList(Subcommand):
|
|||
def _run_model_list_cmd(self, args: argparse.Namespace) -> None:
|
||||
headers = [
|
||||
"Model Descriptor",
|
||||
"HuggingFace Repo",
|
||||
"Hugging Face Repo",
|
||||
"Context Length",
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue