ollama/template/alpaca.gotmpl

21 lines
376 B
Go Template
Raw Normal View History

2024-06-27 14:15:17 -07:00
{{- if .Messages }}
{{- if .System }}{{ .System }}
2024-07-10 11:00:29 -07:00
{{ end }}
2024-06-27 14:15:17 -07:00
{{- range .Messages }}
{{- if eq .Role "user" }}### Instruction:
{{- else if eq .Role "assistant" }}### Response:
{{- end }}
{{ .Content }}
{{ end }}### Response:
2024-07-10 11:00:29 -07:00
{{ else -}}
2024-06-03 11:06:29 -07:00
{{ if .System }}{{ .System }}
{{ end }}{{ if .Prompt }}### Instruction:
{{ .Prompt }}
{{ end }}### Response:
2024-06-27 14:15:17 -07:00
{{ .Response }}
2024-07-10 11:00:29 -07:00
{{ end -}}