Squashed 'packages/tools/' changes from 78317b9c..0b3f00e6

0b3f00e6 chore: update project version to 0.73.0 and revise uv.lock dependencies (#455)
ad19b074 feat: replace embedchain with native crewai adapter (#451)

git-subtree-dir: packages/tools
git-subtree-split: 0b3f00e67c0dae24d188c292dc99759fd1c841f7
This commit is contained in:
Greyson LaLonde
2025-09-18 23:38:08 -04:00
parent e16606672a
commit c960f26601
35 changed files with 4897 additions and 3951 deletions

View File

@@ -39,7 +39,9 @@ class XMLSearchTool(RagTool):
self,
search_query: str,
xml: Optional[str] = None,
similarity_threshold: float | None = None,
limit: int | None = None,
) -> str:
if xml is not None:
self.add(xml)
return super()._run(query=search_query)
return super()._run(query=search_query, similarity_threshold=similarity_threshold, limit=limit)