svjack commited on
Commit
a1a59ce
·
verified ·
1 Parent(s): e6016e2

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +2 -1
gradio_app.py CHANGED
@@ -30,7 +30,8 @@ iface = gr.Interface(
30
  inputs=gr.File(label="Upload SVG file", file_types=[".svg"]),
31
  outputs=gr.File(label="Download animated SVG"),
32
  title="SVG Animation Tool",
33
- description="Upload an SVG file to animate it using DeepSVG library"
 
34
  )
35
 
36
  iface.launch(share = True)
 
30
  inputs=gr.File(label="Upload SVG file", file_types=[".svg"]),
31
  outputs=gr.File(label="Download animated SVG"),
32
  title="SVG Animation Tool",
33
+ description="Upload an SVG file to animate it using DeepSVG library",
34
+ examples = [["svg0.svg", "svg1.svg"]]
35
  )
36
 
37
  iface.launch(share = True)