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("
🎵 PolUVR 🎵
")
gr.Markdown(
"""
New Models:
- MelBand Roformer | Karaoke by becruily
"""
)
PolUVR_UI()
app.queue().launch(share=True, debug=True, show_error=True)