ObsidianLoader#

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

Load Obsidian files from directory.

Initialize with a path.

Parameters:
  • path (str | Path) – Path to the directory containing the Obsidian files.

  • encoding (str) – Charset encoding, defaults to β€œUTF-8”

  • collect_metadata (bool) – Whether to collect metadata from the front matter. Defaults to True.

Attributes

DATAVIEW_INLINE_BRACKET_REGEX

DATAVIEW_INLINE_PAREN_REGEX

DATAVIEW_LINE_REGEX

FRONT_MATTER_REGEX

TAG_REGEX

TEMPLATE_VARIABLE_REGEX

Methods

__init__(path[,Β encoding,Β collect_metadata])

Initialize with a path.

alazy_load()

A lazy loader for Documents.

aload()

Load data into Document objects.

lazy_load()

A lazy loader for Documents.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

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

Initialize with a path.

Parameters:
  • path (str | Path) – Path to the directory containing the Obsidian files.

  • encoding (str) – Charset encoding, defaults to β€œUTF-8”

  • collect_metadata (bool) – Whether to collect metadata from the front matter. Defaults to True.

async alazy_load() β†’ AsyncIterator[Document]#

A lazy loader for Documents.

Return type:

AsyncIterator[Document]

async aload() β†’ list[Document]#

Load data into Document objects.

Return type:

list[Document]

lazy_load() β†’ Iterator[Document][source]#

A lazy loader for Documents.

Return type:

Iterator[Document]

load() β†’ list[Document]#

Load data into Document objects.

Return type:

list[Document]

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

Load Documents and split into chunks. Chunks are returned as Documents.

Do not override this method. It should be considered to be deprecated!

Parameters:

text_splitter (Optional[TextSplitter]) – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns:

List of Documents.

Return type:

list[Document]

Examples using ObsidianLoader