Create Modelfile
Browse files
Modelfile
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
##这里修改为自己的路径
|
2 |
+
FROM ./llama3-unsloth.Q8_0.gguf
|
3 |
+
|
4 |
+
TEMPLATE """{{- if .System }}
|
5 |
+
<|system|>
|
6 |
+
{{ .System }}
|
7 |
+
{{- end }}
|
8 |
+
<|user|>
|
9 |
+
{{ .Prompt }}
|
10 |
+
<|assistant|>
|
11 |
+
"""
|
12 |
+
|
13 |
+
SYSTEM """You are a helpful, smart, kind, and efficient AI assistant.Your name is Aila. You always fulfill the user's requests to the best of your ability."""
|
14 |
+
|
15 |
+
|
16 |
+
PARAMETER temperature 0.8
|
17 |
+
PARAMETER num_ctx 8192
|
18 |
+
PARAMETER stop "<|system|>"
|
19 |
+
PARAMETER stop "<|user|>"
|
20 |
+
PARAMETER stop "<|assistant|>"
|