File size: 721 Bytes
cc342ba
af98bc5
cc342ba
af98bc5
 
 
 
 
 
 
 
 
 
 
 
3fdcc70
af98bc5
 
 
 
 
 
 
 
cc342ba
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import gradio as gr

html = """
<!DOCTYPE html>
<html>
<head>
  <title>ControlLLM</title>
  <style>
    iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
  </style>
</head>
<body>
<div style="text-align:center"> <h1><strong><font style=color:rgba(2200,10,10,1)>This space is currently under maintenance due to network issues 😊😊</font></strong></h1></div>
<div style="text-align:center"><h2>We warmly welcome you to visit our <a href="https://github.com/OpenGVLab/ControlLLM" target="_blank">GitHub</a> if you’re interested πŸŽ‰πŸŽ‰</br></h2></div>
</body>
</html>
"""

with gr.Blocks() as demo:
    name = gr.HTML(html)

demo.launch()