only pull gguf model if already exists (#1817)
This commit is contained in:
parent
9c2941e61b
commit
3a9f447141
1 changed files with 13 additions and 12 deletions
25
cmd/cmd.go
25
cmd/cmd.go
|
@ -158,18 +158,19 @@ func RunHandler(cmd *cobra.Command, args []string) error {
|
||||||
}
|
}
|
||||||
case err != nil:
|
case err != nil:
|
||||||
return err
|
return err
|
||||||
}
|
default:
|
||||||
|
// the model was found, check if it is in the correct format
|
||||||
if model.Details.Format != "gguf" {
|
if model.Details.Format != "" && model.Details.Format != "gguf" {
|
||||||
// pull and retry to see if the model has been updated
|
// pull and retry to see if the model has been updated
|
||||||
parts := strings.Split(name, string(os.PathSeparator))
|
parts := strings.Split(name, string(os.PathSeparator))
|
||||||
if len(parts) == 1 {
|
if len(parts) == 1 {
|
||||||
// this is a library model, log some info
|
// this is a library model, log some info
|
||||||
fmt.Fprintln(os.Stderr, "This model is no longer compatible with Ollama. Pulling a new version...")
|
fmt.Fprintln(os.Stderr, "This model is no longer compatible with Ollama. Pulling a new version...")
|
||||||
}
|
}
|
||||||
if err := PullHandler(cmd, []string{name}); err != nil {
|
if err := PullHandler(cmd, []string{name}); err != nil {
|
||||||
fmt.Printf("Error: %s\n", err)
|
fmt.Printf("Error: %s\n", err)
|
||||||
return fmt.Errorf("unsupported model, please update this model to gguf format") // relay the original error
|
return fmt.Errorf("unsupported model, please update this model to gguf format") // relay the original error
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue