mirror of
https://github.com/ollama/ollama.git
synced 2025-04-06 10:58:36 +02:00
fix model name not matching
This commit is contained in:
parent
c38ec5befb
commit
0625e805f0
@ -127,13 +127,9 @@ func RunHandler(cmd *cobra.Command, args []string) error {
|
||||
return err
|
||||
}
|
||||
|
||||
modelName, modelTag, ok := strings.Cut(args[0], ":")
|
||||
if !ok {
|
||||
modelTag = "latest"
|
||||
}
|
||||
|
||||
canonicalModelPath := server.ParseModelPath(args[0])
|
||||
for _, model := range models.Models {
|
||||
if model.Name == strings.Join([]string{modelName, modelTag}, ":") {
|
||||
if model.Name == canonicalModelPath.GetShortTagname() {
|
||||
return RunGenerate(cmd, args)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user