2024-06-27 17:15:17 -04:00
|
|
|
{{- if .Messages }}
|
|
|
|
{{- if .System }}{{ .System }}
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
{{- range .Messages }}
|
|
|
|
{{- if eq .Role "user" }}USER: {{ .Content }}
|
|
|
|
{{ else if eq .Role "assistant" }}ASSISTANT: {{ .Content }}</s>
|
|
|
|
{{ end }}
|
|
|
|
{{- end }}ASSISTANT:
|
2024-07-10 14:00:29 -04:00
|
|
|
{{- else -}}
|
2024-06-03 14:06:29 -04:00
|
|
|
{{ if .System }}{{ .System }}
|
2024-07-10 14:00:29 -04:00
|
|
|
|
2024-06-03 14:06:29 -04:00
|
|
|
{{ end }}{{ if .Prompt }}USER: {{ .Prompt }}
|
2024-07-10 14:00:29 -04:00
|
|
|
{{ end }}ASSISTANT: {{ .Response }}</s>
|
|
|
|
{{ end -}}
|