petter2025 commited on
Commit
499356a
·
verified ·
1 Parent(s): f803637

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +17 -23
requirements.txt CHANGED
@@ -1,26 +1,20 @@
1
- # --- Core Framework ---
2
- gradio[mcp,oauth]==5.49.1
3
- uvicorn>=0.38.0
4
- fastapi>=0.121.0
5
 
6
- # --- Data & Core ---
7
- pandas>=2.2.2
8
- numpy>=1.26.4
9
- scikit-learn>=1.5.1
 
10
 
11
- # --- Hugging Face + Transformers ---
12
- transformers>=4.57.1
13
- torch>=2.4.0
14
- huggingface-hub>=0.30.0
15
- hf-transfer>=0.1.4
 
16
 
17
- # --- AI & Embeddings ---
18
- faiss-cpu>=1.8.0
19
- sentence-transformers>=3.0.1
20
-
21
- # --- Utilities ---
22
- requests>=2.32.3
23
- python-dotenv>=1.0.1
24
-
25
- # --- Compatibility fix ---
26
- pydantic>=2.0,<2.12
 
1
+ # Core UI & API Framework
2
+ gradio==5.2.0
3
+ uvicorn==0.30.6
4
+ fastapi==0.115.5
5
 
6
+ # Core Data + Model Utilities
7
+ pandas==2.2.3
8
+ numpy==2.1.3
9
+ scikit-learn==1.5.2
10
+ python-dotenv==1.0.1
11
 
12
+ # Hugging Face + Model Integration
13
+ huggingface-hub==0.25.2
14
+ transformers==4.45.2
15
+ sentence-transformers==3.1.1
16
+ torch==2.4.1
17
+ faiss-cpu==1.8.0.post1
18
 
19
+ # Reliability + Misc
20
+ requests==2.32.3