Update app.py
Browse files
app.py
CHANGED
|
@@ -63,7 +63,7 @@ def generate_speech(input_text):
|
|
| 63 |
iface = gr.Interface(
|
| 64 |
fn=generate_speech,
|
| 65 |
inputs=gr.Textbox(),
|
| 66 |
-
outputs=gr.Audio(),
|
| 67 |
live=False
|
| 68 |
)
|
| 69 |
|
|
|
|
| 63 |
iface = gr.Interface(
|
| 64 |
fn=generate_speech,
|
| 65 |
inputs=gr.Textbox(),
|
| 66 |
+
outputs=gr.Audio(autoplay=True), # Setting autoplay to True
|
| 67 |
live=False
|
| 68 |
)
|
| 69 |
|