Models
Docs
Pricing
Sign in
Download
Models
Download
Docs
Pricing
Sign in
supere989
/
vectorcore-qwen-tools
:latest
129
Downloads
Updated
8 months ago
Tool Calling improved version of Qwen3 1.7B where improvements are made to the prompt template data configuration. This version will now consistently perform structured json tool call outputs.
Tool Calling improved version of Qwen3 1.7B where improvements are made to the prompt template data configuration. This version will now consistently perform structured json tool call outputs.
Cancel
tools
vectorcore-qwen-tools:latest
...
/
template
9168b87e9309 · 278B
{{ if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}{{ if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
{{ end }}<|im_start|>assistant
{{ if .Tools }}Available tools:
{{ range .Tools }}
- {{ .Function.Name }}: {{ .Function.Description }}
{{ end }}
{{ end }}