petter2025 commited on
Commit
b9d0f39
·
verified ·
1 Parent(s): cef01d7

Update requirements.txt

Browse files

# === Core App / Web Stack ===
gradio[mcp,oauth]==5.49.1
fastapi==0.115.5
uvicorn==0.31.1
starlette==0.49.3
spaces==0.42.1
python-dotenv==1.0.1
filelock==3.16.1

# === Vector Search + Embeddings ===
faiss-cpu==1.8.0.post1
sentence-transformers==3.2.0
numpy==1.26.4
scipy==1.13.1
pandas==2.2.2
scikit-learn==1.5.2

# === Transformers + Hugging Face Integration ===
transformers==4.45.2
tokenizers==0.20.3
huggingface-hub==0.33.5 # ✅ compatible with Gradio 5.49.1

# === Visualization + Utilities ===
matplotlib==3.9.2
tqdm==4.66.5
requests==2.32.3
tenacity==8.4.1
joblib==1.4.2

Files changed (1) hide show
  1. requirements.txt +28 -58
requirements.txt CHANGED
@@ -1,58 +1,28 @@
1
- diff --git a/requirements.txt b/requirements.txt
2
- index 6d42a11..a53cc33 100644
3
- --- a/requirements.txt
4
- +++ b/requirements.txt
5
- @@ -1,30 +1,33 @@
6
- -# Core Space / Web stack
7
- -gradio[mcp,oauth]==5.49.1
8
- -fastapi==0.121.0
9
- +# Core app framework
10
- +gradio[mcp,oauth]==5.49.1
11
- +fastapi==0.115.5
12
- uvicorn==0.31.1
13
- starlette==0.49.3
14
- spaces==0.42.1
15
- python-dotenv==1.0.1
16
- -
17
- -# Embedding + Semantic Retrieval Stack
18
- -sentence-transformers==3.2.0
19
- -faiss-cpu==1.8.0.post1
20
- -
21
- -# Transformers ecosystem (compatible versions)
22
- -transformers==4.45.2
23
- -tokenizers==0.20.3
24
- -huggingface-hub==0.34.6
25
- -
26
- -# Numeric + Analytics
27
- -numpy==1.26.4
28
- -pandas==2.2.2
29
- -scikit-learn==1.5.2
30
- -scipy==1.13.1
31
- -matplotlib==3.9.2
32
- -
33
- -# Utility + Runtime
34
- -tqdm==4.66.5
35
- -requests==2.32.3
36
- -tenacity==8.4.1
37
- -joblib==1.4.2
38
- +filelock==3.16.1
39
- +
40
- +# Vector search + Embeddings
41
- +faiss-cpu==1.8.0.post1
42
- +sentence-transformers==3.2.0
43
- +numpy==1.26.4
44
- +scipy==1.13.1
45
- +pandas==2.2.2
46
- +scikit-learn==1.5.2
47
- +
48
- +# Transformers + Hugging Face integration
49
- +transformers==4.45.2
50
- +tokenizers==0.20.3
51
- +huggingface-hub==0.33.5 # ✅ compatible with Gradio 5.49.1
52
- +
53
- +# Visualization + utilities
54
- +matplotlib==3.9.2
55
- +tqdm==4.66.5
56
- +requests==2.32.3
57
- +tenacity==8.4.1
58
- +joblib==1.4.2
 
1
+ # === Core App / Web Stack ===
2
+ gradio[mcp,oauth]==5.49.1
3
+ fastapi==0.115.5
4
+ uvicorn==0.31.1
5
+ starlette==0.49.3
6
+ spaces==0.42.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
28
+ joblib==1.4.2