import gradio as gr import os url = os.environ['IP_ADDRESS'] with gr.Blocks(css = ".output-image, .input-image, .image-preview {height: 400px !important} ") 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()