Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -279,5 +279,9 @@ with gr.Blocks() as demo:
|
|
| 279 |
inputs=[input_image_component, prompt_input, steps_slider], outputs=[video_output, seed_input], fn=generate_video, cache_examples=True, cache_mode="lazy"
|
| 280 |
)
|
| 281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 282 |
if __name__ == "__main__":
|
| 283 |
-
demo.queue().launch(mcp_server=True)
|
|
|
|
| 279 |
inputs=[input_image_component, prompt_input, steps_slider], outputs=[video_output, seed_input], fn=generate_video, cache_examples=True, cache_mode="lazy"
|
| 280 |
)
|
| 281 |
|
| 282 |
+
|
| 283 |
+
css = '''
|
| 284 |
+
.gradio-container .contain{max-width: 1000px !important; margin: 0 auto}
|
| 285 |
+
'''
|
| 286 |
if __name__ == "__main__":
|
| 287 |
+
demo.queue().launch(mcp_server=True, css=css)
|