Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ with gr.Blocks() as demo:
|
|
17 |
transcription = gr.State(value="")
|
18 |
clear = gr.Button("Clear")
|
19 |
|
20 |
-
inp.stream(transcribe, [inp, transcription], [out, transcription], time_limit=10, stream_every=
|
21 |
|
22 |
if __name__ == "__main__":
|
23 |
demo.launch()
|
|
|
17 |
transcription = gr.State(value="")
|
18 |
clear = gr.Button("Clear")
|
19 |
|
20 |
+
inp.stream(transcribe, [inp, transcription], [out, transcription], time_limit=10, stream_every=1)
|
21 |
|
22 |
if __name__ == "__main__":
|
23 |
demo.launch()
|