Spaces:
Runtime error
Runtime error
Commit
•
967d51e
1
Parent(s):
73ce2c2
Update app.py
Browse files
app.py
CHANGED
@@ -136,9 +136,8 @@ with gr.Blocks(css=css) as demo:
|
|
136 |
|
137 |
gr.Examples(
|
138 |
examples=examples,
|
139 |
-
fn=
|
140 |
inputs=[prompt],
|
141 |
-
outputs=[Image.open("./example.jpg"), seed],
|
142 |
cache_examples="lazy"
|
143 |
)
|
144 |
|
|
|
136 |
|
137 |
gr.Examples(
|
138 |
examples=examples,
|
139 |
+
fn=lambda x: (Image.open("./example.jpg"), 42),
|
140 |
inputs=[prompt],
|
|
|
141 |
cache_examples="lazy"
|
142 |
)
|
143 |
|