Spaces:
Runtime error
Runtime error
Test add title and label
Browse files
app.py
CHANGED
@@ -59,8 +59,11 @@ def perform(input1, input2):
|
|
59 |
|
60 |
return path
|
61 |
|
|
|
62 |
|
63 |
demo = gr.Interface(
|
64 |
-
fn=perform,
|
|
|
|
|
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)
|