tommy24 commited on
Commit
d340f39
·
1 Parent(s): aa3596e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -241,9 +241,9 @@ inputs = [
241
  ]
242
 
243
  # outputs = gr.outputs.Image(type="numpy")
244
- # outputs = gr.outputs.Audio(type="filepath")
245
 
246
- iface = gr.Interface(fn=function, inputs=inputs, outputs="text")
247
 
248
  iface.launch()
249
 
 
241
  ]
242
 
243
  # outputs = gr.outputs.Image(type="numpy")
244
+ outputs = gr.outputs.Audio(type="filepath")
245
 
246
+ iface = gr.Interface(fn=function, inputs=inputs, outputs=outputs)
247
 
248
  iface.launch()
249