sarpkantar commited on
Commit
0c1eda5
·
verified ·
1 Parent(s): 62ab7d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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.inputs.Textbox(lines=10, placeholder="Enter text to summarize..."),
17
- outputs="text"
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()