multimodalart HF Staff commited on
Commit
56f44be
·
verified ·
1 Parent(s): 9f2b060

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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)