SplaatKlasky's picture
Create old.py
7bd707f verified
raw
history blame
336 Bytes
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)