turbo_fm / app.py
zhiweili
add app_makeup
bc088da
raw
history blame contribute delete
229 Bytes
import gradio as gr
from app_makeup import create_demo as create_demo_makeup
with gr.Blocks(css="style.css") as demo:
with gr.Tabs():
with gr.Tab(label="Face Makeup"):
create_demo_makeup()
demo.launch()