Update requirements.txt
Browse files- requirements.txt +2 -1
requirements.txt
CHANGED
|
@@ -2,7 +2,8 @@ streamlit==1.24.0
|
|
| 2 |
beautifulsoup4==4.12.2
|
| 3 |
requests==2.31.0
|
| 4 |
pandas==1.5.3
|
| 5 |
-
|
|
|
|
| 6 |
transformers==4.34.0 # Hugging Face Transformers for loading the model
|
| 7 |
huggingface_hub>=0.16.4 # Handling Hugging Face API (already included for model loading)
|
| 8 |
faiss-cpu==1.7.4 # Optional, for similarity queries on embeddings if needed
|
|
|
|
| 2 |
beautifulsoup4==4.12.2
|
| 3 |
requests==2.31.0
|
| 4 |
pandas==1.5.3
|
| 5 |
+
python==3.10
|
| 6 |
+
torch==2.5.1 # PyTorch required for embeddings
|
| 7 |
transformers==4.34.0 # Hugging Face Transformers for loading the model
|
| 8 |
huggingface_hub>=0.16.4 # Handling Hugging Face API (already included for model loading)
|
| 9 |
faiss-cpu==1.7.4 # Optional, for similarity queries on embeddings if needed
|