clipai-demo / app.py
diegulio
theme
6361941
raw
history blame contribute delete
359 Bytes
import gradio as gr
import gradio_theme
from cedula.app import create_model as create_cedula_model
from license.app import create_model as create_license_model
with gr.Blocks(theme=gradio_theme.theme) as demo:
with gr.TabItem("Cedula"):
create_cedula_model()
with gr.TabItem("Licencia"):
create_license_model()
demo.launch()