FieldMouse-AI/ qwen3.5:27b-tools

951 1 month ago

🌐 Sovereign Qwen3.5 text, code, JP. Vision support at https://huggingface.co/FieldMouse-AI ・ πŸ‡―πŸ‡΅ Qwen3.5 γƒ†γ‚­γ‚Ήγƒˆγƒ»γ‚³γƒΌγƒ‰γƒ»ζ—₯本θͺžε―ΎεΏœγ€‚画像θͺθ­˜γ― https://huggingface.co/FieldMouse-AI γ§εˆ©η”¨ε―θƒ½γ§γ™γ€‚

tools 0.8b 2b 4b 9b 27b
30f71dc266d5 Β· 689B
{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{- end }}
{{- if .Tools }}<|im_start|>system
# Tools
You can use these tools:
{{- range .Tools }}
- {{ .Function.Name }}: {{ .Function.Description }}
Parameters: {{ .Function.Parameters }}
{{- 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 .Content }}{{ .Content }}{{- end }}
{{- if .ToolCalls }}
{"tool_calls": [
{{- range .ToolCalls }}
{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
{{- end }}
]}
{{- end }}<|im_end|>
{{- end }}
{{- end }}<|im_start|>assistant