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()