petter2025 commited on
Commit
9a64285
·
verified ·
1 Parent(s): 3c1311b

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -3
requirements.txt CHANGED
@@ -1,14 +1,30 @@
 
1
  gradio==5.49.1
2
  fastapi==0.115.2
3
  uvicorn==0.24.0
 
 
4
  sentence-transformers==2.2.2
5
  faiss-cpu==1.7.4
6
- requests==2.31.0
7
  numpy==1.24.3
8
  pandas==2.0.3
9
- pydantic==2.5.0
10
  scikit-learn==1.3.0
11
  scipy==1.11.3
12
- plotly==5.17.0
 
 
 
 
 
 
13
  aiohttp==3.9.1
14
  python-multipart==0.0.18
 
 
 
 
 
 
 
 
 
 
1
+ # Web Framework
2
  gradio==5.49.1
3
  fastapi==0.115.2
4
  uvicorn==0.24.0
5
+
6
+ # ML & Data Science
7
  sentence-transformers==2.2.2
8
  faiss-cpu==1.7.4
 
9
  numpy==1.24.3
10
  pandas==2.0.3
 
11
  scikit-learn==1.3.0
12
  scipy==1.11.3
13
+
14
+ # Deep Learning (Optional but recommended)
15
+ torch==2.0.1
16
+ torchvision==0.15.2
17
+
18
+ # HTTP & Async
19
+ requests==2.31.0
20
  aiohttp==3.9.1
21
  python-multipart==0.0.18
22
+
23
+ # Data Validation
24
+ pydantic==2.5.0
25
+
26
+ # Visualization
27
+ plotly==5.17.0
28
+
29
+ # Utilities
30
+ python-dateutil==2.8.2