Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -66,10 +66,10 @@ with gr.Blocks() as demo:
|
|
66 |
output = gr.Image(label='Result')
|
67 |
|
68 |
gr.Examples(
|
69 |
-
[['./cat.png', './starry_night.jpg', 0.5, '', '']],
|
70 |
-
[img1, img2, slider, prompt, negative_prompt],
|
71 |
-
output,
|
72 |
-
blend,
|
73 |
cache_examples=True,
|
74 |
)
|
75 |
|
|
|
66 |
output = gr.Image(label='Result')
|
67 |
|
68 |
gr.Examples(
|
69 |
+
examples=[['./cat.png', './starry_night.jpg', 0.5, '', '']],
|
70 |
+
inputs=[img1, img2, slider, prompt, negative_prompt],
|
71 |
+
outputs=output,
|
72 |
+
fn=blend,
|
73 |
cache_examples=True,
|
74 |
)
|
75 |
|