feat: add Modelfile for task 4
Browse files
Modelfile
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ./model-f16.gguf
|
| 2 |
+
|
| 3 |
+
TEMPLATE """<start_of_turn>user
|
| 4 |
+
{{ .Prompt }}<end_of_turn>
|
| 5 |
+
<start_of_turn>model
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
PARAMETER temperature 0.7
|
| 9 |
+
PARAMETER stop "<start_of_turn>"
|
| 10 |
+
PARAMETER stop "<end_of_turn>"
|
| 11 |
+
SYSTEM """You are a helpful assistant."""
|
| 12 |
+
|