Update requirements.txt
Browse files- requirements.txt +32 -26
requirements.txt
CHANGED
|
@@ -1,33 +1,39 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
|
|
|
|
|
|
| 6 |
|
| 7 |
-
#
|
| 8 |
-
|
|
|
|
|
|
|
| 9 |
|
| 10 |
-
#
|
| 11 |
-
# LangChain (
|
|
|
|
| 12 |
langchain==0.0.354
|
|
|
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
websockets>=12.0
|
| 22 |
-
pydantic>=2.6.0
|
| 23 |
|
|
|
|
| 24 |
# Firebase
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
# Utilities
|
| 28 |
-
requests>=2.31.0
|
| 29 |
-
python-multipart>=0.0.9
|
| 30 |
-
python-dotenv>=1.0.1
|
| 31 |
|
| 32 |
-
#
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -------------------------
|
| 2 |
+
# Core ML
|
| 3 |
+
# -------------------------
|
| 4 |
+
torch==2.1.2
|
| 5 |
+
transformers==4.38.2
|
| 6 |
+
sentence-transformers==2.6.1
|
| 7 |
+
numpy==1.26.4
|
| 8 |
|
| 9 |
+
# -------------------------
|
| 10 |
+
# Vector DB
|
| 11 |
+
# -------------------------
|
| 12 |
+
chromadb==0.4.24
|
| 13 |
|
| 14 |
+
# -------------------------
|
| 15 |
+
# LangChain (OLD, STABLE)
|
| 16 |
+
# -------------------------
|
| 17 |
langchain==0.0.354
|
| 18 |
+
langchain-google-genai==0.0.8
|
| 19 |
|
| 20 |
+
# -------------------------
|
| 21 |
+
# API
|
| 22 |
+
# -------------------------
|
| 23 |
+
fastapi==0.110.0
|
| 24 |
+
uvicorn[standard]==0.29.0
|
| 25 |
+
websockets==12.0
|
| 26 |
+
pydantic==1.10.13
|
|
|
|
|
|
|
| 27 |
|
| 28 |
+
# -------------------------
|
| 29 |
# Firebase
|
| 30 |
+
# -------------------------
|
| 31 |
+
firebase-admin==6.4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
+
# -------------------------
|
| 34 |
+
# Utils
|
| 35 |
+
# -------------------------
|
| 36 |
+
requests==2.31.0
|
| 37 |
+
python-multipart==0.0.9
|
| 38 |
+
python-dotenv==1.0.1
|
| 39 |
+
gunicorn==21.2.0
|