Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| from app_t2v import create_demo as create_demo_t2v | |
| from app_i2v import create_demo as create_demo_i2v | |
| with gr.Blocks(css="style.css") as demo: | |
| with gr.Tabs(): | |
| with gr.Tab(label="tx2vid"): | |
| create_demo_t2v() | |
| with gr.Tab(label="img2vid"): | |
| create_demo_i2v() | |
| demo.launch() |