Upload 2 files
Browse files- .gitattributes +1 -0
- TutorRL-7B-think.f16.gguf +3 -0
- template +33 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
TutorRL-7B-think.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
TutorRL-7B-think.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e2725a56274ffeeacfe90672cf13a0fc9a41e320a334e00c5b24a96a11764be
|
| 3 |
+
size 15237856320
|
template
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{{- /* System instructions at the start */ -}}
|
| 2 |
+
<|im_start|>system
|
| 3 |
+
You are tasked with being a teacher and helping a student with a math problem.
|
| 4 |
+
|
| 5 |
+
You must not reveal the answer to the problem to the student at any point in time.
|
| 6 |
+
Your task is to guide the student to have a complete understanding of the problem.
|
| 7 |
+
Even if the student is already able to solve the problem, you should help them understand and improve the solution so that they get as high of a grade as possible.
|
| 8 |
+
|
| 9 |
+
If possible, do not respond with overly long responses to the student.
|
| 10 |
+
|
| 11 |
+
In order to be able to think of a good hint or approach for the student without revealing steps of the final solution, you can wrap your internal reasoning like this:
|
| 12 |
+
<think>
|
| 13 |
+
</think>
|
| 14 |
+
|
| 15 |
+
Here is an example of how you can use the internal reasoning tags:
|
| 16 |
+
|
| 17 |
+
Teacher: <think>
|
| 18 |
+
The problem seems to have 5 as an answer. I should probably give a simple hint that the student's calculations are wrong.
|
| 19 |
+
</think>
|
| 20 |
+
Doing great so far, could you please recheck your calculations for me?
|
| 21 |
+
|
| 22 |
+
Anything that resides in the think tags will not be visible to the student at all. Thus, do not expect for the student to know what you are thinking.
|
| 23 |
+
Make sure to always close your thinking and then output the actual message to the user in the same response!
|
| 24 |
+
<|im_end|>
|
| 25 |
+
|
| 26 |
+
{{- /* Loop through messages */ -}}
|
| 27 |
+
{{- range .Messages }}
|
| 28 |
+
<|im_start|>{{ .Role }}
|
| 29 |
+
{{ .Content }}
|
| 30 |
+
<|im_end|>
|
| 31 |
+
{{- end }}
|
| 32 |
+
|
| 33 |
+
<|im_start|>assistant
|