Add missing "be" to GPU support warning message (#983)

This commit is contained in:
Noah Gitsham
2023-11-03 01:37:12 +00:00
committed by GitHub
parent c50b01bc21
commit f39daff461

View File

@@ -697,7 +697,7 @@ func Serve(ln net.Listener, allowOrigins []string) error {
if runtime.GOOS == "linux" {
// check compatibility to log warnings
if _, err := llm.CheckVRAM(); err != nil {
log.Printf("Warning: GPU support may not enabled, check you have installed install GPU drivers: %v", err)
log.Printf("Warning: GPU support may not be enabled, check you have installed install GPU drivers: %v", err)
}
}