File size: 283 Bytes
d1201fa
 
 
 
 
4d4385d
 
e4599b5
 
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()