Class OracleDocumentSplitter

java.lang.Object
dev.langchain4j.data.document.splitter.oracle.OracleDocumentSplitter
All Implemented Interfaces:
DocumentSplitter

public class OracleDocumentSplitter extends Object implements DocumentSplitter
Split documents Use dbms_vector_chain.utl_to_chunks to split documents. You can specify how to split the content such as by words, characters, or vocabulary to match a tokenizer in the preference. Some example preferences To split by words: {"by": "words", "max": 100} To split by characters: {"by": "characters", "max": 100}