Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -55,5 +55,9 @@ def gen():
|
|
55 |
|
56 |
return img
|
57 |
|
58 |
-
iface = gr.Interface(
|
|
|
|
|
|
|
|
|
59 |
iface.launch(debug = True)
|
|
|
55 |
|
56 |
return img
|
57 |
|
58 |
+
iface = gr.Interface(
|
59 |
+
fn=gen,
|
60 |
+
inputs=None,
|
61 |
+
outputs="image"),
|
62 |
+
theme="darkhuggingface"
|
63 |
iface.launch(debug = True)
|