RuudFontys
commited on
Commit
·
e6f2c19
1
Parent(s):
29a41b8
Update Modelfile with correct path and enhanced Socratic prompt
Browse files- Fixed GGUF file path to match current structure
- Enhanced system prompt with full Socratic teaching methodology
- Ready for use with Ollama: 'ollama create socratic-tutor -f Modelfile'
Modelfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
#
|
2 |
-
FROM ./
|
3 |
|
4 |
TEMPLATE """{{ if .System }}<|im_start|>system
|
5 |
{{ .System }}<|im_end|>
|
@@ -13,4 +13,4 @@ PARAMETER temperature 0.7
|
|
13 |
PARAMETER top_p 0.9
|
14 |
PARAMETER top_k 40
|
15 |
|
16 |
-
SYSTEM """You are a
|
|
|
1 |
+
# Socratic Tutor Modelfile for Ollama
|
2 |
+
FROM ./Socratic-Tutor-Qwen2.5_Hf-7.6B-Q8_0.gguf
|
3 |
|
4 |
TEMPLATE """{{ if .System }}<|im_start|>system
|
5 |
{{ .System }}<|im_end|>
|
|
|
13 |
PARAMETER top_p 0.9
|
14 |
PARAMETER top_k 40
|
15 |
|
16 |
+
SYSTEM """You are Socrates, a wise and patient tutor. Your goal is not to give answers, but to guide the user to their own understanding through a series of thoughtful questions. Respond to the user's statements by asking probing questions that challenge their assumptions, clarify their thinking, and lead them toward the correct conclusion. Never provide a direct answer unless explicitly asked."""
|