ODIN commited on
Commit ·
613c1f9
1
Parent(s): 48557e9
Fix requirements: chromadb>=1.1.0,<1.2.0 (crewai compat), drop gradio/uvicorn pins (HF pre-installs)
Browse files- requirements.txt +4 -7
requirements.txt
CHANGED
|
@@ -7,7 +7,8 @@ langchain-community==0.4.1
|
|
| 7 |
langchain-google-genai==4.2.1
|
| 8 |
|
| 9 |
# ── RAG / Vector store ────────────────────────────────────────────────────────
|
| 10 |
-
chromadb=
|
|
|
|
| 11 |
sentence-transformers==5.3.0
|
| 12 |
|
| 13 |
# ── Data processing ───────────────────────────────────────────────────────────
|
|
@@ -19,14 +20,10 @@ openpyxl==3.1.5
|
|
| 19 |
# ── Visualisation ─────────────────────────────────────────────────────────────
|
| 20 |
plotly==6.3.0
|
| 21 |
matplotlib==3.10.5
|
| 22 |
-
kaleido==0.2.1 # 0.2.x uses bundled binary (no Chrome needed)
|
| 23 |
-
|
| 24 |
-
# ── UI ────────────────────────────────────────────────────────────────────────
|
| 25 |
-
gradio==6.9.0
|
| 26 |
|
| 27 |
# ── Utilities ─────────────────────────────────────────────────────────────────
|
| 28 |
python-dotenv==1.1.1
|
| 29 |
-
huggingface_hub>=0.23.0
|
| 30 |
requests==2.32.5
|
| 31 |
httpx==0.28.1
|
| 32 |
-
|
|
|
|
| 7 |
langchain-google-genai==4.2.1
|
| 8 |
|
| 9 |
# ── RAG / Vector store ────────────────────────────────────────────────────────
|
| 10 |
+
# chromadb version is managed by crewai (crewai 1.10.1 requires ~=1.1.0)
|
| 11 |
+
chromadb>=1.1.0,<1.2.0
|
| 12 |
sentence-transformers==5.3.0
|
| 13 |
|
| 14 |
# ── Data processing ───────────────────────────────────────────────────────────
|
|
|
|
| 20 |
# ── Visualisation ─────────────────────────────────────────────────────────────
|
| 21 |
plotly==6.3.0
|
| 22 |
matplotlib==3.10.5
|
| 23 |
+
kaleido==0.2.1 # 0.2.x uses bundled binary (no Chrome needed)
|
|
|
|
|
|
|
|
|
|
| 24 |
|
| 25 |
# ── Utilities ─────────────────────────────────────────────────────────────────
|
| 26 |
python-dotenv==1.1.1
|
|
|
|
| 27 |
requests==2.32.5
|
| 28 |
httpx==0.28.1
|
| 29 |
+
huggingface_hub>=0.23.0
|