Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,8 +19,8 @@ num_inference_steps = gr.Slider(10, 50, value=25)
|
|
| 19 |
interface = gr.Interface(
|
| 20 |
generate,
|
| 21 |
inputs=[prompt, num_inference_steps],
|
| 22 |
-
examples=[["Astronaut riding a horse", 25], ["Darth vader surfing in waves", 20]]
|
| 23 |
outputs="video",
|
| 24 |
cache_examples=False,
|
| 25 |
theme="soft"
|
| 26 |
-
)
|
|
|
|
| 19 |
interface = gr.Interface(
|
| 20 |
generate,
|
| 21 |
inputs=[prompt, num_inference_steps],
|
| 22 |
+
examples=[["Astronaut riding a horse", 25], ["Darth vader surfing in waves", 20]],
|
| 23 |
outputs="video",
|
| 24 |
cache_examples=False,
|
| 25 |
theme="soft"
|
| 26 |
+
).launch()
|