jipenaflor commited on
Commit
8ddf014
·
1 Parent(s): d327f28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -20,9 +20,9 @@ summarizer = gr.Interface.load("huggingface/facebook/bart-large-cnn")
20
 
21
  gradio_ui = Series(transcriber, summarizer,
22
  inputs = gr.inputs.Textbox(label = "Enter the Youtube URL below:"),
23
- outputs = "text",
24
- title = "Youtube Video Summarizer",
25
- theme = "grass",
26
  description = "This application uses facebook/bart-large-cnn to summarize a Youtube video based on its transcript. ")
27
 
28
  gradio_ui.launch()
 
20
 
21
  gradio_ui = Series(transcriber, summarizer,
22
  inputs = gr.inputs.Textbox(label = "Enter the Youtube URL below:"),
23
+ outputs = gr.outputs.Textbox(label = "Transcript Summary"),
24
+ title = "Youtube Transcript Summarizer",
25
+ theme = "dark-grass",
26
  description = "This application uses facebook/bart-large-cnn to summarize a Youtube video based on its transcript. ")
27
 
28
  gradio_ui.launch()