Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +29 -0
requirements.txt
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
streamlit>=1.22.0
|
3 |
+
pandas>=1.5.0
|
4 |
+
numpy>=1.23.0
|
5 |
+
torch>=2.0.0
|
6 |
+
|
7 |
+
# Transformers and NLP
|
8 |
+
transformers>=4.30.0
|
9 |
+
sentence-transformers>=2.2.2
|
10 |
+
|
11 |
+
# LangChain components
|
12 |
+
langchain>=0.0.267
|
13 |
+
langchain-community>=0.0.10
|
14 |
+
|
15 |
+
# Vector database
|
16 |
+
faiss-cpu>=1.7.4
|
17 |
+
# Use faiss-gpu instead if you want GPU support:
|
18 |
+
# faiss-gpu>=1.7.4
|
19 |
+
|
20 |
+
# PDF processing
|
21 |
+
pypdf>=3.9.0
|
22 |
+
|
23 |
+
# For datetime handling
|
24 |
+
python-dateutil>=2.8.2
|
25 |
+
|
26 |
+
# Optional: for better performance with PyTorch
|
27 |
+
# If using CUDA, you might need specific versions compatible with your CUDA version
|
28 |
+
# torchvision>=0.15.0
|
29 |
+
# torchaudio>=2.0.0
|