Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -198,7 +198,7 @@ with gr.Blocks() as demo:
|
|
198 |
gr.Markdown("""
|
199 |
1. Transcipt is generated by openai/whisper-base model by downloading YouTube video.\n
|
200 |
2. Summary is generated by gmurro/bart-large-finetuned-filtered-spotify-podcast-summ.\n
|
201 |
-
3. The
|
202 |
""")
|
203 |
|
204 |
# Defining the functions to call on clicking the button
|
@@ -207,4 +207,4 @@ with gr.Blocks() as demo:
|
|
207 |
sum_btn.click(fn=get_video, inputs=url, outputs=video, api_name="get_youtube_video", queue=False)
|
208 |
|
209 |
demo.queue()
|
210 |
-
demo.launch(share=
|
|
|
198 |
gr.Markdown("""
|
199 |
1. Transcipt is generated by openai/whisper-base model by downloading YouTube video.\n
|
200 |
2. Summary is generated by gmurro/bart-large-finetuned-filtered-spotify-podcast-summ.\n
|
201 |
+
3. The app is possible because of Hugging Face Transformers.\n
|
202 |
""")
|
203 |
|
204 |
# Defining the functions to call on clicking the button
|
|
|
207 |
sum_btn.click(fn=get_video, inputs=url, outputs=video, api_name="get_youtube_video", queue=False)
|
208 |
|
209 |
demo.queue()
|
210 |
+
demo.launch(share=True)
|