Spaces:
Runtime error
Runtime error
File size: 283 Bytes
7df9f97 | 1 2 3 4 5 6 7 8 9 | import gradio as gr
def identity(*args):
return args
components = ["image", "model3d", "audio", "video", "dataframe"]
examples = [["0.jpg", "Bunny.obj", "cantina.wav", "test.mp4", "test-old.csv"]]
gr.Interface(identity, components, components, examples=examples).launch() |