File size: 356 Bytes
745f387
c52c271
b08c20e
745f387
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
from PolUVR.utils import PolUVR_UI

with gr.Blocks(
    title="🎵 PolUVR 🎵",
    css="footer{display:none !important}",
    theme=gr.themes.Default(spacing_size="sm", radius_size="lg")
) as app:
    gr.HTML("<h1><center> 🎵 PolUVR 🎵 </center></h1>")
    PolUVR_UI()

app.queue().launch(share=True, debug=True, show_error=True)