ollama/template/llama3-instruct.gotmpl

19 lines
547 B
Go Template
Raw Normal View History

2024-06-28 05:15:17 +08:00
{{- if .Messages }}
{{- if .System }}<|start_header_id|>system<|end_header_id|>
{{ .System }}<|eot_id|>
{{- end }}
{{- range .Messages }}<|start_header_id|>{{ .Role }}<|end_header_id|>
{{ .Content }}<|eot_id|>
{{- end }}<|start_header_id|>assistant<|end_header_id|>
2024-07-11 02:00:29 +08:00
{{ else -}}
2024-06-04 02:06:29 +08:00
{{ if .System }}<|start_header_id|>system<|end_header_id|>
{{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
{{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
2024-06-28 05:15:17 +08:00
{{ .Response }}<|eot_id|>
2024-07-11 02:00:29 +08:00
{{- end -}}