mirror of
https://github.com/tcsenpai/ollama.git
synced 2025-06-06 19:25:21 +00:00
17 lines
377 B
Go Template
17 lines
377 B
Go Template
{{- if .Messages }}
|
|
{{- if .System }}System: {{ .System }}
|
|
|
|
{{ end }}
|
|
{{- range .Messages }}
|
|
{{- if eq .Role "user" }}User:
|
|
{{- else if eq .Role "assistant" }}Assistant:
|
|
{{- end }} {{ .Content }}
|
|
|
|
{{ end }}Assistant:
|
|
{{- else }}
|
|
{{ if .System }}System: {{ .System }}
|
|
|
|
{{ end }}{{ if .Prompt }}User: {{ .Prompt }}
|
|
|
|
{{ end }}Assistant: <|begin_of_text|>{{ .Response }}
|
|
{{- end }} |