repro-files / app.py
simonduerr's picture
Update app.py
dcbe2ed
raw
history blame
188 Bytes
import gradio as gr
import os
with gr.Blocks() as demo:
f = gr.File(file_count="multiple")
j = gr.JSON()
f.upload(lambda files:[fo.name for fo in files], f, j)
demo.launch()