ollama/template/chatml.gotmpl

15 lines
396 B
Go Template
Raw Normal View History

2024-06-27 17:15:17 -04:00
{{- if .Messages }}
{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}
{{- range .Messages }}<|im_start|>{{ .Role }}
{{ .Content }}<|im_end|>
{{ end }}<|im_start|>assistant
2024-07-10 14:00:29 -04:00
{{ else -}}
2024-06-03 14:06:29 -04:00
{{ if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}{{ if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
{{ end }}<|im_start|>assistant
2024-06-27 17:15:17 -04:00
{{ .Response }}<|im_end|>
2024-07-10 14:00:29 -04:00
{{ end -}}