mirror of
https://github.com/ollama/ollama
synced 2026-04-23 08:45:14 +00:00
mlx: use default http client (#15405)
This commit is contained in:
parent
dfae363b5b
commit
780556c4d0
|
|
@ -110,7 +110,7 @@ func NewClient(modelName string) (*Client, error) {
|
|||
c := &Client{
|
||||
modelName: modelName,
|
||||
done: make(chan struct{}),
|
||||
client: &http.Client{Timeout: 10 * time.Minute},
|
||||
client: http.DefaultClient,
|
||||
}
|
||||
|
||||
modelManifest, err := manifest.LoadManifest(modelName)
|
||||
|
|
|
|||
Loading…
Reference in a new issue