File size: 535 Bytes
4533bc5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr

block = gr.Blocks()

def run():
  with block:
    gr.Markdown(
    """
    <p>oh no 😐 something is wrong. I am trying to find out what it is. please check this.</p>
    <p>🚨 We have a new version ✨ please try it and add a comment if you find any issues. <a style="color: #00ff00;" href="https://huggingface.co/spaces/camenduru/webui-docker">https://huggingface.co/spaces/camenduru/webui-docker</a></p>
    """)
    block.launch(server_name="0.0.0.0", server_port=7860)

if __name__ == "__main__":
    run()