awacke1 commited on
Commit
a17124b
1 Parent(s): b1edc76

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -7,6 +7,7 @@ def load_mesh(mesh_file_name):
7
  time.sleep(2)
8
  return mesh_file_name
9
 
 
10
 
11
  inputs = gr.Model3D()
12
  outputs = gr.Model3D(clear_color=[0.8, 0.2, 0.2, 1.0])
@@ -19,6 +20,7 @@ demo = gr.Interface(
19
  [os.path.join(os.path.dirname(__file__), "FinalBaseMesh.obj")],
20
  [os.path.join(os.path.dirname(__file__), "BEAR_BLK.OBJ")]
21
  ],
 
22
  cache_examples=True,
23
  )
24
 
 
7
  time.sleep(2)
8
  return mesh_file_name
9
 
10
+ description="3D Virtual Food 🥐🥑🥒🥓🥔🥕🥖🥗🥘🥙🥚🥛🥜🥝🥞🥟🥠🥡🥢🥣🥤🥥🥦🥧🥨🥩🥪🥫🥬🥭🥮🥯"
11
 
12
  inputs = gr.Model3D()
13
  outputs = gr.Model3D(clear_color=[0.8, 0.2, 0.2, 1.0])
 
20
  [os.path.join(os.path.dirname(__file__), "FinalBaseMesh.obj")],
21
  [os.path.join(os.path.dirname(__file__), "BEAR_BLK.OBJ")]
22
  ],
23
+ description=description,
24
  cache_examples=True,
25
  )
26