astro21 commited on
Commit
44c0da5
·
1 Parent(s): f04f898

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ def summarize_text(input_text):
11
 
12
  iface = gr.Interface(
13
  fn=summarize_text,
14
- inputs=gr.inputs.Textbox(label="Enter the text to summarize"),
15
- outputs=gr.outputs.Textbox(label="Summarized Text"),
16
  title="Text Summarizer",
17
  )
18
 
 
11
 
12
  iface = gr.Interface(
13
  fn=summarize_text,
14
+ inputs=gr.inputs.Textbox(lines = 10 , label="Enter the text to summarize"),
15
+ outputs=gr.outputs.Textbox(lines = 10 ,label="Summarized Text"),
16
  title="Text Summarizer",
17
  )
18