ollama/template/alpaca.gotmpl

19 lines
414 B
Go Template
Raw Normal View History

2024-08-27 18:34:30 +00:00
{{- $system := "" }}
{{- range .Messages }}
{{- if eq .Role "system" }}
{{- if not $system }}{{ $system = .Content }}
{{- else }}{{ $system = printf "%s\n\n%s" $system .Content }}
{{- end }}
{{- else if eq .Role "user" }}
{{- if $system }}{{ $system }}
2024-06-03 18:06:29 +00:00
2024-08-27 18:34:30 +00:00
{{ $system = "" }}
{{- end }}### Instruction:
{{ .Content }}
2024-06-03 18:06:29 +00:00
2024-08-27 18:34:30 +00:00
{{ else if eq .Role "assistant" }}### Response:
{{ .Content }}
2024-07-10 18:00:29 +00:00
2024-08-27 18:34:30 +00:00
{{ end }}
{{- end }}### Response: