File size: 348 Bytes
006413e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr
from cedula import get_attributes as cedula_get_attributes
from license 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()