File size: 153 Bytes
7ca2db3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()