Spaces:
Runtime error
Runtime error
Commit
·
36560ff
1
Parent(s):
d79de75
correct output
Browse files
app.py
CHANGED
@@ -899,7 +899,7 @@ def ClearAudio():
|
|
899 |
def SingleTalk(WavFile, history5):
|
900 |
ConvertText = speech_to_text(WavFile)
|
901 |
history5 = history5 + [(ConvertText, None)]
|
902 |
-
yield history5
|
903 |
|
904 |
with gr.Blocks() as demo:
|
905 |
# gr.Markdown("Start typing below and then click **SUBMIT** to see the output.")
|
|
|
899 |
def SingleTalk(WavFile, history5):
|
900 |
ConvertText = speech_to_text(WavFile)
|
901 |
history5 = history5 + [(ConvertText, None)]
|
902 |
+
yield [None, history5]
|
903 |
|
904 |
with gr.Blocks() as demo:
|
905 |
# gr.Markdown("Start typing below and then click **SUBMIT** to see the output.")
|