freddyaboulton HF staff commited on
Commit
4d4385d
1 Parent(s): 0af05e4

Add df example

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
3
  def identity(*args):
4
  return args
5
 
6
- components = ["image", "model3d", "audio", "video"]
7
- examples = [["0.jpg", "Bunny.obj", "cantina.wav", "test.mp4"]]
8
 
9
  gr.Interface(identity, components, components, examples=examples).launch()
 
3
  def identity(*args):
4
  return args
5
 
6
+ components = ["image", "model3d", "audio", "video", "dataframe"]
7
+ examples = [["0.jpg", "Bunny.obj", "cantina.wav", "test.mp4", "test-old.csv"]]
8
 
9
  gr.Interface(identity, components, components, examples=examples).launch()