Spaces:
Running
Running
import gradio as gr | |
def interaction(file): | |
return file.name | |
nxapp = gr.Interface(fn=interaction, inputs="file", outputs="file") | |
nxapp.launch() | |