初始化项目,由ModelHub XC社区提供模型

Model: unsloth/gemma-3-270m-it-qat-GGUF
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-20 14:28:08 +08:00
commit f21f1a31cc
30 changed files with 874 additions and 0 deletions

16
template Normal file
View 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 }}