tommy24 commited on
Commit
ec8b37c
Β·
1 Parent(s): 4e92203

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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)