Models
GitHub
Discord
Turbo
Sign in
Download
Models
Download
GitHub
Discord
Sign in
heatxsink
/
cline-tools.deepseek-r1
:8b
1,520
Downloads
Updated
6 months ago
Deepseek R1 optimized for tool usage with Cline.
Deepseek R1 optimized for tool usage with Cline.
Cancel
tools
8b
14b
32b
cline-tools.deepseek-r1:8b
...
/
template
1359ed816427 · 689B
{{- if .Tools }}
<available_tools>
{{- range .Tools }}
{{ .Function }}
{{- end }}
</available_tools>
{{- end }}
{{- if .System }}<|Assistant|>{{ .System }}<|end▁of▁sentence|>{{ end }}
{{- range $i, $_ := .Messages }}
{{- $last := eq (len (slice $.Messages $i)) 1 }}
{{- if eq .Role "user" }}<|User|>{{ .Content }}
{{- else if eq .Role "assistant" }}<|Assistant|>{{ .Content }}{{- if not $last }}<|end▁of▁sentence|>{{- end }}
{{- else if eq .Role "tool" }}<|User|><tool_response>{{ .Content }}</tool_response>
{{- if not $last }}<|end▁of▁sentence|>{{- end }}
{{- end }}
{{- if and $last (ne .Role "assistant") }}<|Assistant|>{{- end }}
{{- end }}