multimodalart HF Staff commited on
Commit
cbd966d
·
verified ·
1 Parent(s): 6fd121e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -234,8 +234,10 @@ def generate_video(
234
  return temp_video_file.name
235
 
236
  # --- 4. Gradio UI Definition ---
237
-
238
- with gr.Blocks(css="style.css") as demo:
 
 
239
  gr.Markdown("# 🎬 LongCat-Video")
240
  gr.Markdown('''[[Model](https://huggingface.co/meituan-longcat/LongCat-Video)]''')
241
 
 
234
  return temp_video_file.name
235
 
236
  # --- 4. Gradio UI Definition ---
237
+ css = '''
238
+ .fillable{max-width: 960px !important}
239
+ '''
240
+ with gr.Blocks(css=css) as demo:
241
  gr.Markdown("# 🎬 LongCat-Video")
242
  gr.Markdown('''[[Model](https://huggingface.co/meituan-longcat/LongCat-Video)]''')
243