Text input to 1000

#1
by Vanjo - opened
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -62,7 +62,7 @@ def generate_tts_audio(text_input, audio_prompt_path_input, exaggeration_input,
62
 
63
  print(f"Generating audio for text: '{text_input}'")
64
  wav = current_model.generate(
65
- text_input[:300],
66
  audio_prompt_path=audio_prompt_path_input,
67
  exaggeration=exaggeration_input,
68
  temperature=temperature_input,
 
62
 
63
  print(f"Generating audio for text: '{text_input}'")
64
  wav = current_model.generate(
65
+ text_input[:1000],
66
  audio_prompt_path=audio_prompt_path_input,
67
  exaggeration=exaggeration_input,
68
  temperature=temperature_input,