From 2a9a78dd1caec0811ed2640b28375890ee96e4cc Mon Sep 17 00:00:00 2001 From: historia Date: Thu, 27 Aug 2026 17:46:02 -0400 Subject: feat: help menu in tui --- app/backends/qwen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'app/backends/qwen.py') diff --git a/app/backends/qwen.py b/app/backends/qwen.py index 4f3afd9..2cd164f 100644 --- a/app/backends/qwen.py +++ b/app/backends/qwen.py @@ -494,7 +494,7 @@ def models_screen(stdscr) -> int: pip package; without one a guidance flash replaces the download, since pre-fetched weights without a backend to serve them buy nothing. The status table and options re-render after every action, so Esc pops back - to Configure backends. Always returns 0. + to Configure Backends. Always returns 0. """ while True: present = installed_models() @@ -522,7 +522,7 @@ def models_screen(stdscr) -> int: back_value=tui.Wizard.BACK, help_lines=["Models are normally pulled when their server first", "starts; Install pre-downloads one right now."], - table_title="Model state", table_rows=rows) + table_title="Model State", table_rows=rows) if choice is tui.Wizard.BACK: return 0 action, name = choice @@ -530,7 +530,7 @@ def models_screen(stdscr) -> int: continue if action == "install" and not _is_installed(): tui.flash(stdscr, "Install the qwen-tts backend first " - "(Configure backends > Install Backend).", "warn") + "(Configure Backends > Install Backend).", "warn") continue title = (f"Download {MODEL_REPOS[name]}" if action == "install" else f"Delete {name} weights") -- cgit v1.2.3