shivanshu292001 commited on
Commit
cea5cac
·
1 Parent(s): 41f8389

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,10 +12,10 @@ def blog_gen(txt):
12
 
13
 
14
  iface = gr.Interface(fn=blog_gen,
15
- css="footer {visibility: hidden}",
16
  inputs=[
17
  gr.inputs.Textbox(
18
  lines=2, placeholder=None, label='Sentence'),
19
  ],
20
- outputs=[gr.outputs.JSON(label=None)])
 
21
  iface.launch()
 
12
 
13
 
14
  iface = gr.Interface(fn=blog_gen,
 
15
  inputs=[
16
  gr.inputs.Textbox(
17
  lines=2, placeholder=None, label='Sentence'),
18
  ],
19
+ outputs="text",
20
+ css="footer {visibility: hidden}")
21
  iface.launch()