Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,8 @@ with gr.Blocks() as main:
|
|
77 |
submit = gr.Button("▶")
|
78 |
|
79 |
with gr.Row():
|
80 |
-
|
|
|
81 |
|
82 |
submit.click(generate, inputs=[input, negative_input, height, width, steps, guidance, seed], outputs=[image])
|
83 |
|
|
|
77 |
submit = gr.Button("▶")
|
78 |
|
79 |
with gr.Row():
|
80 |
+
with gr.Column():
|
81 |
+
image = gr.Image(label="Image")
|
82 |
|
83 |
submit.click(generate, inputs=[input, negative_input, height, width, steps, guidance, seed], outputs=[image])
|
84 |
|