mirror of https://github.com/microsoft/autogen.git
Update RetrieveChat extra dependencies (#2449)
This commit is contained in:
parent
ded2d612c3
commit
b7366b570f
23
setup.py
23
setup.py
|
@ -35,6 +35,8 @@ jupyter_executor = [
|
|||
"ipykernel>=6.29.0",
|
||||
]
|
||||
|
||||
rag = ["sentence_transformers", "pypdf", "ipython", "beautifulsoup4", "markdownify"]
|
||||
|
||||
setuptools.setup(
|
||||
name="pyautogen",
|
||||
version=__version__,
|
||||
|
@ -59,24 +61,9 @@ setuptools.setup(
|
|||
],
|
||||
"blendsearch": ["flaml[blendsearch]"],
|
||||
"mathchat": ["sympy", "pydantic==1.10.9", "wolframalpha"],
|
||||
"retrievechat": ["chromadb", "sentence_transformers", "pypdf", "ipython", "beautifulsoup4", "markdownify"],
|
||||
"retrievechat-pgvector": [
|
||||
"pgvector>=0.2.5",
|
||||
"psycopg>=3.1.18",
|
||||
"sentence_transformers",
|
||||
"pypdf",
|
||||
"ipython",
|
||||
"beautifulsoup4",
|
||||
"markdownify",
|
||||
],
|
||||
"retrievechat-qdrant": [
|
||||
"qdrant_client[fastembed]",
|
||||
"sentence_transformers",
|
||||
"pypdf",
|
||||
"ipython",
|
||||
"beautifulsoup4",
|
||||
"markdownify",
|
||||
],
|
||||
"retrievechat": ["chromadb"] + rag,
|
||||
"retrievechat-pgvector": ["pgvector>=0.2.5", "psycopg>=3.1.18"] + rag,
|
||||
"retrievechat-qdrant": ["qdrant_client[fastembed]"] + rag,
|
||||
"autobuild": ["chromadb", "sentence-transformers", "huggingface-hub"],
|
||||
"teachable": ["chromadb"],
|
||||
"lmm": ["replicate", "pillow"],
|
||||
|
|
Loading…
Reference in New Issue