pranulondhe commited on
Commit
c8a99c0
·
verified ·
1 Parent(s): 99546f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -21,17 +21,17 @@ app = gr.Interface(
21
  fn=summarize_text,
22
 
23
  inputs=gr.Textbox(
24
- lines=100,
25
  label="Input Text"
26
  ),
27
 
28
  outputs=gr.Textbox(
29
- lines=40,
30
  label="Generated Summary"
31
  ),
32
 
33
- title="AI Text Summarizer",
34
- descriptionv="Generate concise summaries using Hugging Face Transformers.
35
  Built with Gradio and BART-Large-CNN."
36
  )
37
 
 
21
  fn=summarize_text,
22
 
23
  inputs=gr.Textbox(
24
+ lines=20,
25
  label="Input Text"
26
  ),
27
 
28
  outputs=gr.Textbox(
29
+ lines=10,
30
  label="Generated Summary"
31
  ),
32
 
33
+ title="📚AI Text Summarizer",
34
+ description="Generate concise summaries using Hugging Face Transformers.
35
  Built with Gradio and BART-Large-CNN."
36
  )
37