File size: 334 Bytes
5a64744
 
708a6ea
 
5a64744
f011eee
5a64744
708a6ea
 
 
 
5a64744
f011eee
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()