File size: 398 Bytes
bf220ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# ollama modelfile auto-generated by llamafactory
FROM .
TEMPLATE """[gMASK]<sop>{{ if .System }}<|system|>
{{ .System }}{{ end }}{{ range .Messages }}{{ if eq .Role "user" }}<|user|>
{{ .Content }}<|assistant|>{{ else if eq .Role "assistant" }}
{{ .Content }}{{ end }}{{ end }}"""
PARAMETER stop "<|user|>"
PARAMETER stop "<|endoftext|>"
PARAMETER stop "<|observation|>"
PARAMETER num_ctx 4096
|