Models
Docs
Pricing
Sign in
Download
Models
Download
Docs
Pricing
Sign in
aratan
/
qwen3.7-35b-q4
:latest
96
Downloads
Updated
16 hours ago
No Oficial 29 t/s en 8 VRAM - Calidad a escala fronteriza como GPT-5.5, DeepSeek-V4-pro y Kimi-K2.6.
No Oficial 29 t/s en 8 VRAM - Calidad a escala fronteriza como GPT-5.5, DeepSeek-V4-pro y Kimi-K2.6.
Cancel
vision
tools
qwen3.7-35b-q4:latest
...
/
template
0c6c99c3dbbc · 1.0kB
{{- if .System }}<|im_start|>system
{{ .System }}
{{- if .Tools }}
You have access to the following tools. You must format your tool calls as JSON objects inside <tool_call> tags.
{{- range .Tools }}
{{ . }}
{{- end }}
{{- end }}<|im_end|>
{{- else if .Tools }}<|im_start|>system
You have access to the following tools. You must format your tool calls as JSON objects inside <tool_call> tags.
{{- range .Tools }}
{{ . }}
{{- 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 }}<|im_start|>call
{{- range .ToolCalls }}
<tool_call>
{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
</tool_call>
{{- end }}<|im_end|>
{{- else }}
{{ .Content }}<|im_end|>
{{- end }}
{{- else if eq .Role "tool" }}<|im_start|>tool
<tool_response>
{{ .Content }}
</tool_response><|im_end|>
{{- end }}
{{- end }}<|im_start|>assistant