Moibe commited on
Commit
08d2bc5
1 Parent(s): 46c13af

Test add title and label

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -59,8 +59,11 @@ def perform(input1, input2):
59
 
60
  return path
61
 
 
62
 
63
  demo = gr.Interface(
64
- fn=perform, inputs=[gr.Image(), gr.Image()], outputs=[gr.Image()], css="footer {visibility: hidden}"
 
 
65
  )
66
  demo.launch(auth=authenticate)
 
59
 
60
  return path
61
 
62
+ label = gr.Label("Hola!")
63
 
64
  demo = gr.Interface(
65
+ fn=perform,
66
+ title="Moibe's App",
67
+ inputs=[label, gr.Image(), gr.Image()], outputs=[gr.Image()], css="footer {visibility: hidden}"
68
  )
69
  demo.launch(auth=authenticate)