Skip to content

Commit f2cf97d

Browse files
authored
fix typo in modelfile generation (ollama#4439)
1 parent c344da4 commit f2cf97d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/routes.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ func GetModelInfo(req api.ShowRequest) (*api.ShowResponse, error) {
709709
}
710710

711711
var sb strings.Builder
712-
fmt.Fprintln(&sb, "# Modelfile generate by \"ollama show\"")
712+
fmt.Fprintln(&sb, "# Modelfile generated by \"ollama show\"")
713713
fmt.Fprintln(&sb, "# To build a new Modelfile based on this, replace FROM with:")
714714
fmt.Fprintf(&sb, "# FROM %s\n\n", model.ShortName)
715715
fmt.Fprint(&sb, model.String())

0 commit comments

Comments
 (0)