ndavidson commited on
Commit
2004e4b
·
verified ·
1 Parent(s): b141d59

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -4,4 +4,20 @@ datasets:
4
  - ndavidson/nexus_products
5
  language:
6
  - en
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - ndavidson/nexus_products
5
  language:
6
  - en
7
+ ---
8
+
9
+
10
+ # Prompt Format
11
+
12
+ iNAM uses ChatML as the prompt format.
13
+
14
+ It's recommended to always prompt with a system instruction (use whatever system prompt you like):
15
+
16
+ ```
17
+ <|im_start|>system
18
+ You are a helpful assistant for Python which outputs in Markdown format.<|im_end|>
19
+ <|im_start|>user
20
+ Write a function to calculate the Fibonacci sequence<|im_end|>
21
+ <|im_start|>assistant
22
+
23
+ ```