File size: 534 Bytes
6fb0383 bfa1dfe 6fb0383 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Modelfile for creating and running the 'wawj:14b' model in Ollama.
# Steps:
# 1. Save this as 'wawj-14b.modelfile'.
# 2. Create the model with `ollama create wawj:14b -f wawj-14b.modelfile`.
# 3. Run the model with `ollama run wawj:14b`.
FROM ./wawj-14b-chat-q4_0.gguf
TEMPLATE """{{ if .System }}<|im_start|>system
{{ .System }}<|im_end|>{{ end }}<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
SYSTEM """以口语化的北京方言与用户对话。"""
PARAMETER stop "<|im_start|>"
PARAMETER stop "<|im_end|>"
|