mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
c2a3021bb0
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
from typing import Optional, Type
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.tools import BaseTool
|
|
from pydantic import BaseModel, Field
|
|
|
|
from langchain_community.tools.file_management.utils import (
|
|
INVALID_PATH_TEMPLATE,
|
|
BaseFileToolMixin,
|
|
FileValidationError,
|
|
)
|
|
|
|
|
|
class ReadFileInput(BaseModel):
|
|
"""Input for ReadFileTool."""
|
|
|
|
file_path: str = Field(..., description="name of file")
|
|
|
|
|
|
class ReadFileTool(BaseFileToolMixin, BaseTool):
|
|
"""Tool that reads a file."""
|
|
|
|
name: str = "read_file"
|
|
args_schema: Type[BaseModel] = ReadFileInput
|
|
description: str = "Read file from disk"
|
|
|
|
def _run(
|
|
self,
|
|
file_path: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
try:
|
|
read_path = self.get_relative_path(file_path)
|
|
except FileValidationError:
|
|
return INVALID_PATH_TEMPLATE.format(arg_name="file_path", value=file_path)
|
|
if not read_path.exists():
|
|
return f"Error: no such file or directory: {file_path}"
|
|
try:
|
|
with read_path.open("r", encoding="utf-8") as f:
|
|
content = f.read()
|
|
return content
|
|
except Exception as e:
|
|
return "Error: " + str(e)
|
|
|
|
# TODO: Add aiofiles method
|