初始化项目,由ModelHub XC社区提供模型
Model: unsloth/gemma-3-270m-it-qat-GGUF Source: Original Platform
This commit is contained in:
16
template
Normal file
16
template
Normal file
@@ -0,0 +1,16 @@
|
||||
{{- $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 }}
|
||||
Reference in New Issue
Block a user