nvishurl commited on
Commit
385a114
β€’
1 Parent(s): a32011a

Create oh-no.py

Browse files
Files changed (1) hide show
  1. oh-no.py +14 -0
oh-no.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ block = gr.Blocks()
4
+
5
+ def 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
+
13
+ if __name__ == "__main__":
14
+ run()