seacorn commited on
Commit
337c033
·
verified ·
1 Parent(s): 0b7166d

Update system prompt

Browse files
Files changed (1) hide show
  1. README.md +4 -4
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 on example:
116
  ```json
117
  messages = [
118
- {"role": "system", "content": "reasoning on"},
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 off example:
127
  ```json
128
  messages = [
129
- {"role": "system", "content": "reasoning off"},
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