129 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.

tools
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 }}