Merges the page content and metadata of multiple documents into a single document, or splits the documents using a custom splitter.
merge_and_split(
self,
documents: List[Document],
splitter: Optional[object] = None
) -> List[Document]| Name | Type | Description |
|---|---|---|
documents* | list | A list of |
splitter | object | Default: NoneAn optional splitter object that implements the
|