Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -182,7 +182,9 @@ inputs = [
|
|
182 |
gr.inputs.Textbox(label="Textbox3",type="password")
|
183 |
]
|
184 |
|
185 |
-
|
|
|
|
|
186 |
|
187 |
iface.launch()
|
188 |
|
|
|
182 |
gr.inputs.Textbox(label="Textbox3",type="password")
|
183 |
]
|
184 |
|
185 |
+
outputs = gr.outputs.Image(type="file")
|
186 |
+
|
187 |
+
iface = gr.Interface(fn=function, inputs=inputs, outputs=outputs)
|
188 |
|
189 |
iface.launch()
|
190 |
|