aboutsummaryrefslogtreecommitdiff
path: root/app/ui
diff options
context:
space:
mode:
Diffstat (limited to 'app/ui')
-rw-r--r--app/ui/hub.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/app/ui/hub.py b/app/ui/hub.py
index 172a4ed..e99a2e1 100644
--- a/app/ui/hub.py
+++ b/app/ui/hub.py
@@ -1563,19 +1563,14 @@ def _settings_fields() -> list:
"value": str(config.CHUNK_SIZE), "validate": _validate_chunk_size},
{"key": "input_dir", "label": "Input Directory", "kind": "dir",
"value": converter_mod.resolve_dir(config.INPUT_DIR, "input"),
- "validate": _validate_dir,
- "note": "Directory the books (.txt/.pdf/.epub) are read from. "
- "Relative paths resolve against the project root."},
+ "validate": _validate_dir},
{"key": "output_dir", "label": "Output Directory", "kind": "dir",
"value": converter_mod.resolve_dir(config.OUTPUT_DIR, "output"),
- "validate": _validate_dir,
- "note": "Directory the finished audiobooks are written to."},
+ "validate": _validate_dir},
{"key": "speed", "label": "Speed", "kind": "text",
"value": str(config.SPEED), "validate": _validate_speed},
{"key": "debug", "label": "Debug", "kind": "bool",
- "value": config.DEBUG,
- "note": "Dump each chunk's raw audio and the exact text sent "
- "for it, and log every TTS request and response."},
+ "value": config.DEBUG},
{"key": "stop_and_exit", "label": "Stop server and exit",
"kind": "bool", "value": config.STOP_SERVER_AND_EXIT,
"note": "Automatically stop the TTS server and exit TUI "