Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -69,9 +69,8 @@ with block:
|
|
69 |
|
70 |
with gr.Row():
|
71 |
with gr.Column():
|
72 |
-
input_image = gr.Image(
|
73 |
-
depth_image = gr.Image(
|
74 |
-
source='upload', type="pil", label="Depth Image Optional", value=None)
|
75 |
prompt = gr.Textbox(label="Prompt")
|
76 |
negative_prompt = gr.Textbox(label="Negative Prompt")
|
77 |
|
|
|
69 |
|
70 |
with gr.Row():
|
71 |
with gr.Column():
|
72 |
+
input_image = gr.Image(type="pil")
|
73 |
+
depth_image = gr.Image(type="pil", label="Depth Image Optional", value=None)
|
|
|
74 |
prompt = gr.Textbox(label="Prompt")
|
75 |
negative_prompt = gr.Textbox(label="Negative Prompt")
|
76 |
|