prashantsv commited on
Commit
820ca0a
·
verified ·
1 Parent(s): dba8578

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 Youtube URL to summarize the video", lines=1)],
44
  outputs=[gr.Textbox(label="Summarized text", lines=4)],
45
- title="Youtube Summarizer",
46
- description="This application will be used to summarise the youtube video")
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()