Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -47,7 +47,7 @@ radio3 = gr.Radio(["microsoft/speecht5_tts"], label="Select an tts", info="Age C
|
|
| 47 |
tab3 = gr.Interface(
|
| 48 |
fn=text2speech,
|
| 49 |
inputs=[radio3, "text"],
|
| 50 |
-
outputs=["
|
| 51 |
)
|
| 52 |
|
| 53 |
demo = gr.TabbedInterface([tab1, tab2, tab3], ["tab1", "tab2", "tab3"])
|
|
|
|
| 47 |
tab3 = gr.Interface(
|
| 48 |
fn=text2speech,
|
| 49 |
inputs=[radio3, "text"],
|
| 50 |
+
outputs=[gr.Audio(label="Generated Speech", type="numpy")],
|
| 51 |
)
|
| 52 |
|
| 53 |
demo = gr.TabbedInterface([tab1, tab2, tab3], ["tab1", "tab2", "tab3"])
|