webui / oh-no.py
camenduru's picture
Update oh-no.py
80b7487
raw
history blame
302 Bytes
import gradio as gr
block = gr.Blocks()
def run():
with block:
gr.Markdown(
"""
# oh no 😐 something wrong with the 🤗 hugging face servers 😐 hopefully, it will be fixed soon
""")
block.launch(server_name="0.0.0.0", server_port=7860)
if __name__ == "__main__":
run()