Spaces:
Runtime error
Runtime error
feat: Update refine button click event in app.py
Browse files
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 |
|