work123 / oh-no.py
korp123's picture
Duplicate from ArtGAN/OrangeMix-Generator
a60b226
import gradio as gr
block = gr.Blocks()
def run():
with block:
gr.Markdown(
"""
<p>oh no 😐 something wrong with the πŸ€— hugging face servers 😐 hopefully, it will be fixed soon</p>
""")
block.launch(server_name="0.0.0.0", server_port=7860)
if __name__ == "__main__":
run()