fix potentially inaccurate error message

This commit is contained in:
Bruce MacDonald
2023-11-17 18:05:28 -05:00
committed by Jeffrey Morgan
parent 984714f131
commit 43a726149d
2 changed files with 2 additions and 2 deletions

View File

@@ -226,7 +226,7 @@ type llama struct {
}
var (
errNvidiaSMI = errors.New("nvidia-smi command failed")
errNvidiaSMI = errors.New("warning: gpu support may not be enabled, check you have installed GPU drivers: nvidia-smi command failed")
errAvailableVRAM = errors.New("not enough VRAM available, falling back to CPU only")
)