From c6b32ce1f290da4cc8354db6bd54212750b8f77f Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Wed, 27 May 2026 12:17:01 +0800 Subject: [PATCH] message for screen readers in the terminal --- koboldcpp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koboldcpp.py b/koboldcpp.py index 03920d813..831f5259a 100644 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -10330,7 +10330,8 @@ def main(launch_args, default_args): # show the GUI launcher if a model was not provided if args.showgui or not has_valid_model(): #give them a chance to pick a file - print("For command line arguments, please refer to --help") + print("For command line arguments, please run --help in the terminal.") + print("The GUI mode is not accessible to screen readers.") print("***") try: show_gui()