eHemink commited on
Commit
0604359
·
1 Parent(s): 9bb7f77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -77,7 +77,7 @@ def abstract_to_audio(insert_pdf):
77
 
78
  tss_pipeline = pipeline("text-to-speech", "suno/bark")
79
  speech = tss_pipeline(tss_prompt, forward_params={"do_sample": True})
80
- return (rate=speech["sampling_rate"], data=speech["audio"])
81
 
82
 
83
 
 
77
 
78
  tss_pipeline = pipeline("text-to-speech", "suno/bark")
79
  speech = tss_pipeline(tss_prompt, forward_params={"do_sample": True})
80
+ return (speech["sampling_rate"], speech["audio"])
81
 
82
 
83