abidlabs's picture
abidlabs HF staff
Update app.py
e4599b5
raw
history blame
278 Bytes
import gradio as gr
def identity(*args):
return args
components = ["image", "model3d", "audio", "video", "file"]
examples = [["0.jpg", "Bunny.obj", "cantina.wav", "test.mp4", "test-old.csv"]]
gr.Interface(identity, components, components, examples=examples).launch()