ASG Models commited on
Commit
7be5ca9
·
verified ·
1 Parent(s): d0f8976

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -233,7 +233,7 @@ with gr.Blocks() as demo:
233
  with gr.Tab("AI Speech"):
234
  gr.Markdown("# Text to Speech")
235
  text_input2 = gr.Textbox(label="Enter Text")
236
- audio_output = gr.Audio(streaming=True)
237
  text_input2.submit(text_to_speech, text_input2, audio_output)
238
 
239
 
 
233
  with gr.Tab("AI Speech"):
234
  gr.Markdown("# Text to Speech")
235
  text_input2 = gr.Textbox(label="Enter Text")
236
+ audio_output = gr.Audio(streaming=True,autoplay=True)
237
  text_input2.submit(text_to_speech, text_input2, audio_output)
238
 
239