Models
GitHub
Discord
Docs
Cloud
Sign in
Download
Models
Download
GitHub
Discord
Docs
Cloud
Sign in
cnmoro
/
LFM2-350M-PTBR
:q4_k_m
6
Downloads
Updated
2 weeks ago
Cancel
tools
LFM2-350M-PTBR:q4_k_m
...
/
template
3b646842d4f7 · 1.0kB
{{- $system_prompt := "Você é um assistente que sempre responde em português brasileiro." -}}
{{- if .System -}}
{{- $system_prompt = printf "%s\n%s" $system_prompt .System -}}
{{- end -}}
{{- if .Tools -}}
{{- if $system_prompt -}}
{{- $system_prompt = printf "%s\n" $system_prompt -}}
{{- end -}}
{{- $system_prompt = printf "%sList of tools: <|tool_list_start|>[" $system_prompt -}}
{{- range $i, $tool := .Tools -}}
{{- if $i -}}
{{- $system_prompt = printf "%s, " $system_prompt -}}
{{- end -}}
{{- $system_prompt = printf "%s%s" $system_prompt $tool -}}
{{- end -}}
{{- $system_prompt = printf "%s]<|tool_list_end|>" $system_prompt -}}
{{- end -}}
{{- if $system_prompt }}<|im_start|>system
{{ $system_prompt }}<|im_end|>
{{ end -}}
{{- range $i, $_ := .Messages -}}
<|im_start|>{{ .Role }}
{{- if eq .Role "tool" }}
<|tool_response_start|>{{ .Content }}<|tool_response_end|>
{{- else }}
{{ .Content }}
{{- end }}<|im_end|>
{{ end -}}
{{- if .Messages }}<|im_start|>assistant
{{ end }}