GenAIDevTOProd commited on
Commit
725ffe2
·
verified ·
1 Parent(s): f68084d

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +9 -9
requirements.txt CHANGED
@@ -1,10 +1,10 @@
1
-
2
- gradio==4.24.0
3
- gensim==4.3.2
4
- faiss-cpu==1.7.4
5
- huggingface_hub==0.23.0
6
- pandas==2.2.2
7
- tqdm==4.66.4
8
- python-dotenv==1.0.1
9
- scipy==1.10.1
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