Merge pull request #837 from PickleOgre/main

Fix spelling error in fabric.go
This commit is contained in:
Daniel Miessler 2024-08-20 14:11:39 -07:00 committed by GitHub
commit 9eb70b8d80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ func (o *Fabric) SetupVendors() (err error) {
fmt.Printf("[%v] configured\n", vendor.GetName())
o.AddVendors(vendor)
} else {
fmt.Printf("[%v] skiped\n", vendor.GetName())
fmt.Printf("[%v] skipped\n", vendor.GetName())
}
}

View File

@ -43,7 +43,7 @@ func (o *Client) configure() (err error) {
return
}
o.client = ollamaapi.NewClient(o.apiUrl, &http.Client{Timeout: 10000 * time.Millisecond})
o.client = ollamaapi.NewClient(o.apiUrl, &http.Client{Timeout: 1200000 * time.Millisecond})
return
}