Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -56,6 +56,6 @@ with gr.Blocks(theme="rawrsor1/Everforest") as demo:
|
|
| 56 |
audio_input = gr.Audio(type="filepath")
|
| 57 |
text_output = gr.Textbox( label="speaker diarization")
|
| 58 |
speaker_diarization_button = gr.Button("Submit")
|
| 59 |
-
speaker_diarization_button.click(fn=transcribe, inputs=[audio_input],
|
| 60 |
demo.launch(debug=True)
|
| 61 |
|
|
|
|
| 56 |
audio_input = gr.Audio(type="filepath")
|
| 57 |
text_output = gr.Textbox( label="speaker diarization")
|
| 58 |
speaker_diarization_button = gr.Button("Submit")
|
| 59 |
+
speaker_diarization_button.click(fn=transcribe, inputs=[audio_input], outputs=[text_output])
|
| 60 |
demo.launch(debug=True)
|
| 61 |
|