ollama/template/starcoder2-instruct.gotmpl

24 lines
412 B
Go Template
Raw Normal View History

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