mirror of
https://github.com/tcsenpai/ollama.git
synced 2025-06-06 19:25:21 +00:00
15 lines
365 B
Go Template
15 lines
365 B
Go Template
{{- 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 -}}
|
|
{{ if .System }}{{ .System }}
|
|
|
|
{{ end }}{{ if .Prompt }}USER: {{ .Prompt }}
|
|
{{ end }}ASSISTANT: {{ .Response }}</s>
|
|
{{ end -}} |