invisietch commited on
Commit
6865439
1 Parent(s): 20bd387

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -11
README.md CHANGED
@@ -36,19 +36,16 @@ Use responsibly. I am not responsible for your use of this model.
36
 
37
  # Prompting Format
38
 
39
- I'd recommend Llama-3 prompting format:
40
 
41
  ```
42
- <|start_header_id|>system<|end_header_id|>
43
-
44
- {{#if system}}{{system}}
45
- {{/if}}{{#if wiBefore}}{{wiBefore}}
46
- {{/if}}{{#if description}}{{description}}
47
- {{/if}}{{#if personality}}{{char}}'s personality: {{personality}}
48
- {{/if}}{{#if scenario}}Scenario: {{scenario}}
49
- {{/if}}{{#if wiAfter}}{{wiAfter}}
50
- {{/if}}{{#if persona}}{{persona}}
51
- {{/if}}{{trim}}<|eot_id|>
52
  ```
53
 
54
  Some of the models included in the merge were trained on ChatML &amp; Alpaca so you can try those. I have not tested them.
 
36
 
37
  # Prompting Format
38
 
39
+ I'd recommend Llama-3 Instruct prompting format:
40
 
41
  ```
42
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
43
+
44
+ {system_prompt}<|eot_id|><|start_header_id|>user<|end_header_id|>
45
+
46
+ {input}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
47
+
48
+ {output}<|eot_id|>
 
 
 
49
  ```
50
 
51
  Some of the models included in the merge were trained on ChatML &amp; Alpaca so you can try those. I have not tested them.