enoreyes commited on
Commit
e47d2f5
·
1 Parent(s): 6959fd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -269,9 +269,8 @@ with demo:
269
 
270
 
271
  def cache_example(example):
272
- processed_examples = audio(example)
273
  diarized_output = speech_to_text(example)
274
- return processed_examples, diarized_output
275
 
276
  cache = [cache_example(e[0]) for e in EXAMPLES]
277
 
 
269
 
270
 
271
  def cache_example(example):
 
272
  diarized_output = speech_to_text(example)
273
+ return audio, diarized_output
274
 
275
  cache = [cache_example(e[0]) for e in EXAMPLES]
276