Skip to content

Commit 55c60fe

Browse files
fix typos
1 parent 0244fc1 commit 55c60fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ The 'llama-recipes' repository is a companion to the [Meta Llama 3](https://gith
44

55
<!-- markdown-link-check-enable -->
66
> [!IMPORTANT]
7-
> Llama 3 has a new prompt template and special tokens (based on the tiktoken tokenizer).
7+
> Meta Llama 3 has a new prompt template and special tokens (based on the tiktoken tokenizer).
88
> | Token | Description |
99
> |---|---|
1010
> `<\|begin_of_text\|>` | This is equivalent to the BOS token. |
1111
> `<\|end_of_text\|>` | This is equivalent to the EOS token. For multiturn-conversations it's usually unused. Instead, every message is terminated with `<\|eot_id\|>` instead.|
1212
> `<\|eot_id\|>` | This token signifies the end of the message in a turn i.e. the end of a single message by a system, user or assistant role as shown below.|
1313
> `<\|start_header_id\|>{role}<\|end_header_id\|>` | These tokens enclose the role for a particular message. The possible roles can be: system, user, assistant. |
1414
>
15-
> A multiturn-conversation with Llama 3 follows this prompt template:
15+
> A multiturn-conversation with Meta Llama 3 follows this prompt template:
1616
> ```
1717
> <|begin_of_text|><|start_header_id|>system<|end_header_id|>
1818
>

0 commit comments

Comments
 (0)