2024-06-27 21:15:17 +00: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:
|
|
|
|
{{- else }}
|
2024-06-03 18:06:29 +00:00
|
|
|
{{ if .System }}{{ .System }}
|
|
|
|
{{ end }}{{ if .Prompt }}USER: {{ .Prompt }}
|
2024-06-27 21:15:17 +00:00
|
|
|
{{ end }}ASSISTANT: {{ .Response }}
|
|
|
|
{{- end }}
|