clipai-demo / app.py
diegulio
fix app
a9bf980
raw
history blame
348 Bytes
import gradio as gr
from cedula.app import get_attributes as cedula_get_attributes
from license.app import get_attributes as license_get_attributes
with gr.Tab("Cedula"):
demo = gr.Interface(cedula_get_attributes, "file", "label")
with gr.Tab("Licencia"):
demo = gr.Interface(license_get_attributes, "file", "label")
demo.launch()