aboutsummaryrefslogtreecommitdiff
path: root/app/backends/qwen.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-27 17:46:02 -0400
committerhistoria <historiavg@proton.me>2026-08-27 17:46:02 -0400
commit2a9a78dd1caec0811ed2640b28375890ee96e4cc (patch)
tree6aebbb503a98eb035015ff56e51d4ccc4f4a395e /app/backends/qwen.py
parentcef2352a5e81b272d067c2c02eb9588e54edfcfd (diff)
downloadtts-audiobook-generator-2a9a78dd1caec0811ed2640b28375890ee96e4cc.tar.gz
feat: help menu in tui
Diffstat (limited to 'app/backends/qwen.py')
-rw-r--r--app/backends/qwen.py6
1 files changed, 3 insertions, 3 deletions
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")