CoolFace
Apppublic

cloudwp/DreamShaper-webui

sourceHugging Faceupdated 3y agoView on Hugging Face
1likes
oh-no.py14 linesDownload Raw Back to root
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()