Models
GitHub
Discord
Docs
Cloud
Sign in
Download
Models
Download
GitHub
Discord
Docs
Cloud
Sign in
hardrave
/
zombiellm
:latest
26
Downloads
Updated
1 month ago
ZombieLLM - a reanimated GPT-2 XL (1.5B) distilled from OpenAI’s GPT-OSS-20B - witty, survival-flavored, and fast. Single-turn by design: the template only feeds the last user message to the model, so each question is a fresh conversation.
ZombieLLM - a reanimated GPT-2 XL (1.5B) distilled from OpenAI’s GPT-OSS-20B - witty, survival-flavored, and fast. Single-turn by design: the template only feeds the last user message to the model, so each question is a fresh conversation.
Cancel
zombiellm:latest
...
/
template
cd92d04b9c7f · 286B
{{- if .Messages -}}
{{- range $i, $m := .Messages }}
{{- $last := eq (len (slice $.Messages $i)) 1 }}
{{- if and $last (eq $m.Role "user") }}
### Instruction:
{{ $m.Content }}
### Response:
{{- end }}
{{- end -}}
{{- else -}}
### Instruction:
{{ .Prompt }}
### Response:
{{- end -}}