pngwn's picture
pngwn HF Staff
Update app.py
cdab4ad
raw
history blame contribute delete
195 Bytes
import gradio as gr
def file(file):
print(file)
return file.name
app = gr.Interface(fn=file, inputs=gr.File(file_count="multiple"), outputs=gr.File(file_count="multiple"))
app.launch()