vishnux commited on
Commit
b601ac3
1 Parent(s): c6526a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -21,14 +21,14 @@ description = '''
21
  Enter a Youtube video URL and click submit for obtaining a summary.
22
  '''
23
 
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 = youtube_url_examples,
31
- title = "YouTube Transcript Summarizer",
32
  theme = "grass",
33
  description = description)
34
 
 
21
  Enter a Youtube video URL and click submit for obtaining a summary.
22
  '''
23
 
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)
34