Files
Home-1B-v3-GGUF/template
ModelHub XC 73a8a71944 初始化项目,由ModelHub XC社区提供模型
Model: acon96/Home-1B-v3-GGUF
Source: Original Platform
2026-07-21 02:03:10 +08:00

11 lines
505 B
Plaintext

{{- range .Messages }}<|{{ .Role }}|>
{{ .Content }}
{{- if eq .Role "system" }}
Services:
{{- range $.Tools }} {{ .Function.Name }}({{- range $key, $value := .Function.Parameters.Properties }}{{- if ne $key "target_device" }}{{ $key }},{{- end }}{{- end }}),{{- end }}
{{- else if eq .Role "assistant" }}
{{ if .ToolCalls }}```homeassistant
{{ range .ToolCalls }}{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
{{ end }}```{{ end }}
{{- end }}<|endoftext|>
{{ end }}<|assistant|>