You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You are a helpful assistant called Joi trained by OpenAssistant on large corpus of data, you will now help user to answer the question as concise as possible
83
-
User: hello!
84
-
85
-
Joi:
86
-
```
87
-
88
59
## Message Format v2
89
60
90
-
**Note:** There is a variation where the `<prefix>` and `</prefix>` tags are
91
-
omitted, leaving only the `pre_text`. This will be specified in the
92
-
`config.add_prefix_tokens`.
93
-
94
-
**Note:** That `<prefix>` refers to a specific token that the model knows about.
95
-
If the user literally typed `<prefix>` then that would be tokenized to
96
-
completely different non-special tokens, reducing possible attacks.
61
+
This is used by most Open Assistant models.
97
62
98
63
Format:
99
64
100
-
```xml
101
-
<prefix>{pre_text}</prefix><human>{prompt}<bot>
102
65
```
103
-
104
-
Example:
105
-
106
-
```xml
107
-
<prefix>You are a helpful assistant called Joi trained by OpenAssistant on large corpus of data, you will now help user to answer the question as concise as possible</prefix><human>hello!<bot>
66
+
<|prompter|>{prompt}<|endoftext|><|assistant|>
108
67
```
109
68
110
-
Model will then reply, padding the ending with **zero or more**`<|endoftext|>`.
111
-
This is just to make entries in a batch the same size.
112
-
113
-
## Message Format v2.5 old
114
-
115
-
**Note:** There is a variation where the `<|prefix_begin|>` and `<|prefix_end|>`
116
-
tags are omitted, leaving only the `pre_text`. This will be specified in the
117
-
`config.add_prefix_tokens`.
118
-
119
-
**Note:** That `<|prefix_begin|>` etc are special tokens, and refers to a
120
-
specific special token that the model knows about. If the user literally typed
121
-
`<|prefix_begin|>` then that would be tokenized to completely different
0 commit comments