AcreomLoader#
- class langchain_community.document_loaders.acreom.AcreomLoader(path: str | Path, encoding: str = 'UTF-8', collect_metadata: bool = True)[source]#
Load acreom vault from a directory.
Initialize the loader.
Attributes
FRONT_MATTER_REGEX
Regex to match front matter metadata in markdown files.
Methods
__init__
(path[, encoding, collect_metadata])Initialize the loader.
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.
- Parameters:
path (str | Path)
encoding (str)
collect_metadata (bool)
- __init__(path: str | Path, encoding: str = 'UTF-8', collect_metadata: bool = True)[source]#
Initialize the loader.
- Parameters:
path (str | Path)
encoding (str)
collect_metadata (bool)
- 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 AcreomLoader