Files
crewAI/crewai_tools/tools/mdx_search_tool/mdx_search_tool.py
Greyson LaLonde c960f26601 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
2025-09-18 23:38:08 -04:00

53 lines
1.6 KiB
Python

from typing import Optional, Type
from pydantic import BaseModel, Field
from ..rag.rag_tool import RagTool
from crewai_tools.rag.data_types import DataType
class FixedMDXSearchToolSchema(BaseModel):
"""Input for MDXSearchTool."""
search_query: str = Field(
...,
description="Mandatory search query you want to use to search the MDX's content",
)
class MDXSearchToolSchema(FixedMDXSearchToolSchema):
"""Input for MDXSearchTool."""
mdx: str = Field(..., description="File path or URL of a MDX file to be searched")
class MDXSearchTool(RagTool):
name: str = "Search a MDX's content"
description: str = (
"A tool that can be used to semantic search a query from a MDX's content."
)
args_schema: Type[BaseModel] = MDXSearchToolSchema
def __init__(self, mdx: Optional[str] = None, **kwargs):
super().__init__(**kwargs)
if mdx is not None:
self.add(mdx)
self.description = f"A tool that can be used to semantic search a query the {mdx} MDX's content."
self.args_schema = FixedMDXSearchToolSchema
self._generate_description()
def add(self, mdx: str) -> None:
super().add(mdx, data_type=DataType.MDX)
def _run(
self,
search_query: str,
mdx: Optional[str] = None,
similarity_threshold: float | None = None,
limit: int | None = None,
) -> str:
if mdx is not None:
self.add(mdx)
return super()._run(query=search_query, similarity_threshold=similarity_threshold, limit=limit)