vishnux commited on
Commit
669bfee
1 Parent(s): b601ac3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -24,10 +24,12 @@ description = '''
24
  youtube_url_examples = [['https://www.youtube.com/watch?v=MBRqu0YOH14'],
25
  ['https://www.youtube.com/watch?v=UjtOGPJ0URM']]
26
 
 
 
27
  iface = Series(transcriber, summarizer,
28
  inputs = gr.inputs.Textbox(label = "Enter the YouTube URL"),
29
  outputs = gr.outputs.Textbox(label = "Transcript Summary"),
30
- examples = ['https://www.youtube.com/watch?v=MBRqu0YOH14', 'https://www.youtube.com/watch?v=UjtOGPJ0URM'],
31
  title = "DistilYT",
32
  theme = "grass",
33
  description = description)
24
  youtube_url_examples = [['https://www.youtube.com/watch?v=MBRqu0YOH14'],
25
  ['https://www.youtube.com/watch?v=UjtOGPJ0URM']]
26
 
27
+ #Videos taken from Kurzgesagt – In a Nutshell
28
+
29
  iface = Series(transcriber, summarizer,
30
  inputs = gr.inputs.Textbox(label = "Enter the YouTube URL"),
31
  outputs = gr.outputs.Textbox(label = "Transcript Summary"),
32
+ examples = youtube_url_examples,
33
  title = "DistilYT",
34
  theme = "grass",
35
  description = description)