ControlLLM / app.py
zyliu's picture
Update app.py
cc342ba verified
raw
history blame contribute delete
721 Bytes
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()