文本加载器#

class langchain_community.document_loaders.text.TextLoader(file_path: str | Path, encoding: str | None = None, autodetect_encoding: bool = False)[source]#

加载文本文件。

Parameters:
  • file_path (str | Path) – 要加载的文件的路径。

  • encoding (str | None) – 使用的文件编码。如果为None,文件将被加载

  • 编码。 (使用默认系统)

  • autodetect_encoding (bool) – 是否在指定的编码失败时尝试自动检测文件编码。

使用文件路径进行初始化。

方法

__init__(file_path[, encoding, ...])

使用文件路径进行初始化。

alazy_load()

一个用于文档的懒加载器。

aload()

将数据加载到Document对象中。

lazy_load()

从文件路径加载。

load()

将数据加载到Document对象中。

load_and_split([text_splitter])

加载文档并将其分割成块。

__init__(file_path: str | Path, encoding: str | None = None, autodetect_encoding: bool = False)[源代码]#

使用文件路径进行初始化。

Parameters:
  • file_path (str | Path)

  • encoding (str | None)

  • autodetect_encoding (bool)

async alazy_load() AsyncIterator[Document]#

文档的懒加载器。

Return type:

AsyncIterator[Document]

async aload() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

lazy_load() Iterator[Document][source]#

从文件路径加载。

Return type:

迭代器[文档]

load() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

load_and_split(text_splitter: TextSplitter | None = None) list[Document]#

加载文档并将其分割成块。块以文档形式返回。

不要重写此方法。它应该被视为已弃用!

Parameters:

text_splitter (可选[TextSplitter]) – 用于分割文档的TextSplitter实例。 默认为RecursiveCharacterTextSplitter。

Returns:

文档列表。

Return type:

列表[Document]

使用 TextLoader 的示例