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:
Bruce MacDonald 2023-07-07 17:12:02 -04:00
parent 61dd87bd90
commit f533f85d44
3 changed files with 13 additions and 19 deletions

View file

@ -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)
}),
)