File size: 245 Bytes
8ae56d4
 
991068d
8ae56d4
 
 
87f06d9
 
8ae56d4
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

from app_haircolor_img2img import create_demo as create_demo_haircolor

with gr.Blocks(css="style.css") as demo:
    with gr.Tabs():
        with gr.Tab(label="Hair Color"):
            create_demo_haircolor()

demo.launch()