Update app.py
Browse files
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 =
|
31 |
-
title = "
|
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 |
|