Selaa lähdekoodia

Remove duplicate "install" in GPU support warning (#984)

Noah Gitsham 1 vuosi sitten
vanhempi
commit
8ae8c9fa8c
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      server/routes.go

+ 1 - 1
server/routes.go

@@ -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 be enabled, check you have installed install GPU drivers: %v", err)
+			log.Printf("Warning: GPU support may not be enabled, check you have installed GPU drivers: %v", err)
 		}
 	}