Spaces:
Runtime error
Runtime error
| 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() |