sakakuto commited on
Commit
4800fce
·
1 Parent(s): 0411838

Add application file

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ from app_t2v import create_demo as create_demo_t2v
4
+ from app_i2v import create_demo as create_demo_i2v
5
+
6
+ with gr.Blocks(css="style.css") as demo:
7
+ with gr.Tabs():
8
+ with gr.Tab(label="tx2vid"):
9
+ create_demo_t2v()
10
+ with gr.Tab(label="img2vid"):
11
+ create_demo_i2v()
12
+
13
+ demo.launch()