Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -203,4 +203,6 @@ with gr.Blocks(css=css) as app:
|
|
203 |
with gr.Column(scale=1):
|
204 |
image_output = gr.Image(type="pil", label="Image Output", elem_id="gallery")
|
205 |
|
206 |
-
generate_button.click(query,
|
|
|
|
|
|
203 |
with gr.Column(scale=1):
|
204 |
image_output = gr.Image(type="pil", label="Image Output", elem_id="gallery")
|
205 |
|
206 |
+
generate_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, strength], outputs=image_output)
|
207 |
+
|
208 |
+
app.launch(show_api=False, share=False)
|