File size: 338 Bytes
75ec120 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# ollama modelfile auto-generated by llamafactory
FROM .
TEMPLATE """{{ if .System }}System: {{ .System }}
{{ end }}{{ range .Messages }}{{ if eq .Role "user" }}Human: {{ .Content }}
Assistant:{{ else if eq .Role "assistant" }}{{ .Content }}<|end_of_text|>
{{ end }}{{ end }}"""
PARAMETER stop "<|end_of_text|>"
PARAMETER num_ctx 4096
|