File size: 267 Bytes
53de76d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import gradio as gr

block = gr.Blocks()

def run():
  with block:
    gr.Markdown(
    """
    <p>Something Broke on the hugging face servers...temp solution</p>
    """)
    block.launch(server_name="0.0.0.0", server_port=7860)

if __name__ == "__main__":
    run()