Spaces:
Runtime error
Runtime error
sliders added
Browse files
app.py
CHANGED
@@ -81,7 +81,10 @@ iface = gr.Interface(
|
|
81 |
gr.CheckboxGroup(adapter_options.keys(), label="Adapter Choice",type='value'),
|
82 |
],
|
83 |
outputs=gr.Video(label="Generated Video"),
|
84 |
-
examples =
|
|
|
|
|
|
|
85 |
)
|
86 |
|
87 |
iface.launch()
|
|
|
81 |
gr.CheckboxGroup(adapter_options.keys(), label="Adapter Choice",type='value'),
|
82 |
],
|
83 |
outputs=gr.Video(label="Generated Video"),
|
84 |
+
examples = [
|
85 |
+
["a cat playing with a ball of yarn", "blurry", 7.5, 12, ["zoom-in"]],
|
86 |
+
["a dog running in a field", "dark, indoors", 8.0, 8, ["pan-left", "tilt-up"]],
|
87 |
+
]
|
88 |
)
|
89 |
|
90 |
iface.launch()
|