ollama/template/solar-instruct.gotmpl

12 lines
238 B
Go Template
Raw Normal View History

2024-08-27 18:34:30 +00:00
{{- range .Messages }}
{{- if eq .Role "system" }}### System:
{{- else if eq .Role "user" }}### User:
{{- else if eq .Role "assistant" }}### Assistant:
{{ .Content }}</s>
2024-06-03 18:06:29 +00:00
2024-08-27 18:34:30 +00:00
{{ continue }}
{{- end }}
{{ .Content }}
2024-06-03 18:06:29 +00:00
{{ end }}### Assistant: