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_REGEXDATAVIEW_INLINE_PAREN_REGEXDATAVIEW_LINE_REGEXFRONT_MATTER_REGEXTAG_REGEXTEMPLATE_VARIABLE_REGEXMethods
__init__(path[,Β encoding,Β collect_metadata])Initialize with a path.
A lazy loader for Documents.
aload()Load data into Document objects.
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]
- lazy_load() Iterator[Document][source]#
A lazy loader for Documents.
- Return type:
Iterator[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