Spaces:
Running
Running
re-add langchain ecosystem
Browse files- requirements.txt +10 -8
requirements.txt
CHANGED
|
@@ -1,30 +1,32 @@
|
|
| 1 |
# core libs (HF image already provides torch & transformers)
|
| 2 |
-
pydantic>=2.0.0
|
| 3 |
numpy>=1.24.0
|
| 4 |
pandas>=2.0.0
|
|
|
|
|
|
|
| 5 |
|
| 6 |
# embeddings / sentence encoders
|
|
|
|
| 7 |
FlagEmbedding==1.3.5
|
| 8 |
sentence-transformers>=2.2.2
|
| 9 |
|
| 10 |
# UI
|
|
|
|
| 11 |
streamlit>=1.28.0,<1.36
|
| 12 |
|
| 13 |
-
# LangChain
|
| 14 |
langchain>=0.2.17,<0.3
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# Integration clients / helpers
|
| 17 |
-
qdrant-client>=1.7.0
|
| 18 |
-
python-dotenv>=1.0.0
|
| 19 |
-
openai>=1.0.0
|
| 20 |
pyyaml>=6.0
|
| 21 |
tqdm>=4.65.0
|
|
|
|
|
|
|
| 22 |
snowflake-connector-python==3.14.0
|
| 23 |
|
| 24 |
|
| 25 |
-
plotly
|
| 26 |
-
google-genai
|
| 27 |
-
|
| 28 |
# Document / ColPali deps
|
| 29 |
# colpali-engine>=0.3.5
|
| 30 |
# pdf2image==1.15.0
|
|
|
|
| 1 |
# core libs (HF image already provides torch & transformers)
|
|
|
|
| 2 |
numpy>=1.24.0
|
| 3 |
pandas>=2.0.0
|
| 4 |
+
pydantic>=2.0.0
|
| 5 |
+
python-dotenv>=1.0.0
|
| 6 |
|
| 7 |
# embeddings / sentence encoders
|
| 8 |
+
google-genai==1.52.0
|
| 9 |
FlagEmbedding==1.3.5
|
| 10 |
sentence-transformers>=2.2.2
|
| 11 |
|
| 12 |
# UI
|
| 13 |
+
plotly
|
| 14 |
streamlit>=1.28.0,<1.36
|
| 15 |
|
| 16 |
+
# LangChain ecosystem
|
| 17 |
langchain>=0.2.17,<0.3
|
| 18 |
+
langchain-core>=0.2.43
|
| 19 |
+
langchain-openai>=0.1.9,<0.3
|
| 20 |
+
langchain-community>=0.2.17,<0.3
|
| 21 |
|
| 22 |
# Integration clients / helpers
|
|
|
|
|
|
|
|
|
|
| 23 |
pyyaml>=6.0
|
| 24 |
tqdm>=4.65.0
|
| 25 |
+
openai>=1.0.0
|
| 26 |
+
qdrant-client>=1.7.0
|
| 27 |
snowflake-connector-python==3.14.0
|
| 28 |
|
| 29 |
|
|
|
|
|
|
|
|
|
|
| 30 |
# Document / ColPali deps
|
| 31 |
# colpali-engine>=0.3.5
|
| 32 |
# pdf2image==1.15.0
|