very much work in progress version

This commit is contained in:
João Moura
2024-02-22 19:56:42 -03:00
parent e94fd2cad2
commit f3c693a5bb
21 changed files with 703 additions and 131 deletions

View File

@@ -0,0 +1,40 @@
from typing import Optional, Type, Any
from pydantic.v1 import BaseModel, Field
from embedchain import App
from embedchain.models.data_type import DataType
from ..rag.rag_tool import RagTool
class FixedJSONSearchToolSchema(BaseModel):
"""Input for JSONSearchTool."""
search_query: str = Field(..., description="Mandatory search query you want to use to search the JSON's content")
class JSONSearchToolSchema(FixedJSONSearchToolSchema):
"""Input for JSONSearchTool."""
json_path: str = Field(..., description="Mandatory json path you want to search")
class JSONSearchTool(RagTool):
name: str = "Search a JSON's content"
description: str = "A tool that can be used to semantic search a query from a JSON's content."
summarize: bool = False
args_schema: Type[BaseModel] = JSONSearchToolSchema
json_path: Optional[str] = None
def __init__(self, json_path: Optional[str] = None, **kwargs):
super().__init__(**kwargs)
if json_path is not None:
self.json_path = json_path
self.description = f"A tool that can be used to semantic search a query the {json} JSON's content."
self.args_schema = FixedJSONSearchToolSchema
def _run(
self,
search_query: str,
**kwargs: Any,
) -> Any:
json_path = kwargs.get('json_path', self.json_path)
self.app = App()
self.app.add(json_path, data_type=DataType.JSON)
return super()._run(query=search_query)