diff options
| author | historia <historiavg@proton.me> | 2026-08-27 18:46:54 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-27 18:46:54 -0400 |
| commit | 5ecf7711f3457587a00859b04e239d1d7de3ca2f (patch) | |
| tree | 6ec46eb453ab2ecdaa943fb359e7c17e9529d9fb | |
| parent | b6795046bf20023fd7b2e083ead20e7362f0c0d7 (diff) | |
| download | tts-audiobook-generator-5ecf7711f3457587a00859b04e239d1d7de3ca2f.tar.gz | |
remove: unnecessary settings descriptions
| -rw-r--r-- | app/ui/hub.py | 11 |
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 " |
