ollama/template/magicoder.gotmpl

21 lines
366 B
Go Template
Raw Normal View History

2024-06-27 21:15:17 +00:00
{{- if .Messages }}
{{- if .System }}{{ .System }}
{{ end }}
{{- range .Messages }}
{{- if eq .Role "user" }}@@ Instruction
{{- else if eq .Role "assistant" }}@@ Response
{{- end }}
{{ .Content }}
{{ end }}@@ Response
2024-07-10 18:00:29 +00:00
{{ else -}}
2024-06-03 18:06:29 +00:00
{{ if .System }}{{ .System }}
{{ end }}{{ if .Prompt }}@@ Instruction
{{ .Prompt }}
{{ end }}@@ Response
2024-06-27 21:15:17 +00:00
{{ .Response }}
2024-07-10 18:00:29 +00:00
{{ end -}}