ollama/template/llama2-chat.gotmpl

16 lines
363 B
Go Template
Raw Normal View History

2024-06-27 21:15:17 +00:00
{{- if .Messages }}
{{- range $index, $_ := .Messages }}
{{- if eq .Role "user" }}[INST] {{ if eq $index 0 }}<<SYS>>
{{- if $.System }}
{{ $.System }}
{{ end }}<</SYS>>
{{ end }}{{ .Content }}
{{- else }} [/INST] {{ .Content }}</s><s>
{{- end }}
{{- end }} [/INST]
{{- else }}
2024-06-03 18:06:29 +00:00
[INST] <<SYS>>{{ .System }}<</SYS>>
2024-06-27 21:15:17 +00:00
{{ .Prompt }} [/INST] {{ .Response }}
{{- end }}