magicoder.gotmpl 364 Bytes
Newer Older
Michael Yang's avatar
Michael Yang committed
1
2
3
4
5
6
7
8
9
10
11
12
{{- if .Messages }}
{{- if .System }}{{ .System }}

{{ end }}
{{- range .Messages }}
{{- if eq .Role "user" }}@@ Instruction
{{- else if eq .Role "assistant" }}@@ Response
{{- end }}
{{ .Content }}

{{ end }}@@ Response
{{ else }}
Michael Yang's avatar
Michael Yang committed
13
14
15
16
17
18
{{ if .System }}{{ .System }}

{{ end }}{{ if .Prompt }}@@ Instruction
{{ .Prompt }}

{{ end }}@@ Response
Michael Yang's avatar
Michael Yang committed
19
20
{{ .Response }}
{{- end }}