stefantaubert commited on
Commit
2b946cf
1 Parent(s): 3899cce
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -75,7 +75,7 @@ example_text = "When the sunlight strikes raindrops in the air, they act as a pr
75
 
76
  iface = gr.Interface(
77
  fn=synt,
78
- inputs=[gr.Textbox(example_text)],
79
- outputs=[gr.Audio(type="numpy")],
80
  )
81
  iface.launch()
 
75
 
76
  iface = gr.Interface(
77
  fn=synt,
78
+ inputs=[gr.Textbox(example_text, label="Text")],
79
+ outputs=[gr.Audio(type="numpy", label="Speech", autoplay=True)],
80
  )
81
  iface.launch()