Update README.md
Browse files
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 |
+
```
|