mirror of
https://github.com/ollama/ollama.git
synced 2025-07-28 15:23:11 +02:00
pr feedback
- move error check to api client pull - simplify error check in generate - return nil on any pull error
This commit is contained in:
@@ -106,6 +106,11 @@ func (c *Client) Pull(ctx context.Context, req *PullRequest, fn PullProgressFunc
|
||||
return err
|
||||
}
|
||||
|
||||
if resp.Error.Message != "" {
|
||||
// couldn't pull the model from the directory, proceed anyway
|
||||
return nil
|
||||
}
|
||||
|
||||
return fn(resp)
|
||||
}),
|
||||
)
|
||||
|
Reference in New Issue
Block a user