LucasInsight commited on
Commit
3059143
1 Parent(s): f630800

(Trained with Unsloth)

Browse files
Files changed (1) hide show
  1. Modelfile +7 -48
Modelfile CHANGED
@@ -1,60 +1,19 @@
1
- FROM ./unsloth.Q4_K_M.gguf
2
 
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 orginal 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
 
53
- PARAMETER stop "<|eom_id|>"
54
  PARAMETER stop "<|end_header_id|>"
55
  PARAMETER stop "<|start_header_id|>"
56
- PARAMETER stop "<|finetune_right_pad_id|>"
57
  PARAMETER stop "<|python_tag|>"
58
  PARAMETER stop "<|end_of_text|>"
 
 
59
  PARAMETER stop "<|eot_id|>"
60
- PARAMETER stop "<|reserved_special_token_"
 
 
1
+ FROM ./LucasInsight/Meta-Llama-3.1-8B-Instruct/unsloth.Q8_0.gguf
2
 
3
+ TEMPLATE """{{ if .System }}<|start_header_id|>system<|end_header_id|>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  {{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
6
 
7
  {{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
8
 
9
+ {{ .Response }}<|eot_id|>"""
10
 
 
11
  PARAMETER stop "<|end_header_id|>"
12
  PARAMETER stop "<|start_header_id|>"
 
13
  PARAMETER stop "<|python_tag|>"
14
  PARAMETER stop "<|end_of_text|>"
15
+ PARAMETER stop "<|finetune_right_pad_id|>"
16
+ PARAMETER stop "<|eom_id|>"
17
  PARAMETER stop "<|eot_id|>"
18
+ PARAMETER stop "<|reserved_special_token_"
19
+ SYSTEM "You are a helpful assistant"