maidacundo commited on
Commit
ec9cb44
·
verified ·
1 Parent(s): 10bb346

Delete Modelfile

Browse files
Files changed (1) hide show
  1. Modelfile +0 -58
Modelfile DELETED
@@ -1,58 +0,0 @@
1
- FROM /content/maidacundo/panda_agi_64_8_batch_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 stop "<|im_start|>"
53
- PARAMETER stop "<|im_end|>"
54
- PARAMETER temperature 0.6
55
- PARAMETER min_p 0.00
56
- PARAMETER repeat_penalty 1.0
57
- PARAMETER top_k 20
58
- PARAMETER top_p 0.95