TomlLoader#

class langchain_community.document_loaders.toml.TomlLoader(source: str | Path)[source]#

Load TOML files.

It can load a single source file or several files in a single directory.

Initialize the TomlLoader with a source file or directory.

Methods

__init__(source)

Initialize the TomlLoader with a source file or directory.

alazy_load()

A lazy loader for Documents.

aload()

Load data into Document objects.

lazy_load()

Lazily load the TOML documents from the source file or directory.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

Parameters:

source (str | Path)

__init__(source: str | Path)[source]#

Initialize the TomlLoader with a source file or directory.

Parameters:

source (str | Path)

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]#

Lazily load the TOML documents from the source file or directory.

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 TomlLoader