Explorar el Código

fix: restore modelfile system in prompt template (#1425)

Bruce MacDonald hace 1 año
padre
commit
e3f925fc1b
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      server/images.go

+ 5 - 0
server/images.go

@@ -64,6 +64,11 @@ func (m *Model) Prompt(p PromptVars) (string, error) {
 		return "", err
 	}
 
+	if p.System == "" {
+		// use the default system prompt for this model if one is not specified
+		p.System = m.System
+	}
+
 	vars := map[string]any{
 		"System":   p.System,
 		"Prompt":   p.Prompt,