Spaces:
Runtime error
Runtime error
Update app_gradio.py
Browse files- app_gradio.py +8 -0
app_gradio.py
CHANGED
|
@@ -257,6 +257,14 @@ with gr.Blocks(css=css) as demo:
|
|
| 257 |
label="Motion Strength"
|
| 258 |
)
|
| 259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 260 |
with gr.Column():
|
| 261 |
gr.Examples(
|
| 262 |
examples=[
|
|
|
|
| 257 |
label="Motion Strength"
|
| 258 |
)
|
| 259 |
|
| 260 |
+
|
| 261 |
+
generate_btn = gr.Button(
|
| 262 |
+
"Generate Animation",
|
| 263 |
+
variant="primary",
|
| 264 |
+
elem_classes="generate-btn",
|
| 265 |
+
interactive=True,
|
| 266 |
+
)
|
| 267 |
+
|
| 268 |
with gr.Column():
|
| 269 |
gr.Examples(
|
| 270 |
examples=[
|