Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -82,6 +82,7 @@ with gr.Blocks() as demo:
|
|
82 |
gr.Examples(examples=examples,
|
83 |
inputs=[prompts,negative_prompts, in_image],
|
84 |
outputs=out_image,
|
|
|
85 |
cache_examples=True)
|
86 |
btn.click(fn=infer, inputs=[prompts,negative_prompts, in_image] , outputs=out_image)
|
87 |
|
|
|
82 |
gr.Examples(examples=examples,
|
83 |
inputs=[prompts,negative_prompts, in_image],
|
84 |
outputs=out_image,
|
85 |
+
fn=infer,
|
86 |
cache_examples=True)
|
87 |
btn.click(fn=infer, inputs=[prompts,negative_prompts, in_image] , outputs=out_image)
|
88 |
|