protoxx91/webui-docker
1
1import gradio as gr2 3block = gr.Blocks()4 5def run():6 with block:7 gr.Markdown(8 """9 <p>oh no ๐ something wrong with the ๐ค hugging face servers ๐ hopefully, it will be fixed soon</p>10 """)11 block.launch(server_name="0.0.0.0", server_port=7860)12 13if __name__ == "__main__":14 run()