You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
424 B
19 lines
424 B
3 weeks ago
|
{{- $system := "" }}
|
||
|
{{- range .Messages }}
|
||
|
{{- if eq .Role "system" }}
|
||
|
{{- if not $system }}{{ $system = .Content }}
|
||
|
{{- else }}{{ $system = printf "%s\n\n%s" $system .Content }}
|
||
|
{{- end }}
|
||
|
{{- else if eq .Role "user" }}
|
||
|
{{- if $system }}{{ $system }}
|
||
|
|
||
|
{{ $system = "" }}
|
||
|
{{- end }}### Instruction
|
||
|
{{ .Content }}
|
||
|
|
||
|
{{ else if eq .Role "assistant" }}### Response
|
||
|
{{ .Content }}<|endoftext|>
|
||
|
|
||
|
{{ end }}
|
||
|
{{- end }}### Response
|