Models
GitHub
Discord
Docs
Cloud
Sign in
Download
Models
Download
GitHub
Discord
Docs
Cloud
Sign in
qllama
/
gemma3-strip
:latest
11
Downloads
Updated
1 week ago
Optimized for PowerToys AI Paste. Functions exactly like .strip() to remove leading/trailing whitespace and newlines without altering internal structure or executing code. Fast, private, and hallucination-free.
Optimized for PowerToys AI Paste. Functions exactly like .strip() to remove leading/trailing whitespace and newlines without altering internal structure or executing code. Fast, private, and hallucination-free.
Cancel
gemma3-strip:latest
...
/
template
62bfa85c2dc9 · 477B
{{- $systemPromptAdded := false }}
{{- range $i, $_ := .Messages }}
{{- $last := eq (len (slice $.Messages $i)) 1 }}
{{- if eq .Role "user" }}<start_of_turn>user
{{- if (and (not $systemPromptAdded) $.System) }}
{{- $systemPromptAdded = true }}
{{ $.System }}
{{ end }}
{{ .Content }}<end_of_turn>
{{ if $last }}<start_of_turn>model
{{ end }}
{{- else if eq .Role "assistant" }}<start_of_turn>model
{{ .Content }}{{ if not $last }}<end_of_turn>
{{ end }}
{{- end }}
{{- end }}