Abijith commited on
Commit
55d9e6b
1 Parent(s): 62f82d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,8 +19,8 @@ def summarize_text(input_text):
19
  # Interface for the Gradio app
20
  iface = gr.Interface(
21
  fn=summarize_text,
22
- inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
23
- outputs=gr.outputs.Textbox(label="Summary"),
24
  title="Text Summarizer",
25
  description="Enter a paragraph, and the app will provide a summary.",
26
  )
 
19
  # Interface for the Gradio app
20
  iface = gr.Interface(
21
  fn=summarize_text,
22
+ inputs=gr.Textbox(lines=5, label="Input Text"),
23
+ outputs=gr.Textbox(label="Summary"),
24
  title="Text Summarizer",
25
  description="Enter a paragraph, and the app will provide a summary.",
26
  )