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
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
}