Models
Docs
Pricing
Sign in
Download
Models
Download
Docs
Pricing
Sign in
nutboy02
/
Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-uncenfull
:Q2_K_MTX
3,798
Downloads
Updated
1 week ago
Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-fulluncen
Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-fulluncen
Cancel
tools
thinking
Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-uncenfull:Q2_K_MTX
...
/
template
df8f4b9d3d6d · 1.4kB
{{ if .Messages }}
{{- if or .System .Tools }}<|im_start|>system
{{ .System }}
{{- if .Tools }}
# Available Tools
<tools>
{{- range .Tools }}
{"type": "function", "function": {{ .Function }}}
{{- end }}
</tools>
## Tool Call Format
ALWAYS use EXACTLY this format for tool calls — no variations:
<tool_code>
{"name": "<tool_name>", "arguments": {<key>: <value>}}
</tool_code>
RULES:
- Tag must be exactly <tool_code> and </tool_code> — never <toolcode> or any other variant.
- Call ONE tool at a time then STOP.
- Wait for <tool_response> before continuing.
{{- end }}
<|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_code>
{{ range .ToolCalls }}{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
{{ end }}</tool_code>
{{- end }}
{{- if .Content }}{{ .Content }}{{ end }}<|im_end|>
{{- else if eq .Role "tool" }}<|im_start|>user
<tool_response>
{{ .Content }}
</tool_response><|im_end|>
{{- end }}
{{- end }}<|im_start|>assistant
{{- if .Thinking }}<think>
{{ .Thinking }}</think>
{{ end }}
{{ else }}
{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}
{{- if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
{{ end }}<|im_start|>assistant
{{- if .Thinking }}<think>
{{ .Thinking }}</think>
{{ end }}
{{ end }}