From f39daff46174b920bc771e8c6168c7eecc04efc9 Mon Sep 17 00:00:00 2001 From: Noah Gitsham <73707948+noahgitsham@users.noreply.github.com> Date: Fri, 3 Nov 2023 01:37:12 +0000 Subject: [PATCH] Add missing "be" to GPU support warning message (#983) --- server/routes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes.go b/server/routes.go index 83944ec0..1349e7bc 100644 --- a/server/routes.go +++ b/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 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) } }