Update app.py
Browse files
app.py
CHANGED
|
@@ -46,5 +46,7 @@ def greet(prompt):
|
|
| 46 |
else:
|
| 47 |
return "Model is Down. Our team is working on it 😃"
|
| 48 |
|
|
|
|
|
|
|
| 49 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 50 |
-
iface.launch(show_api=False)
|
|
|
|
| 46 |
else:
|
| 47 |
return "Model is Down. Our team is working on it 😃"
|
| 48 |
|
| 49 |
+
css = "footer {visibility: none}"
|
| 50 |
+
|
| 51 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 52 |
+
iface.launch(css=css,show_api=False)
|