import gradio as gr
import os
url = os.environ['IP_ADDRESS']
with gr.Blocks() as demo:
gr.HTML(
"""
Make-A-Character
If you like our project, please give us a ★ on Github to stay updated with the latest developments.
""")
if __name__ == "__main__":
demo.queue()
demo.launch()