Lisandro commited on
Commit
5d6fc00
·
1 Parent(s): 81c4f2e

feat: Update refine button click event in app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ with gr.Blocks() as demo:
51
  refine_btn = gr.Button("Refine")
52
  output = gr.Image()
53
 
54
- refine_btn.click(refine_image, inputs=[image, prompt, negative_prompt, num_inference_steps, guidance_scale, seed], outputs=output)
55
 
56
  demo.launch()
57
 
 
51
  refine_btn = gr.Button("Refine")
52
  output = gr.Image()
53
 
54
+ refine_btn.click(refine_image, inputs=[image, prompt, negative_prompt, num_inference_steps, guidance_scale, seed], outputs=output)
55
 
56
  demo.launch()
57