Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -40,8 +40,8 @@ def get_transcript(video_url):
|
|
40 |
|
41 |
gr.close_all()
|
42 |
demo = gr.Interface(fn=get_transcript,
|
43 |
-
inputs=[gr.Textbox(label="Input
|
44 |
outputs=[gr.Textbox(label="Summarized text", lines=4)],
|
45 |
-
title="
|
46 |
-
description="This application will be used to summarise the
|
47 |
demo.launch()
|
|
|
40 |
|
41 |
gr.close_all()
|
42 |
demo = gr.Interface(fn=get_transcript,
|
43 |
+
inputs=[gr.Textbox(label="Input text to summarize", lines=1)],
|
44 |
outputs=[gr.Textbox(label="Summarized text", lines=4)],
|
45 |
+
title="Text Summarizer",
|
46 |
+
description="This application will be used to summarise the text")
|
47 |
demo.launch()
|