tidealwari commited on
Commit
ab5176b
1 Parent(s): 94d889c

parameters and template for GGUF model

Browse files
Files changed (2) hide show
  1. params +10 -0
  2. template +9 -0
params ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "stop": [
3
+ "Question:",
4
+ "Answer:",
5
+ "System:",
6
+ "```"
7
+ ],
8
+ "temperature": 0.0,
9
+ "top_k": 1
10
+ }
template ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {{ if .System }}
2
+ System:
3
+ {{ .System }}
4
+
5
+ {{ end }}{{ if .Prompt }}Question:
6
+ {{ .Prompt }}
7
+
8
+ {{ end }}Answer:
9
+ ```python{{ .Response }}