sebaxakerhtc
commited on
Update Modelfile
Browse files
Modelfile
CHANGED
@@ -1,56 +1,18 @@
|
|
1 |
|
2 |
-
FROM
|
3 |
-
|
4 |
-
|
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" }}
|
30 |
-
{{ .Content }}
|
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 |
-
{{-
|
47 |
-
{{-
|
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
|
56 |
-
PARAMETER
|
|
|
|
|
|
1 |
|
2 |
+
FROM ./bgGPT-DeepSeek-R1-Distill-Qwen-14B-GGUF.Q8_0.gguf
|
3 |
+
SYSTEM "Ти си българоезичен автоматичен асистент. Всички рассъждения и отговори трябва да са на Български език."
|
4 |
+
TEMPLATE """
|
5 |
+
{{- if .System }}{{ .System }}{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
{{- range $i, $_ := .Messages }}
|
7 |
+
{{- $last := eq (len (slice $.Messages $i)) 1}}
|
8 |
+
{{- if eq .Role "user" }}<|User|>{{ .Content }}
|
9 |
+
{{- else if eq .Role "assistant" }}<|Assistant|>{{ .Content }}{{- if not $last }}<|end▁of▁sentence|>{{- end }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
{{- end }}
|
11 |
+
{{- if and $last (ne .Role "assistant") }}<|Assistant|>{{- end }}
|
12 |
+
{{- end }}"""
|
|
|
|
|
|
|
|
|
|
|
13 |
PARAMETER stop "<|im_end|>"
|
14 |
PARAMETER stop "<|endoftext|>"
|
15 |
+
PARAMETER stop "<|begin▁of▁sentence|>"
|
16 |
+
PARAMETER stop "<|end▁of▁sentence|>"
|
17 |
+
PARAMETER stop "<|User|>"
|
18 |
+
PARAMETER stop <|Assistant|>"
|