Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +14 -13
requirements.txt
CHANGED
@@ -1,22 +1,23 @@
|
|
1 |
# Core dependencies
|
2 |
-
gradio
|
3 |
-
openai
|
4 |
-
chromadb
|
5 |
-
python-dotenv
|
6 |
|
7 |
# Vector store and embeddings
|
8 |
-
sentence-transformers
|
9 |
-
|
10 |
-
|
|
|
11 |
|
12 |
# Database and storage
|
13 |
-
hnswlib
|
14 |
|
15 |
# Utility packages
|
16 |
-
requests
|
17 |
-
python-json-logger
|
18 |
-
numpy
|
19 |
-
pydantic
|
20 |
|
21 |
# Error handling and logging
|
22 |
-
loguru
|
|
|
1 |
# Core dependencies
|
2 |
+
gradio>=4.7.1
|
3 |
+
openai>=1.3.5
|
4 |
+
chromadb>=0.4.18
|
5 |
+
python-dotenv>=1.0.0
|
6 |
|
7 |
# Vector store and embeddings
|
8 |
+
sentence-transformers>=2.2.2
|
9 |
+
--extra-index-url https://download.pytorch.org/whl/cpu
|
10 |
+
torch>=2.1.1
|
11 |
+
transformers>=4.35.2
|
12 |
|
13 |
# Database and storage
|
14 |
+
hnswlib>=0.7.0
|
15 |
|
16 |
# Utility packages
|
17 |
+
requests>=2.31.0
|
18 |
+
python-json-logger>=2.0.7
|
19 |
+
numpy>=1.24.3
|
20 |
+
pydantic>=2.0.0
|
21 |
|
22 |
# Error handling and logging
|
23 |
+
loguru>=0.7.2
|