GGUF
ehartford commited on
Commit
bdc973f
·
verified ·
1 Parent(s): 966e63c

Create Modelfile

Browse files
Files changed (1) hide show
  1. Modelfile +59 -0
Modelfile ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM Qwen3-72B-Embiggened-Q5_K_S.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
+ PARAMETER top_k 20
53
+ PARAMETER top_p 0.95
54
+ PARAMETER repeat_penalty 1
55
+ PARAMETER stop <|im_start|>
56
+ PARAMETER stop <|im_end|>
57
+ PARAMETER temperature 0.6
58
+ PARAMETER num_ctx 40960
59
+ PARAMETER num_predict 32768