parthb3 commited on
Commit
9f1b98b
·
1 Parent(s): a199db5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 model is possible because of Hugging Face transformers.\n
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=False)
 
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)