adhim
commited on
Commit
·
06e8d0f
1
Parent(s):
38889c4
exampels added
Browse files
app.py
CHANGED
@@ -780,6 +780,11 @@ with gr.Blocks() as demo:
|
|
780 |
|
781 |
# Fill in the blanks
|
782 |
showButtonFilBla.click(fn=fill_in_blanks, inputs=[summary], outputs=[blanks], queue=True)
|
|
|
|
|
|
|
|
|
|
|
783 |
|
784 |
if __name__ == "__main__":
|
785 |
demo.launch(show_api=False)
|
|
|
780 |
|
781 |
# Fill in the blanks
|
782 |
showButtonFilBla.click(fn=fill_in_blanks, inputs=[summary], outputs=[blanks], queue=True)
|
783 |
+
|
784 |
+
gr.Examples(
|
785 |
+
examples=["https://www.youtube.com/watch?v=P6FORpg0KVo", "https://www.youtube.com/watch?v=bwEIqjU2qgk"],
|
786 |
+
inputs=[yt_link]
|
787 |
+
)
|
788 |
|
789 |
if __name__ == "__main__":
|
790 |
demo.launch(show_api=False)
|