Starberry15 commited on
Commit
1115e9e
·
verified ·
1 Parent(s): f521fb7

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +8 -9
requirements.txt CHANGED
@@ -1,22 +1,21 @@
1
- # Core app
2
  streamlit>=1.38.0
3
  python-dotenv>=1.0.1
4
 
5
- # PDF parsing
6
  PyPDF2>=3.0.1
7
 
8
- # Numerical + machine learning
9
  numpy>=1.26.4
10
  scikit-learn>=1.5.2
11
 
12
- # Local embeddings (fast & offline)
13
  sentence-transformers>=3.0.1
 
 
14
 
15
- # Vector search
16
  faiss-cpu>=1.8.0
17
 
18
- # Hugging Face client (optional cloud inference)
19
- huggingface-hub>=0.25.0
20
-
21
- # Streamlit chat UI helpers
22
  streamlit-chat>=0.1.1
 
1
+ # --- Core App Framework ---
2
  streamlit>=1.38.0
3
  python-dotenv>=1.0.1
4
 
5
+ # --- PDF Parsing ---
6
  PyPDF2>=3.0.1
7
 
8
+ # --- Numerical & Machine Learning ---
9
  numpy>=1.26.4
10
  scikit-learn>=1.5.2
11
 
12
+ # --- Local Embeddings / Hugging Face Integration ---
13
  sentence-transformers>=3.0.1
14
+ huggingface-hub>=0.25.0
15
+ requests>=2.32.3
16
 
17
+ # --- Vector Search (Fast Indexing) ---
18
  faiss-cpu>=1.8.0
19
 
20
+ # --- Chat Interface ---
 
 
 
21
  streamlit-chat>=0.1.1