jfrancom commited on
Commit
fffd7f1
1 Parent(s): 95a340f

print text split

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -36,7 +36,8 @@ def transcribe(microphone, file_upload):
36
  file = microphone if microphone is not None else file_upload
37
 
38
  text = pipe(file)["text"]
39
- return warn_output + str(text).split()
 
40
 
41
 
42
  def _return_yt_html_embed(yt_url):
 
36
  file = microphone if microphone is not None else file_upload
37
 
38
  text = pipe(file)["text"]
39
+ print(str(text).split())
40
+ return str(text).split()
41
 
42
 
43
  def _return_yt_html_embed(yt_url):