Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|