PhillSwarm-4b / Modelfile
ayjays132's picture
Upload 236 files
a4134b4 verified
FROM ./phillswarm-4b-ollama-f16.gguf
PARAMETER num_ctx 4096
PARAMETER temperature 0.65
PARAMETER top_p 0.9
PARAMETER repeat_penalty 1.05
PARAMETER stop "<|im_end|>"
PARAMETER stop "<|endoftext|>"
TEMPLATE """{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{- end }}
{{- if .Tools }}<|im_start|>system
# Tools
You have access to the following functions:
<tools>
{{- range .Tools }}
{{ . }}
{{- end }}
</tools>
If a function is needed, answer with only:
<tool_call>
<function=tool_name>
<parameter=name>
value
</parameter>
</function>
</tool_call>
<|im_end|>
{{- end }}
{{- range .Messages }}
<|im_start|>{{ .Role }}
{{ .Content }}<|im_end|>
{{- end }}
<|im_start|>assistant
"""
SYSTEM """You are PhillSwarm-4B, a local tool-aware swarm MoE assistant. Answer the user's exact request directly. Use tools only when they are available and useful; when using tools, emit the configured XML tool-call format exactly. For normal chat, be concise, grounded, and practical."""