Spaces:
Paused
Paused
sarpkantar
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def translate(text):
|
|
13 |
# To create interface.
|
14 |
iface = gr.Interface(
|
15 |
fn=translate, # name of the function app.
|
16 |
-
inputs=gr.
|
17 |
-
outputs=
|
18 |
)
|
19 |
iface.launch()
|
|
|
13 |
# To create interface.
|
14 |
iface = gr.Interface(
|
15 |
fn=translate, # name of the function app.
|
16 |
+
inputs=gr.Textbox(lines=10, placeholder="Enter text to summarize..."),
|
17 |
+
outputs=gr.Textbox()
|
18 |
)
|
19 |
iface.launch()
|