MapIhs commited on
Commit
eef848c
·
verified ·
1 Parent(s): 6e66260

Trained with Unsloth - Ollama Modelfile

Browse files
Files changed (1) hide show
  1. Modelfile +42 -42
Modelfile CHANGED
@@ -1,57 +1,57 @@
1
 
2
- FROM llama-3.2-1b-instruct.Q4_K_M.gguf
3
- TEMPLATE """{{ if .Messages }}
4
- {{- if or .System .Tools }}<|start_header_id|>system<|end_header_id|>
5
  {{- if .System }}
6
-
7
  {{ .System }}
8
  {{- end }}
9
  {{- if .Tools }}
10
 
11
- You are a helpful assistant with tool calling capabilities. When you receive a tool call response, use the output to format an answer to the original use question.
12
- {{- end }}
13
- {{- end }}<|eot_id|>
14
- {{- range $i, $_ := .Messages }}
15
- {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
- {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
- {{- if and $.Tools $last }}
18
 
19
- Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
 
21
- Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
-
23
- {{ $.Tools }}
 
24
  {{- end }}
 
25
 
26
- {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
27
-
 
 
 
28
  {{ end }}
29
- {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
30
- {{- if .ToolCalls }}
31
-
32
- {{- range .ToolCalls }}{"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
33
- {{- else }}
34
-
35
- {{ .Content }}{{ if not $last }}<|eot_id|>{{ end }}
36
- {{- end }}
37
- {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
38
-
39
- {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
40
-
 
 
 
 
 
41
  {{ end }}
42
- {{- end }}
43
  {{- end }}
44
  {{- else }}
45
- {{- if .System }}<|start_header_id|>system<|end_header_id|>
46
-
47
- {{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
48
-
49
- {{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
50
-
51
- {{ end }}{{ .Response }}{{ if .Response }}<|eot_id|>{{ end }}"""
52
- PARAMETER stop "<|start_header_id|>"
53
- PARAMETER stop "<|end_header_id|>"
54
- PARAMETER stop "<|eot_id|>"
55
- PARAMETER stop "<|eom_id|>"
56
  PARAMETER temperature 1.5
57
- PARAMETER min_p 0.1
 
 
1
 
2
+ FROM qwen2.5-7b-instruct.Q4_K_M.gguf
3
+ TEMPLATE """{{- if .Messages }}
4
+ {{- if or .System .Tools }}<|im_start|>system
5
  {{- if .System }}
 
6
  {{ .System }}
7
  {{- end }}
8
  {{- if .Tools }}
9
 
10
+ # Tools
 
 
 
 
 
 
11
 
12
+ You may call one or more functions to assist with the user query.
13
 
14
+ You are provided with function signatures within <tools></tools> XML tags:
15
+ <tools>
16
+ {{- range .Tools }}
17
+ {"type": "function", "function": {{ .Function }}}
18
  {{- end }}
19
+ </tools>
20
 
21
+ For each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:
22
+ <tool_call>
23
+ {"name": <function-name>, "arguments": <args-json-object>}
24
+ </tool_call>
25
+ {{- end }}<|im_end|>
26
  {{ end }}
27
+ {{- range $i, $_ := .Messages }}
28
+ {{- $last := eq (len (slice $.Messages $i)) 1 -}}
29
+ {{- if eq .Role "user" }}<|im_start|>user
30
+ {{ .Content }}<|im_end|>
31
+ {{ else if eq .Role "assistant" }}<|im_start|>assistant
32
+ {{ if .Content }}{{ .Content }}
33
+ {{- else if .ToolCalls }}<tool_call>
34
+ {{ range .ToolCalls }}{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
35
+ {{ end }}</tool_call>
36
+ {{- end }}{{ if not $last }}<|im_end|>
37
+ {{ end }}
38
+ {{- else if eq .Role "tool" }}<|im_start|>user
39
+ <tool_response>
40
+ {{ .Content }}
41
+ </tool_response><|im_end|>
42
+ {{ end }}
43
+ {{- if and (ne .Role "assistant") $last }}<|im_start|>assistant
44
  {{ end }}
 
45
  {{- end }}
46
  {{- else }}
47
+ {{- if .System }}<|im_start|>system
48
+ {{ .System }}<|im_end|>
49
+ {{ end }}{{ if .Prompt }}<|im_start|>user
50
+ {{ .Prompt }}<|im_end|>
51
+ {{ end }}<|im_start|>assistant
52
+ {{ end }}{{ .Response }}{{ if .Response }}<|im_end|>{{ end }}"""
53
+ PARAMETER stop "<|im_end|>"
54
+ PARAMETER stop "<|endoftext|>"
 
 
 
55
  PARAMETER temperature 1.5
56
+ PARAMETER min_p 0.1
57
+ SYSTEM """You are Qwen, created by Alibaba Cloud. You are a helpful assistant."""