chore: Enable sharing option in Gradio interface and add Pydantic dependency
Browse files- app.py +1 -1
- 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
|