File size: 833 Bytes
6312e43
a4c83b9
6312e43
a4c83b9
6312e43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import gradio as gr

def launch_gradio() -> None:

    HTML_instructions = """
        <div style="width:80%;margin:auto;text-align:center;">
            <h1 style="font-size:1.6em;">AI Avatar Podcast Generation</h1>
            <div style="font-size:1.3em;">
                We have officially launched podcast generation on our HeyGen Labs page.
                <br>
                Check it out here: <a href="https://labs.heygen.com/video-podcast?sid=hfvp">HeyGen Labs Video Podcast Generation</a>
                <br>
                <br>
                Thank you to all the feedback and testing from the community.
            </div>
        </div>
    """

    with gr.Blocks() as demo:
        gr.HTML(HTML_instructions)
        

    demo.queue()
    demo.launch(share=True)


if __name__ == "__main__":
    launch_gradio()