Create requirements.txt
Browse files- requirements.txt +8 -0
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit==1.24.0
|
| 2 |
+
beautifulsoup4==4.12.2
|
| 3 |
+
requests==2.31.0
|
| 4 |
+
pandas==1.5.3
|
| 5 |
+
torch==2.1.0 # PyTorch required for embeddings
|
| 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
|