Update requirements.txt
Browse files- requirements.txt +9 -9
requirements.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
python-dotenv==1.0.1
|
9 |
-
|
10 |
|
|
|
1 |
+
gradio==4.24.0 # UI framework
|
2 |
+
gensim==4.3.1 # Word2Vec embeddings
|
3 |
+
faiss-cpu==1.7.4 # FAISS for fast vector search
|
4 |
+
pandas==2.2.2 # Data manipulation
|
5 |
+
numpy==1.24.4 # Numerical ops (used by gensim/faiss)
|
6 |
+
tqdm==4.66.2 # Progress bars
|
7 |
+
huggingface_hub==0.21.4 # Access Reddit dataset
|
8 |
+
python-dotenv==1.0.1 # Load HF token securely from .env
|
9 |
+
scikit-learn==1.3.2 # Similarity, evaluation, and future improvements
|
10 |
|