SebastianBodza commited on
Commit
977d14c
·
verified ·
1 Parent(s): c3cf266

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -96,7 +96,7 @@ def generate_tts_audio(
96
 
97
  print(f"Generating audio for text: '{text_input[:50]}...'")
98
  wav = current_model.generate(
99
- text_input[:300], # Truncate text to max chars
100
  audio_prompt_path=audio_prompt_path_input,
101
  exaggeration=exaggeration_input,
102
  temperature=temperature_input,
 
96
 
97
  print(f"Generating audio for text: '{text_input[:50]}...'")
98
  wav = current_model.generate(
99
+ text_input, # Truncate text to max chars
100
  audio_prompt_path=audio_prompt_path_input,
101
  exaggeration=exaggeration_input,
102
  temperature=temperature_input,