mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 17:18:29 +00:00
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
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
from typing import Optional, Type
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from ..rag.rag_tool import RagTool
|
|
|
|
|
|
class FixedXMLSearchToolSchema(BaseModel):
|
|
"""Input for XMLSearchTool."""
|
|
|
|
search_query: str = Field(
|
|
...,
|
|
description="Mandatory search query you want to use to search the XML's content",
|
|
)
|
|
|
|
|
|
class XMLSearchToolSchema(FixedXMLSearchToolSchema):
|
|
"""Input for XMLSearchTool."""
|
|
|
|
xml: str = Field(..., description="File path or URL of a XML file to be searched")
|
|
|
|
|
|
class XMLSearchTool(RagTool):
|
|
name: str = "Search a XML's content"
|
|
description: str = (
|
|
"A tool that can be used to semantic search a query from a XML's content."
|
|
)
|
|
args_schema: Type[BaseModel] = XMLSearchToolSchema
|
|
|
|
def __init__(self, xml: Optional[str] = None, **kwargs):
|
|
super().__init__(**kwargs)
|
|
if xml is not None:
|
|
self.add(xml)
|
|
self.description = f"A tool that can be used to semantic search a query the {xml} XML's content."
|
|
self.args_schema = FixedXMLSearchToolSchema
|
|
self._generate_description()
|
|
|
|
def _run(
|
|
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, similarity_threshold=similarity_threshold, limit=limit)
|