JeCabrera commited on
Commit
0c61332
·
verified ·
1 Parent(s): 92088fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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)