import gradio as gr def launch_gradio() -> None: HTML_instructions = """

AI Avatar Podcast Generation

We have officially launched podcast generation on our HeyGen Labs page.
Check it out here: HeyGen Labs Video Podcast Generation

Thank you to all the feedback and testing from the community.
""" with gr.Blocks() as demo: gr.HTML(HTML_instructions) demo.queue() demo.launch(share=True) if __name__ == "__main__": launch_gradio()