Spaces:
Running
Running
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() |