Spaces:
Sleeping
Sleeping
LLM Requirments.txt
Browse files- requirements.txt +21 -29
requirements.txt
CHANGED
@@ -1,34 +1,26 @@
|
|
1 |
# Core dependencies
|
2 |
-
gradio
|
3 |
-
transformers
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
|
10 |
-
#
|
11 |
-
|
12 |
-
|
|
|
|
|
13 |
|
14 |
-
#
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
# HTML parsing
|
21 |
-
beautifulsoup4==4.12.2
|
22 |
-
lxml==5.1.0
|
23 |
|
|
|
|
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
feedparser==6.0.11
|
28 |
-
beautifulsoup4==4.12.2
|
29 |
-
requests==2.31.0
|
30 |
-
pytz==2023.3.post1
|
31 |
-
nltk==3.8.1
|
32 |
-
torch>=2.0.0
|
33 |
-
transformers>=4.36.0
|
34 |
-
huggingface-hub==0.25.2
|
|
|
1 |
# Core dependencies
|
2 |
+
gradio>=4.14.0
|
3 |
+
sentence-transformers>=2.2.2
|
4 |
+
chromadb==0.4.22 # Using this specific version as mentioned in your code comment
|
5 |
+
feedparser>=6.0.11
|
6 |
+
beautifulsoup4>=4.12.2
|
7 |
+
requests>=2.31.0
|
8 |
+
pytz>=2023.3.post1
|
9 |
|
10 |
+
# LangChain and related
|
11 |
+
langchain>=0.3.12
|
12 |
+
langchain-community>=0.0.1
|
13 |
+
langchain-core>=0.0.1
|
14 |
+
langchain-huggingface>=0.0.1
|
15 |
|
16 |
+
# Transformers and ML
|
17 |
+
transformers>=4.36.0
|
18 |
+
torch>=2.0.0
|
19 |
+
accelerate
|
20 |
+
bitsandbytes>=0.41.0
|
|
|
|
|
|
|
|
|
21 |
|
22 |
+
# Date handling
|
23 |
+
python-dateutil>=2.8.2
|
24 |
|
25 |
+
# Database and storage
|
26 |
+
sqlalchemy>=2.0.25
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|