Sweaterdog commited on
Commit
5118058
·
verified ·
1 Parent(s): 29eb381

Upload Modelfile 2

Browse files
Files changed (1) hide show
  1. Modelfile 2 +56 -0
Modelfile 2 ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM C:\Users\SweaterDog\OneDrive\Documents\Raw GGUF Files\Andy-3.5-beta Fine tune\version 10\Andy-3.5-beta.q4_k_m.gguf
2
+ TEMPLATE """{{- if .Messages }}
3
+ {{- if or .System .Tools }}<|im_start|>system
4
+ {{- if .System }}
5
+ {{ .System }}
6
+ {{- end }}
7
+ {{- if .Tools }}
8
+
9
+ # Tools
10
+
11
+ You may call one or more functions to assist with the user query.
12
+
13
+ You are provided with function signatures within <tools></tools> XML tags:
14
+ <tools>
15
+ {{- range .Tools }}
16
+ {"type": "function", "function": {{ .Function }}}
17
+ {{- end }}
18
+ </tools>
19
+
20
+ For each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:
21
+ <tool_call>
22
+ {"name": <function-name>, "arguments": <args-json-object>}
23
+ </tool_call>
24
+ {{- end }}<|im_end|>
25
+ {{ end }}
26
+ {{- range $i, $_ := .Messages }}
27
+ {{- $last := eq (len (slice $.Messages $i)) 1 -}}
28
+ {{- if eq .Role "user" }}<|im_start|>user
29
+ {{ .Content }}<|im_end|>
30
+ {{ else if eq .Role "assistant" }}<|im_start|>assistant
31
+ {{ if .Content }}{{ .Content }}
32
+ {{- else if .ToolCalls }}<tool_call>
33
+ {{ range .ToolCalls }}{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
34
+ {{ end }}</tool_call>
35
+ {{- end }}{{ if not $last }}<|im_end|>
36
+ {{ end }}
37
+ {{- else if eq .Role "tool" }}<|im_start|>user
38
+ <tool_response>
39
+ {{ .Content }}
40
+ </tool_response><|im_end|>
41
+ {{ end }}
42
+ {{- if and (ne .Role "assistant") $last }}<|im_start|>assistant
43
+ {{ end }}
44
+ {{- end }}
45
+ {{- else }}
46
+ {{- if .System }}<|im_start|>system
47
+ {{ .System }}<|im_end|>
48
+ {{ end }}{{ if .Prompt }}<|im_start|>user
49
+ {{ .Prompt }}<|im_end|>
50
+ {{ end }}<|im_start|>assistant
51
+ {{ end }}{{ .Response }}{{ if .Response }}<|im_end|>{{ end }}
52
+ """
53
+ PARAMETER stop "<|im_start|>"
54
+ PARAMETER stop "<|im_end|>"
55
+ PARAMETER temperature 1.5
56
+ PARAMETER min_p 0.1