petter2025 commited on
Commit
9b565a6
·
verified ·
1 Parent(s): 1eb0dc5

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +10 -12
requirements.txt CHANGED
@@ -1,4 +1,4 @@
1
- # === Core Web + Gradio Stack ===
2
  gradio[mcp,oauth]==5.49.1
3
  fastapi==0.115.5
4
  uvicorn==0.31.1
@@ -7,23 +7,21 @@ spaces==0.42.1
7
  python-dotenv==1.0.1
8
  filelock==3.16.1
9
 
10
- # === Embeddings + Semantic Retrieval ===
11
- sentence-transformers==3.2.0
12
  faiss-cpu==1.8.0.post1
 
 
 
 
 
13
 
14
- # === Transformers / HF Ecosystem ===
15
  transformers==4.45.2
16
  tokenizers==0.20.3
17
- huggingface-hub==0.24.7
18
 
19
- # === Analytics / Math ===
20
- numpy==1.26.4
21
- pandas==2.2.2
22
- scikit-learn==1.5.2
23
- scipy==1.13.1
24
  matplotlib==3.9.2
25
-
26
- # === Utilities ===
27
  tqdm==4.66.5
28
  requests==2.32.3
29
  tenacity==8.4.1
 
1
+ # Core app framework
2
  gradio[mcp,oauth]==5.49.1
3
  fastapi==0.115.5
4
  uvicorn==0.31.1
 
7
  python-dotenv==1.0.1
8
  filelock==3.16.1
9
 
10
+ # Vector search + Embeddings
 
11
  faiss-cpu==1.8.0.post1
12
+ sentence-transformers==3.2.0
13
+ numpy==1.26.4
14
+ scipy==1.13.1
15
+ pandas==2.2.2
16
+ scikit-learn==1.5.2
17
 
18
+ # Transformers + Hugging Face integration
19
  transformers==4.45.2
20
  tokenizers==0.20.3
21
+ huggingface-hub==0.33.5 # ✅ compatible with Gradio 5.49.1
22
 
23
+ # Visualization + utilities
 
 
 
 
24
  matplotlib==3.9.2
 
 
25
  tqdm==4.66.5
26
  requests==2.32.3
27
  tenacity==8.4.1