Models
Docs
Pricing
Sign in
Download
Models
Download
Docs
Pricing
Sign in
aratan
/
Ornith-1.5-35B-A3B-Uncensored-GGUF
:Q4_K_M
2
Downloads
Updated
2 hours ago
Cancel
vision
tools
Ornith-1.5-35B-A3B-Uncensored-GGUF:Q4_K_M
...
/
template
6b187ca172c1 · 927B
{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{- end }}
{{- if .Tools }}<|im_start|>system
# Tools
You have access to the following functions. Use them if required:
<tools>
{{ range .Tools }}
{{ json . }}
{{ end }}</tools>
To call a function, respond with a JSON object inside <tool_call></tool_call> tags:
<tool_call>
{"name": "function_name", "arguments": {"arg": "value"}}
</tool_call>
<|im_end|>
{{- end }}
{{- range .Messages }}
{{- if eq .Role "user" }}<|im_start|>user
{{ .Content }}<|im_end|>
{{- else if eq .Role "assistant" }}<|im_start|>assistant
{{- if .ToolCalls }}
<tool_call>
{{ range .ToolCalls }}{"name": "{{ .Function.Name }}", "arguments": {{ json .Function.Arguments }}}{{ end }}
</tool_call>
{{- else }}
{{ .Content }}
{{- end }}<|im_end|>
{{- else if eq .Role "tool" }}<|im_start|>user
<tool_response>
{{ .Content }}
</tool_response><|im_end|>
{{- end }}
{{- end }}<|im_start|>assistant