aboutsummaryrefslogtreecommitdiff
path: root/converter
diff options
context:
space:
mode:
Diffstat (limited to 'converter')
-rw-r--r--converter/tts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/tts.py b/converter/tts.py
index db5de9b..49ebad0 100644
--- a/converter/tts.py
+++ b/converter/tts.py
@@ -104,7 +104,7 @@ class QwenTTSClient:
print("[WARNING] No reference text available; using x-vector-only clone mode (lower quality).")
print(' Pass --transcription "..." for higher-quality in-context cloning.')
else:
- print(f"[OK] Reference text: {self.voice_clone_ref_text[:100]}...")
+ print(f"[OK] Reference text:\n{self.voice_clone_ref_text}")
def _init_client(self, url: str, clone: bool = False) -> None:
"""Initialize a Gradio client and store its API metadata."""
@@ -179,7 +179,7 @@ class QwenTTSClient:
result = model.transcribe(audio_path)
text = (result.get("text") or "").strip()
if text:
- logger.info("Transcription complete via %s: %s...", backend, text[:100])
+ logger.info("Transcription complete via %s: %s", backend, text)
return text
except ImportError:
continue