File size: 334 Bytes
4800fce |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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() |