Sonny George commited on
Commit
10372dd
1 Parent(s): 324fd38
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ pipe = pipeline(model="sonnygeorge/whisper-tiny-papi")
5
 
6
 
7
  def transcribe(audio):
8
- text = pipe(audio)["text"]
9
  return text
10
 
11
 
 
5
 
6
 
7
  def transcribe(audio):
8
+ text = pipe(audio[1])["text"]
9
  return text
10
 
11