Spaces:
Runtime error
Runtime error
updates
Browse files- requirements.txt +21 -34
requirements.txt
CHANGED
|
@@ -1,39 +1,26 @@
|
|
| 1 |
-
# Core
|
| 2 |
-
langchain=
|
| 3 |
-
langchain-
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
# Vector store and embeddings
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
transformers==4.33.2
|
| 13 |
|
| 14 |
-
#
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
starlette==0.20.4
|
| 22 |
-
fastapi==0.85.1
|
| 23 |
-
python-multipart==0.0.6
|
| 24 |
-
uvicorn==0.22.0
|
| 25 |
-
aiofiles==23.1.0
|
| 26 |
-
httpx==0.24.1
|
| 27 |
-
websockets==11.0.3
|
| 28 |
-
|
| 29 |
-
# Utilities
|
| 30 |
-
python-dotenv==1.0.0
|
| 31 |
-
tqdm==4.66.1
|
| 32 |
-
requests==2.31.0
|
| 33 |
-
typing-extensions==4.5.0
|
| 34 |
-
click==8.0.4
|
| 35 |
-
Pillow>=9.5.0
|
| 36 |
-
pandas>=1.5.0
|
| 37 |
-
packaging>=23.1
|
| 38 |
|
| 39 |
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
langchain>=0.0.340
|
| 3 |
+
langchain-google-genai>=0.0.6
|
| 4 |
+
sentence-transformers>=2.2.2
|
| 5 |
+
chromadb>=0.4.18
|
| 6 |
+
requests>=2.31.0
|
| 7 |
+
gradio>=4.4.0
|
| 8 |
+
python-dotenv>=1.0.0
|
| 9 |
+
tqdm>=4.66.1
|
| 10 |
+
pydantic>=2.0,<3.0
|
| 11 |
|
| 12 |
# Vector store and embeddings
|
| 13 |
+
numpy>=1.24.3
|
| 14 |
+
scikit-learn>=1.3.0
|
| 15 |
+
torch>=2.0.1
|
| 16 |
+
transformers>=4.33.2
|
|
|
|
| 17 |
|
| 18 |
+
# Required for Hugging Face Spaces
|
| 19 |
+
fastapi<0.99.0
|
| 20 |
+
httpx>=0.24.1
|
| 21 |
+
python-multipart>=0.0.6
|
| 22 |
+
uvicorn>=0.21.0
|
| 23 |
+
aiofiles>=22.0
|
| 24 |
+
websockets>=11.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
|