Upload merged model
Browse files
Modelfile
CHANGED
|
@@ -2,9 +2,14 @@
|
|
| 2 |
|
| 3 |
FROM .
|
| 4 |
|
| 5 |
-
TEMPLATE """<s>{{ if .System }}
|
| 6 |
|
| 7 |
-
{{
|
| 8 |
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
PARAMETER num_ctx 4096
|
|
|
|
| 2 |
|
| 3 |
FROM .
|
| 4 |
|
| 5 |
+
TEMPLATE """<s>{{ if .System }}<|start_header_id|>system<|end_header_id|>
|
| 6 |
|
| 7 |
+
{{ .System }}<|eot_id|>{{ end }}{{ range .Messages }}{{ if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
|
| 8 |
|
| 9 |
+
{{ .Content }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
|
| 10 |
+
|
| 11 |
+
{{ else if eq .Role "assistant" }}{{ .Content }}<|eot_id|>{{ end }}{{ end }}"""
|
| 12 |
+
|
| 13 |
+
PARAMETER stop "<|eot_id|>"
|
| 14 |
+
PARAMETER stop "<|eom_id|>"
|
| 15 |
PARAMETER num_ctx 4096
|