Spaces:
Configuration error
Configuration error
import gradio as gr | |
def cargar_fotos_tab(): | |
gr.Markdown("Suba fotos de frente y perfil derecho. Puede usar la cámara o cargar archivos.") | |
with gr.Row(): | |
imagen_frente = gr.Image(type="pil", label="Foto de frente", interactive=True) | |
imagen_perfil = gr.Image(type="pil", label="Foto de perfil derecho", interactive=True) | |
return imagen_frente, imagen_perfil | |