existmaster
commited on
Commit
•
b60e2d5
1
Parent(s):
7e6e3ce
Update Modelfile
Browse files
Modelfile
CHANGED
@@ -1,18 +1,11 @@
|
|
1 |
FROM ./llama-3-8b-it-ko-chang-q4_0.gguf
|
2 |
|
3 |
-
TEMPLATE """{{
|
4 |
-
|
5 |
-
|
6 |
-
<|begin_of_text|>B
|
7 |
-
{{ .Prompt }}<|end_of_text|>
|
8 |
-
<|begin_of_text|>A
|
9 |
-
"""
|
10 |
|
11 |
SYSTEM """A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."""
|
12 |
|
13 |
-
PARAMETER
|
14 |
-
PARAMETER
|
15 |
-
PARAMETER stop
|
16 |
-
PARAMETER stop <|end_of_text|>
|
17 |
-
PARAMETER stop <|eot_id|>
|
18 |
-
PARAMETER stop <|end_of_text|>
|
|
|
1 |
FROM ./llama-3-8b-it-ko-chang-q4_0.gguf
|
2 |
|
3 |
+
TEMPLATE """{{ if .System }}System: {{ .System }}{{ end }}
|
4 |
+
B:{{ .Prompt }}
|
5 |
+
A:"""
|
|
|
|
|
|
|
|
|
6 |
|
7 |
SYSTEM """A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."""
|
8 |
|
9 |
+
PARAMETER stop "System:"
|
10 |
+
PARAMETER stop "B:"
|
11 |
+
PARAMETER stop "A:"
|
|
|
|
|
|