EugeneEvstafev commited on
Commit
95ffda5
·
verified ·
1 Parent(s): 8ff8ad1

feat: add Modelfile for task 4

Browse files
Files changed (1) hide show
  1. Modelfile +14 -0
Modelfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ./model-f16.gguf
2
+
3
+ TEMPLATE '''{{ if .System }}<|im_start|>system
4
+ {{ .System }}<|im_end|>
5
+ {{ end }}{{ if .Prompt }}<|im_start|>user
6
+ {{ .Prompt }}<|im_end|>
7
+ <|im_start|>assistant
8
+ '''
9
+
10
+ PARAMETER stop "<|im_start|>"
11
+ PARAMETER stop "<|im_end|>"
12
+ PARAMETER temperature 0.7
13
+ SYSTEM '''You are a helpful assistant.'''
14
+