24 3 months ago

tools thinking
75bff93bb76d · 687B
{{- range $index, $_ := .Messages }}
{{- if eq .Role "system" -}}
[SYSTEM_PROMPT]{{ .Content }}[/SYSTEM_PROMPT]
{{- else if eq .Role "user" -}}
{{- if and (eq $index 1) $.Tools -}}
[AVAILABLE_TOOLS]{{ $.Tools }}[/AVAILABLE_TOOLS]
{{- end -}}
[INST]{{ if .Images }}[IMG]{{ end }}{{ .Content }}[/INST]
{{- else if eq .Role "assistant" -}}
{{- if .Content -}}
{{- if .Thinking -}}
[THINK]{{ .Thinking }}[/THINK]
{{- end -}}
{{ .Content }}
{{- end -}}
{{- if .ToolCalls -}}
{{- range .ToolCalls -}}
[TOOL_CALLS]{{ .Function.Name }}[ARGS]{{ .Function.Arguments }}
{{- end -}}
{{- end -}}
</s>
{{- else if eq .Role "tool" -}}
[TOOL_RESULTS]{{ .Content }}[/TOOL_RESULTS]
{{- end -}}
{{- end -}}