Politrees commited on
Commit
745f387
·
verified ·
1 Parent(s): c52c271

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -1,3 +1,12 @@
 
1
  from PolUVR.utils import PolUVR_UI
2
 
3
- PolUVR_UI()
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
  from PolUVR.utils import PolUVR_UI
3
 
4
+ with gr.Blocks(
5
+ title="🎵 PolUVR 🎵",
6
+ css="footer{display:none !important}",
7
+ theme=gr.themes.Default(spacing_size="sm", radius_size="lg")
8
+ ) as app:
9
+ gr.HTML("<h1><center> 🎵 PolUVR 🎵 </center></h1>")
10
+ PolUVR_UI()
11
+
12
+ app.queue().launch(share=True, debug=True, show_error=True)