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