kevinwang676 commited on
Commit
b3a3c8a
·
1 Parent(s): 7fcb0ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,7 +35,7 @@ inference = pipeline(task=Tasks.text_to_speech, model=model_id)
35
 
36
  def infer(text):
37
  output = inference(input=text)
38
- return output["output_wav"]
39
 
40
  app = gr.Blocks()
41
 
 
35
 
36
  def infer(text):
37
  output = inference(input=text)
38
+ return output
39
 
40
  app = gr.Blocks()
41