fix(tools): correct mongdb typo to pymongo in package_dependencies (#5891)
Some checks failed
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Check Documentation Broken Links / Check broken links (push) Has been cancelled
Vulnerability Scan / pip-audit (push) Has been cancelled

* fix(tools): correct mongdb typo to pymongo in package_dependencies

The `package_dependencies` field in `MongoDBVectorSearchTool` referenced
the non-existent package `mongdb` instead of the actual PyPI package
`pymongo`, which is the driver imported and used throughout the file.

* chore: update tool specifications

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Thiago Moretto
2026-05-21 11:57:17 -03:00
committed by GitHub
parent d3e20900e8
commit 56b6594669
2 changed files with 2 additions and 2 deletions

View File

@@ -103,7 +103,7 @@ class MongoDBVectorSearchTool(BaseTool):
),
]
)
package_dependencies: list[str] = Field(default_factory=lambda: ["mongdb"])
package_dependencies: list[str] = Field(default_factory=lambda: ["pymongo"])
def __init__(self, **kwargs: Any) -> None:
super().__init__(**kwargs)

View File

@@ -14633,7 +14633,7 @@
},
"name": "MongoDBVectorSearchTool",
"package_dependencies": [
"mongdb"
"pymongo"
],
"run_params_schema": {
"description": "Input for MongoDBTool.",