File size: 463 Bytes
cb34c30 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# ollama modelfile auto-generated by llamafactory
FROM .
TEMPLATE """{{ if .System }}{{ .System }}{{ end }}{{ range .Messages }}{{ if eq .Role "user" }}### Instruction:
{{ .Content }}
### Response:
{{ else if eq .Role "assistant" }}{{ .Content }}<|endoftext|>
{{ end }}{{ end }}"""
SYSTEM """Below is an instruction that describes a task. Write a response that appropriately completes the request.
"""
PARAMETER stop "<|endoftext|>"
PARAMETER num_ctx 4096
|