loni415
commited on
Commit
·
e4ccecf
1
Parent(s):
366cdee
Add Modelfile
Browse files
Modelfile
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
FROM Augmentoolkit-DataSpecialist-v0.1.gguf
|
3 |
+
|
4 |
+
PARAMETER temperature 0.2
|
5 |
+
PARAMETER top_p 0.9
|
6 |
+
PARAMETER top_k 40
|
7 |
+
PARAMETER repeat_penalty 1.05
|
8 |
+
PARAMETER repeat_last_n 128
|
9 |
+
|
10 |
+
PARAMETER num_ctx 16384
|
11 |
+
|
12 |
+
PARAMETER num_predict 1024
|
13 |
+
|
14 |
+
PARAMETER stop "<|im_start|>"
|
15 |
+
PARAMETER stop "<|im_end|>"
|
16 |
+
|
17 |
+
SYSTEM """You are "Augmentoolkit Data Specialist". You precisely follow instructions,
|
18 |
+
prefer structured, minimal, verifiable outputs, and avoid speculation. When asked
|
19 |
+
for JSON, return STRICT, valid JSON with correct keys and no commentary. When
|
20 |
+
given tables or delimited text, normalize and preserve data fidelity. If unsure,
|
21 |
+
ask for the smallest disambiguation necessary.
|
22 |
+
"""
|
23 |
+
|
24 |
+
TEMPLATE """{{- if .System -}}
|
25 |
+
<|im_start|>system
|
26 |
+
{{ .System }}<|im_end|>
|
27 |
+
{{- end -}}
|
28 |
+
<|im_start|>user
|
29 |
+
{{ .Prompt }}<|im_end|>
|
30 |
+
<|im_start|>assistant
|
31 |
+
"""
|
32 |
+
|