Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ with demo:
|
|
82 |
|
83 |
def cache_example(example):
|
84 |
processed_examples = audio.preprocess_example(example)
|
85 |
-
diarized_output, full_text = speech_to_text(
|
86 |
return processed_examples, diarized_output, full_text
|
87 |
|
88 |
cache = [cache_example(e) for e in EXAMPLES]
|
|
|
82 |
|
83 |
def cache_example(example):
|
84 |
processed_examples = audio.preprocess_example(example)
|
85 |
+
diarized_output, full_text = speech_to_text(example)
|
86 |
return processed_examples, diarized_output, full_text
|
87 |
|
88 |
cache = [cache_example(e) for e in EXAMPLES]
|