Models
Docs
Pricing
Sign in
Download
Models
Download
Docs
Pricing
Sign in
ignarobledo20300
/
ggtyyd
:latest
Updated
yesterday
Cancel
thinking
ggtyyd:latest
...
/
template
9a5565085d9a · 603B
{{- if .System }}### System
{{ .System }}
{{- end }}
{{- range $i, $_ := .Messages }}
{{- if eq .Role "system" }}### System
{{ .Content }}
{{- else if eq .Role "user" }}### User
{{ .Content }}
{{- else if eq .Role "assistant" }}
{{- if .Thinking }}<think>
{{ .Thinking }}
</think>
{{- end }}
{{- if .Content }}### Assistant
{{ .Content }}
{{- end }}
{{- if .ToolCalls }}### Assistant
<tool_call>
{{- range .ToolCalls }}{{ json .Function }}
{{- end }}</tool_call>
{{- end }}
{{- else if eq .Role "tool" }}### User
<tool_response>
{{ .Content }}
</tool_response>
{{- end }}{{- end }}
### Assistant