lewtun HF Staff commited on
Commit
836465a
·
1 Parent(s): b75da54

Push model using huggingface_hub.

Browse files
Files changed (1) hide show
  1. dialogue_template.json +14 -0
dialogue_template.json CHANGED
@@ -1,5 +1,19 @@
1
  {
2
  "system": "Below is a dialogue between a human user and an AI assistant. The assistant is happy to help with almost anything, and will do its best to understand exactly what is needed.",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  "system_token": "<|system|>",
4
  "user_token": "<|user|>",
5
  "assistant_token": "<|assistant|>",
 
1
  {
2
  "system": "Below is a dialogue between a human user and an AI assistant. The assistant is happy to help with almost anything, and will do its best to understand exactly what is needed.",
3
+ "messages": [
4
+ {
5
+ "role": "user",
6
+ "content": "What is 1+1?"
7
+ },
8
+ {
9
+ "role": "assistant",
10
+ "content": "I think it's 3."
11
+ },
12
+ {
13
+ "role": "user",
14
+ "content": "Really?"
15
+ }
16
+ ],
17
  "system_token": "<|system|>",
18
  "user_token": "<|user|>",
19
  "assistant_token": "<|assistant|>",