Abrahamau commited on
Commit
5ab265e
·
verified ·
1 Parent(s): b1239e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=["audio"],
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"])