nx-storage / app.py
Emerson-Britto
.
1db582e
raw
history blame
147 Bytes
import gradio as gr
def interaction(file):
return file.name
nxapp = gr.Interface(fn=interaction, inputs="file", outputs="file")
nxapp.launch()