filetest / app.py
aliabid94's picture
aliabid94 HF Staff
Create app.py
7ca2db3 verified
raw
history blame
153 Bytes
import gradio as gr
with gr.Blocks() as demo:
f = gr.File()
f2 = gr.File()
btn = gr.Button()
btn.click(lamda x:x, f, f2)
demo.launch()