langchain_community.document_loaders.conllu.CoNLLULoader

class langchain_community.document_loaders.conllu.CoNLLULoader(file_path: str)[source]

Load CoNLL-U files.

Initialize with a file path.

Methods

__init__(file_path)

Initialize with a file path.

lazy_load()

A lazy loader for Documents.

load()

Load from a file path.

load_and_split([text_splitter])

Load Documents and split into chunks.

__init__(file_path: str)[source]

Initialize with a file path.

lazy_load() Iterator[Document]

A lazy loader for Documents.

load() List[Document][source]

Load from a file path.

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]

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

Parameters

text_splitter – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns

List of Documents.

Examples using CoNLLULoader