ObsidianLoader#

class langchain_community.document_loaders.obsidian.ObsidianLoader(path: str | Path, encoding: str = 'UTF-8', collect_metadata: bool = True)[source]#

从目录加载Obsidian文件。

使用路径进行初始化。

Parameters:
  • path (str | Path) – 包含Obsidian文件的目录路径。

  • encoding (str) – 字符集编码,默认为“UTF-8”

  • collect_metadata (bool) – 是否从前言中收集元数据。 默认为 True。

属性

DATAVIEW_INLINE_BRACKET_REGEX

DATAVIEW_INLINE_PAREN_REGEX

DATAVIEW_LINE_REGEX

FRONT_MATTER_REGEX

TAG_REGEX

TEMPLATE_VARIABLE_REGEX

方法

__init__(path[, encoding, collect_metadata])

使用路径进行初始化。

alazy_load()

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

aload()

将数据加载到Document对象中。

lazy_load()

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

load()

将数据加载到Document对象中。

load_and_split([text_splitter])

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

__init__(path: str | Path, encoding: str = 'UTF-8', collect_metadata: bool = True)[source]#

使用路径进行初始化。

Parameters:
  • path (str | Path) – 包含Obsidian文件的目录路径。

  • encoding (str) – 字符集编码,默认为“UTF-8”

  • collect_metadata (bool) – 是否从前言中收集元数据。 默认为 True。

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]

使用 ObsidianLoader 的示例