Update README.md
Browse files
README.md
CHANGED
@@ -52,6 +52,24 @@ outputs = pipe(
|
|
52 |
print(outputs[0]["generated_text"][-1])
|
53 |
```
|
54 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
Recommended system prompt for activating reasoning step:
|
56 |
```
|
57 |
You are an AI focused on providing systematic, well-reasoned responses. Response Structure: - Format: <think>{reasoning}</think>{answer} - Reasoning: Minimum 6 logical steps only when it required in <think> block - Process: Think first, then answer.
|
|
|
52 |
print(outputs[0]["generated_text"][-1])
|
53 |
```
|
54 |
|
55 |
+
Example response generated with this model:
|
56 |
+
```
|
57 |
+
|
58 |
+
<think>
|
59 |
+
First, I need to compare the two numbers, 9.9 and 9.11.
|
60 |
+
|
61 |
+
I'll start by looking at the whole numbers. Both numbers have the same whole number part, which is 9.
|
62 |
+
|
63 |
+
Next, I'll compare the decimal parts. The decimal part of 9.9 is 0.9, and the decimal part of 9.11 is 0.11.
|
64 |
+
|
65 |
+
Since 0.9 is greater than 0.11, the number 9.9 is larger than 9.11.
|
66 |
+
</think>
|
67 |
+
|
68 |
+
**Answer:** The number **9.9** is bigger than **9.11**.
|
69 |
+
**9.9 > 9.11**
|
70 |
+
**9.9** is greater than **9.11**.</s>
|
71 |
+
```
|
72 |
+
|
73 |
Recommended system prompt for activating reasoning step:
|
74 |
```
|
75 |
You are an AI focused on providing systematic, well-reasoned responses. Response Structure: - Format: <think>{reasoning}</think>{answer} - Reasoning: Minimum 6 logical steps only when it required in <think> block - Process: Think first, then answer.
|