From 8fffb64f7971b24cf6675e70e3549558889280c8 Mon Sep 17 00:00:00 2001 From: jeffser Date: Sun, 13 Oct 2024 15:07:11 -0600 Subject: [PATCH] the --- src/connection_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection_handler.py b/src/connection_handler.py index c52ecf1..9b32a21 100644 --- a/src/connection_handler.py +++ b/src/connection_handler.py @@ -22,7 +22,7 @@ def log_output(pipe): if 'msg="model request too large for system"' in line: window.show_toast(_("Model request too large for system"), window.main_overlay) elif 'msg="amdgpu detected, but no compatible rocm library found.' in line: - window.ollama_information_label.set_label(_("AMD GPU detected but extension is missing, Ollama will use CPU")) + window.ollama_information_label.set_label(_("AMD GPU detected but the extension is missing, Ollama will use CPU")) window.ollama_information_label.set_css_classes(['dim-label', 'error']) elif 'msg="amdgpu is supported"' in line: window.ollama_information_label.set_label(_("Using AMD GPU type '{}'").format(line.split('=')[-1]))