Spaces:
Runtime error
Runtime error
Commit
·
cea5cac
1
Parent(s):
41f8389
Update app.py
Browse files
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=
|
|
|
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()
|