Compare commits

...

1 Commits

Author SHA1 Message Date
Thiago Moretto
56b6594669 fix(tools): correct mongdb typo to pymongo in package_dependencies (#5891)
Some checks are pending
CodeQL Advanced / Analyze (actions) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Check Documentation Broken Links / Check broken links (push) Waiting to run
Vulnerability Scan / pip-audit (push) Waiting to run
* 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>
2026-05-21 10:57:17 -04:00
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.",