mlx: use default http client (#15405)

This commit is contained in:
Patrick Devine 2026-04-07 14:53:23 -07:00 committed by GitHub
parent dfae363b5b
commit 780556c4d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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