preparing new verion and adding new tools

This commit is contained in:
João Moura
2024-02-24 03:13:17 -03:00
parent f3c693a5bb
commit 7c99e9ab50
4 changed files with 36 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ class FixedFileReadToolSchema(BaseModel):
class FileReadToolSchema(FixedFileReadToolSchema):
"""Input for FileReadTool."""
file_path: str = Field(..., description="Mandatory file path to read the file")
file_path: str = Field(..., description="Mandatory file full path to read the file")
class FileReadTool(BaseTool):
name: str = "Read a file's content"