ollama/template/chatqa.gotmpl

18 lines
362 B
Go Template
Raw Normal View History

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