Commit d87b4a48 authored by Michael Yang's avatar Michael Yang
Browse files

fix modelfile message quotes

parent 4c14855a
......@@ -184,7 +184,7 @@ func (m *Model) String() string {
for _, msg := range m.Messages {
modelfile.Commands = append(modelfile.Commands, parser.Command{
Name: "message",
Args: fmt.Sprintf("%s %s", msg.Role, msg.Content),
Args: fmt.Sprintf("%s: %s", msg.Role, msg.Content),
})
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment