File size: 244 Bytes
714bf26
 
 
 
 
 
 
 
c88e7ae
714bf26
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
import os

from model import Model

def create_demo(model: Model):
    with gr.Blocks() as demo:
        with gr.Row():
            gr.Markdown('## Text and Pose Conditional Video Generation (coming soon)')

    return demo