Spaces:
Build error
Build error
Update app.py
Browse files
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
|
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 |
|