petter2025 commited on
Commit
50f51ce
·
verified ·
1 Parent(s): e94f0ea

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +21 -11
requirements.txt CHANGED
@@ -1,19 +1,29 @@
1
- # Core runtime
2
- gradio==5.49.1
3
- uvicorn>=0.22.0
4
- spaces
5
 
6
- # ML & Vector memory
7
- sentence-transformers==3.2.1
8
  faiss-cpu==1.8.0.post1
9
- numpy==1.26.4
 
10
  pandas==2.2.2
11
- torch==2.3.1
12
  scikit-learn==1.5.2
13
 
14
- # Networking & API
15
- requests==2.32.3
 
 
 
 
16
  python-dotenv==1.0.1
17
 
18
- # Misc utils
 
19
  tqdm==4.66.5
 
 
 
 
 
1
+ # Core Web + UI
2
+ gradio==4.43.0
3
+ fastapi==0.115.2
4
+ uvicorn==0.31.1
5
 
6
+ # AI / Embedding / Similarity
7
+ sentence-transformers==3.2.0
8
  faiss-cpu==1.8.0.post1
9
+
10
+ # Data + Analytics
11
  pandas==2.2.2
12
+ numpy==1.26.4
13
  scikit-learn==1.5.2
14
 
15
+ # Time & Anomaly Simulation
16
+ scipy==1.13.1
17
+ matplotlib==3.9.2
18
+
19
+ # Hugging Face + Token Management
20
+ huggingface-hub==0.26.1
21
  python-dotenv==1.0.1
22
 
23
+ # Optional - reliability logging & persistence
24
+ joblib==1.4.2
25
  tqdm==4.66.5
26
+
27
+ # Security & resilience
28
+ requests==2.32.3
29
+ tenacity==8.4.1