aboutsummaryrefslogtreecommitdiff
path: root/app/backends/audiocpp/wizard.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-27 23:39:33 -0400
committerhistoria <historiavg@proton.me>2026-08-27 23:39:33 -0400
commit967b60342af11ada1cd6a27c935dd336523fb1cd (patch)
tree39e8350f337ab8dbf2733d0dec2b8886d1a1088e /app/backends/audiocpp/wizard.py
parenteb465fb2a972b6b07c4b427f940b186745ce6d90 (diff)
downloadtts-audiobook-generator-967b60342af11ada1cd6a27c935dd336523fb1cd.tar.gz
remove: unnecessary tui text
Diffstat (limited to 'app/backends/audiocpp/wizard.py')
-rw-r--r--app/backends/audiocpp/wizard.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/app/backends/audiocpp/wizard.py b/app/backends/audiocpp/wizard.py
index 75d84ee..91a8522 100644
--- a/app/backends/audiocpp/wizard.py
+++ b/app/backends/audiocpp/wizard.py
@@ -454,7 +454,6 @@ def _wizard(stdscr, args: argparse.Namespace, parser: argparse.ArgumentParser
"key": "backend", "label": "Inference backend",
"kind": "choice", "value": default_backend,
"choices": options,
- "note": "audiocpp_server is not built yet.",
})
fields.append({
"key": "build", "label": "Build audiocpp_server now?",
@@ -466,8 +465,6 @@ def _wizard(stdscr, args: argparse.Namespace, parser: argparse.ArgumentParser
"key": "wav_dir", "label": "Voice clone .wav directory",
"kind": "dir", "value": Path(wav_start) if wav_start else None,
"visible": lambda fs: bool(s["include_clone"]),
- "note": "Published as the server-level voice presets "
- "(prompt_text transcribed with whisper).",
}
fields.append(wav_field)
@@ -487,8 +484,6 @@ def _wizard(stdscr, args: argparse.Namespace, parser: argparse.ArgumentParser
"key": "download",
"label": "Download the selected models automatically?",
"kind": "bool", "value": True,
- "note": "No prints the model_manager_v2.py install "
- "commands for any models not already installed.",
})
model_sync_relevant = len(s["entry_ids"]) == 1 and not (
@@ -499,8 +494,6 @@ def _wizard(stdscr, args: argparse.Namespace, parser: argparse.ArgumentParser
"key": "sync_model_ids",
"label": f"Make '{s['entry_ids'][0]}' the default model?",
"kind": "bool", "value": True,
- "note": "Writes AUDIOCPP_MODEL_ID/AUDIOCPP_CLONE_MODEL_ID "
- "to app/converter/config.py.",
})
new_paths = {entry["path"] for entry in s["model_entries"]}
@@ -515,8 +508,6 @@ def _wizard(stdscr, args: argparse.Namespace, parser: argparse.ArgumentParser
"label": f"Delete {count} unused downloaded model "
f"{'entry' if count == 1 else 'entries'} from disk?",
"kind": "bool", "value": False,
- "note": "Selected models were removed above but their "
- "downloads are still on disk.",
})
result = tui.form(