Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ jupyter-executor = [
]

retrievechat = [
"protobuf==6.32.0",
"chromadb==1.0.20",
"sentence_transformers<=5.1.0",
"protobuf==6.33.0",
"chromadb==1.2.1",
"sentence_transformers<=5.1.1",
"pypdf",
"ipython",
"beautifulsoup4",
Expand Down Expand Up @@ -128,7 +128,7 @@ retrievechat-couchbase = [
]

graph-rag-falkor-db = [
"graphrag_sdk==0.8.0",
"graphrag_sdk==0.8.1",
"falkordb>=1.0.10",
]

Expand All @@ -137,14 +137,14 @@ rag = [
"selenium>=4.28.1,<5",
"webdriver-manager==4.0.2",
"chromadb>=0.5,<2",
"llama-index>=0.12,<0.14",
"llama-index-core>=0.12,<0.14",
"llama-index>=0.12,<0.15",
"llama-index-core>=0.12,<0.15",
"llama-index-vector-stores-chroma>=0.4,<0.6",
"llama-index-vector-stores-mongodb>=0.6,<0.9",
"llama-index-embeddings-huggingface>=0.5,<0.7",
"llama-index-llms-langchain>=0.6,<0.8",
"llama-index-embeddings-openai>=0.3,<0.6",
"llama-index-llms-openai>=0.4,<0.6",
"llama-index-llms-openai>=0.4,<0.7",
"requests>=2.32.3,<3",
]

Expand Down Expand Up @@ -180,8 +180,8 @@ wikipedia = [
neo4j = [
"docx2txt==0.9",
# Updated llama-index constraints
"llama-index>=0.12,<0.14",
"llama-index-core>=0.12,<0.14",
"llama-index>=0.12,<0.15",
"llama-index-core>=0.12,<0.15",
"llama-index-graph-stores-neo4j>=0.4,<0.6",
"llama-index-readers-web>=0.4,<0.6",
]
Expand Down Expand Up @@ -210,7 +210,7 @@ interop-crewai = [
"crewai[tools]>=0.76,<1; python_version>='3.10' and python_version<'3.13'",
# TODO: crewai needs litellm and litellm version above 1.67.1 has problem in windows.
# TODO: Remove the below line once the problem is fixed
"litellm<=1.76.3",
"litellm<=1.78.6",
"weaviate-client>=4,<5; python_version>='3.10' and python_version<'3.13'",
]
interop-langchain = ["langchain-community>=0.3.12,<1"]
Expand All @@ -221,7 +221,7 @@ interop =[

autobuild = [
"chromadb",
"sentence_transformers<=5.1.0",
"sentence_transformers<=5.1.1",
"huggingface-hub"
]

Expand Down Expand Up @@ -275,46 +275,46 @@ tavily = ["tavily-python>=0.7.4"]

# test dependencies
test = [
"ipykernel==6.30.1",
"ipykernel==7.0.1",
"nbconvert==7.16.6",
"nbformat==5.10.4",
"pandas==2.3.2",
"fastapi==0.116.1",
"pandas==2.3.3",
"fastapi==0.119.1",
"mcp>=1.11.0",
# test utilities
"pytest==8.4.2",
"pytest-cov==6.3.0",
"pytest-asyncio==1.1.0",
"dirty-equals==0.9.0",
"pytest-cov==7.0.0",
"pytest-asyncio==1.2.0",
"dirty-equals==0.10.0",
"freezegun==1.5.5",
]

docs = [
"ag2[a2a]", # A2A is exposed in the public API by the optional `autogen.a2a` module
"mkdocs-material==9.6.19",
"mkdocstrings[python]==0.30.0",
"mkdocs-material==9.6.22",
"mkdocstrings[python]==0.30.1",
"mkdocs-literate-nav==0.6.2",
"mdx-include==1.4.2",
# ToDo: currently problematic and cannot be upgraded
"mkdocs-git-revision-date-localized-plugin==1.4.7",
"mike==2.1.3",
"typer==0.17.4",
"typer==0.20.0",
"mkdocs-minify-plugin==0.8.0",
"mkdocs-macros-plugin==1.3.9", # includes with variables
"mkdocs-macros-plugin==1.4.0", # includes with variables
"mkdocs-glightbox==0.5.1", # img zoom
"mkdocs-redirects==1.2.2", # required for handling redirects natively
"pillow", # required for mkdocs-glightbo
"cairosvg", # required for mkdocs-glightbo
"pdoc3==0.11.6",
"jinja2==3.1.6",
"pyyaml==6.0.2",
"pyyaml==6.0.3",
"termcolor==3.1.0",
"nbclient==0.10.2",
"mcp>=1.11.0",
]

types = [
"mypy==1.17.1",
"mypy==1.18.2",
"types-PyYAML",
"types-decorator",
"types-pycurl",
Expand All @@ -325,7 +325,7 @@ types = [
]

lint = [
"ruff==0.12.12",
"ruff==0.14.1",
"codespell==2.4.1",
"pyupgrade-directories==0.3.0",
]
Expand All @@ -335,7 +335,7 @@ dev = [
"ag2[lint,test,types,docs]",
"pre-commit==4.3.0",
"detect-secrets==1.5.0",
"uv==0.8.15",
"uv==0.9.5",
]


Expand Down
Loading