abhi227070 commited on
Commit
9b67530
·
verified ·
1 Parent(s): b9ea0d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -23,8 +23,8 @@ def text_2_text_generation(input):
23
 
24
  iface = gr.Interface(
25
  fn = text_2_text_generation,
26
- inputs = gr.Text(),
27
- outputs = gr.Text()
28
  )
29
 
30
  iface.launch()
 
23
 
24
  iface = gr.Interface(
25
  fn = text_2_text_generation,
26
+ inputs = gr.Textbox(label = "Enter your queries...", lines = 5),
27
+ outputs = gr.Textbox(lines = 5)
28
  )
29
 
30
  iface.launch()