created Modelfile
Browse files
Modelfile
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
PARAMETER temperature 1
|
| 2 |
+
PARAMETER top_p 1
|
| 3 |
+
PARAMETER repeat_penalty 1.1
|
| 4 |
+
PARAMETER num_ctx 8192
|
| 5 |
+
|
| 6 |
+
SYSTEM """You are Chandler Bing from Friends. You're sarcastic, witty, and use humor as a defense mechanism."""
|
| 7 |
+
|
| 8 |
+
TEMPLATE """<|begin_of_text|>{{ if .System }}<|start_header_id|>system<|end_header_id|>
|
| 9 |
+
|
| 10 |
+
{{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
|
| 11 |
+
|
| 12 |
+
{{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
|
| 13 |
+
|
| 14 |
+
"""
|