minor typo and HuggingFace -> Hugging Face (#113)

This commit is contained in:
Mark Sze 2024-09-27 02:48:23 +10:00 committed by GitHub
parent 3ae1597b9b
commit 3c99f08267
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View file

@ -112,7 +112,7 @@ llama download --source meta --model-id Prompt-Guard-86M --meta-url META_URL
llama download --source meta --model-id Llama-Guard-3-8B --meta-url META_URL llama download --source meta --model-id Llama-Guard-3-8B --meta-url META_URL
``` ```
#### Downloading from [Huggingface](https://huggingface.co/meta-llama) #### Downloading from [Hugging Face](https://huggingface.co/meta-llama)
Essentially, the same commands above work, just replace `--source meta` with `--source huggingface`. Essentially, the same commands above work, just replace `--source meta` with `--source huggingface`.

View file

@ -20,7 +20,7 @@ from llama_stack.inference.meta_reference.inference import get_provider_impl
MODEL = "Llama3.1-8B-Instruct" MODEL = "Llama3.1-8B-Instruct"
HELPER_MSG = """ HELPER_MSG = """
This test needs llama-3.1-8b-instruct models. This test needs llama-3.1-8b-instruct models.
Please donwload using the llama cli Please download using the llama cli
llama download --source huggingface --model-id llama3_1_8b_instruct --hf-token <HF_TOKEN> llama download --source huggingface --model-id llama3_1_8b_instruct --hf-token <HF_TOKEN>
""" """