Models
GitHub
Discord
Docs
Cloud
Sign in
Download
Models
Download
GitHub
Discord
Docs
Cloud
Sign in
huihui_ai
/
homunculus-abliterated
:12b
899
Downloads
Updated
3 months ago
This is an uncensored version of arcee-ai/Homunculus created with abliteration
This is an uncensored version of arcee-ai/Homunculus created with abliteration
Cancel
thinking
12b
homunculus-abliterated:12b
...
/
template
4a2cfb568746 · 581B
{{- if .System }}<|im_start|>system
{{ .System }}<|im_end|>{{ end }}
{{- range $i, $_ := .Messages }}
{{- $last := eq (len (slice $.Messages $i)) 1}}
{{- if eq .Role "user" }}<|im_start|>user
{{ .Content }}
{{- else if eq .Role "assistant" }}<|im_start|>assistant
{{- if and $.IsThinkSet (and $last .Thinking) -}}
<think>
{{ .Thinking }}
</think>
{{- end }}{{ .Content }}{{- if not $last }}<|im_end|>{{- end }}
{{- end }}
{{- if and $last (ne .Role "assistant") }}<|im_start|>assistant
{{- if and $.IsThinkSet (not $.Think) -}}
<think>
</think>
{{ end }}
{{- end -}}
{{- end }}