langchain_community.document_loaders.toml
.TomlLoader¶
- class langchain_community.document_loaders.toml.TomlLoader(source: Union[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.
A lazy loader for Documents.
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 (Union[str, Path]) –
- __init__(source: Union[str, Path])[source]¶
Initialize the TomlLoader with a source file or directory.
- Parameters
source (Union[str, Path]) –
- async alazy_load() AsyncIterator[Document] ¶
A lazy loader for Documents.
- Return type
AsyncIterator[Document]
- lazy_load() Iterator[Document] [source]¶
Lazily load the TOML documents from the source file or directory.
- Return type
Iterator[Document]
- load_and_split(text_splitter: Optional[TextSplitter] = 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]