Spaces:
Sleeping
Sleeping
Update to .queue().launch()
Browse files
app.py
CHANGED
@@ -86,4 +86,6 @@ with gr.Blocks() as demo:
|
|
86 |
yt_transcribe_btn = gr.Button("Transcribe YouTube Video")
|
87 |
yt_transcribe_btn.click(fn=yt_transcribe, inputs=yt_url_input, outputs=[yt_html_output, yt_text_output])
|
88 |
|
89 |
-
|
|
|
|
|
|
86 |
yt_transcribe_btn = gr.Button("Transcribe YouTube Video")
|
87 |
yt_transcribe_btn.click(fn=yt_transcribe, inputs=yt_url_input, outputs=[yt_html_output, yt_text_output])
|
88 |
|
89 |
+
|
90 |
+
if __name__ == "__main__":
|
91 |
+
demo.queue().launch()
|