Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -557,6 +557,15 @@ with gr.Blocks(css=css) as demo:
|
|
| 557 |
show_label=True
|
| 558 |
)
|
| 559 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 560 |
|
| 561 |
|
| 562 |
|
|
|
|
| 557 |
show_label=True
|
| 558 |
)
|
| 559 |
|
| 560 |
+
gr.Examples(examples=[
|
| 561 |
+
[["disaster_girl.jpg", "grumpycat.png"], "Next Scene: the camera zooms in, showing the cat walking away from the fire"],
|
| 562 |
+
[["wednesday.png"], "Next Scene: The camera pulls back and rises to an elevated angle, revealing the full dance floor with the choreographed movements of all dancers as the central figure becomes part of the larger ensemble."],
|
| 563 |
+
],
|
| 564 |
+
inputs=[input_images, prompt],
|
| 565 |
+
outputs=[result, seed],
|
| 566 |
+
fn=infer,
|
| 567 |
+
cache_examples="lazy")
|
| 568 |
+
|
| 569 |
|
| 570 |
|
| 571 |
|