EugeneEvstafev commited on
Commit
6a1b53b
·
verified ·
1 Parent(s): 5590fb5

feat: add Modelfile for task 4

Browse files
Files changed (1) hide show
  1. Modelfile +12 -0
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
+