samuellimabraz commited on
Commit
a5bc561
·
unverified ·
1 Parent(s): b02dd8f

chore: Enable sharing option in Gradio interface and add Pydantic dependency

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirements.txt +1 -0
app.py CHANGED
@@ -296,4 +296,4 @@ if __name__ == "__main__":
296
  os.makedirs(DATABASE_DIR, exist_ok=True)
297
 
298
  iface = create_gradio_interface()
299
- iface.launch(ssr_mode=False)
 
296
  os.makedirs(DATABASE_DIR, exist_ok=True)
297
 
298
  iface = create_gradio_interface()
299
+ iface.launch(ssr_mode=False, share=True)
requirements.txt CHANGED
@@ -9,3 +9,4 @@ matplotlib==3.10.0
9
  opencv-python-headless==4.10.0.84
10
  pillow==11.1.0
11
  plotly==5.24.1
 
 
9
  opencv-python-headless==4.10.0.84
10
  pillow==11.1.0
11
  plotly==5.24.1
12
+ pydantic==2.10.5