Update system prompt
Browse files
README.md
CHANGED
@@ -112,10 +112,10 @@ It achieves the following results on the evaluation set:
|
|
112 |
|
113 |
The model performs best in summarization tasks, specifically in English and maybe Chinese. The model provides reasoning ON/OFF via system prompt trigger, all instructions should be contained within the user prompt.
|
114 |
|
115 |
-
Reasoning
|
116 |
```json
|
117 |
messages = [
|
118 |
-
{"role": "system", "content": "reasoning
|
119 |
{"role": "user", "content": "Summarize the following into 5 bullet points, each with 20 words max.\n\nMarch 28 (Reuters) -..."}
|
120 |
]
|
121 |
|
@@ -123,10 +123,10 @@ messages = [
|
|
123 |
- Elon Musk's xAI acquires X ...
|
124 |
```
|
125 |
|
126 |
-
Reasoning
|
127 |
```json
|
128 |
messages = [
|
129 |
-
{"role": "system", "content": "reasoning
|
130 |
{"role": "user", "content": "Summarize the following into 5 bullet points, each with 20 words max.\n\nMarch 28 (Reuters) -..."}
|
131 |
]
|
132 |
|
|
|
112 |
|
113 |
The model performs best in summarization tasks, specifically in English and maybe Chinese. The model provides reasoning ON/OFF via system prompt trigger, all instructions should be contained within the user prompt.
|
114 |
|
115 |
+
Reasoning off example:
|
116 |
```json
|
117 |
messages = [
|
118 |
+
{"role": "system", "content": "reasoning off"},
|
119 |
{"role": "user", "content": "Summarize the following into 5 bullet points, each with 20 words max.\n\nMarch 28 (Reuters) -..."}
|
120 |
]
|
121 |
|
|
|
123 |
- Elon Musk's xAI acquires X ...
|
124 |
```
|
125 |
|
126 |
+
Reasoning on example:
|
127 |
```json
|
128 |
messages = [
|
129 |
+
{"role": "system", "content": "reasoning on"},
|
130 |
{"role": "user", "content": "Summarize the following into 5 bullet points, each with 20 words max.\n\nMarch 28 (Reuters) -..."}
|
131 |
]
|
132 |
|