Models
Docs
Pricing
Sign in
Download
Models
Download
Docs
Pricing
Sign in
peacedude
/
ministral-3-8b-techcwbldr
:q8_0
15
Downloads
Updated
3 months ago
Cancel
tools
thinking
ministral-3-8b-techcwbldr:q8_0
...
/
template
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 -}}