bithal26 commited on
Commit
8442b78
Β·
verified Β·
1 Parent(s): 74bddaf

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +30 -11
requirements.txt CHANGED
@@ -1,11 +1,30 @@
1
- gradio>=4.0.0
2
- gradio_client
3
- torch
4
- torchvision
5
- opencv-python-headless
6
- numpy<2.0.0
7
- Pillow>=11.0.0
8
- fastapi
9
- python-multipart
10
- uvicorn
11
- facenet-pytorch
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ──────────────────────────────────────────────────────────────────────────────
2
+ # VERIDEX β€” Master UI Space requirements.txt
3
+ #
4
+ # Same rules as the Worker: no gradio pin, floor-only for torch/numpy.
5
+ # ──────────────────────────────────────────────────────────────────────────────
6
+
7
+ # Web framework & server
8
+ fastapi>=0.111.0
9
+ uvicorn[standard]>=0.30.0
10
+ python-multipart>=0.0.9 # required by FastAPI for UploadFile
11
+
12
+ # Gradio client β€” talks to the 7 Worker Spaces
13
+ # gradio_client 2.x ships with Gradio 6 and is the correct wire-protocol version
14
+ gradio_client>=2.0.0
15
+
16
+ # Face detection
17
+ facenet-pytorch>=2.6.0
18
+
19
+ # Deep-learning runtime (CPU-only fine here β€” UI does no model inference)
20
+ torch>=2.1.0
21
+ torchvision>=0.16.0
22
+
23
+ # Computer vision
24
+ opencv-python-headless>=4.8.0
25
+
26
+ # Numerical
27
+ numpy>=1.24,<3.0
28
+
29
+ # Image handling
30
+ Pillow>=10.0.0