Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ dependencies = [
"griffelib>=2, <3",
"typing-extensions>=4.12.2, <5",
"requests>=2.0, <3",
# urllib3 is pulled in transitively via requests; pin a safe floor so
# installs cannot resolve to a version exposed to the disclosed CVEs
# (highest fix 2.7.0, GHSA-qccp-gfcp-xxvc cross-origin header leak).
"urllib3>=2.7.0, <3",
"websockets>=15.0, <17",
"mcp>=1.19.0, <3; python_version >= '3.10'",
]
Expand Down Expand Up @@ -40,7 +44,7 @@ litellm = ["litellm>=1.83.0"]
any-llm = ["any-llm-sdk>=1.11.0, <2; python_version >= '3.11'"]
realtime = ["websockets>=15.0, <17"]
sqlalchemy = ["SQLAlchemy>=2.0", "asyncpg>=0.29.0"]
encrypt = ["cryptography>=45.0, <46"]
encrypt = ["cryptography>=46.0.7, <47"]
redis = ["redis>=7"]
dapr = ["dapr>=1.16.0", "grpcio>=1.60.0"]
mongodb = ["pymongo>=4.14"]
Expand Down Expand Up @@ -84,7 +88,7 @@ dev = [
"eval-type-backport>=0.2.2",
"fastapi >= 0.110.0, <1",
"aiosqlite>=0.21.0",
"cryptography>=45.0, <46",
"cryptography>=46.0.7, <47",
"fakeredis>=2.31.3",
"dapr>=1.14.0",
"grpcio>=1.60.0",
Expand Down
Loading