ollama/template/solar-instruct.gotmpl

12 lines
238 B
Go Template
Raw Normal View History

2024-08-27 11:34:30 -07: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 11:06:29 -07:00
2024-08-27 11:34:30 -07:00
{{ continue }}
{{- end }}
{{ .Content }}
2024-06-03 11:06:29 -07:00
{{ end }}### Assistant: