I have a set of text files where each file where the file sizes vary from 1K to 2.5k. Is this possible?
text_splitter = RecursiveCharacterTextSplitter(chunk_size=2500, chunk_overlap=0) texts = text_splitter.split_documents(data)
I have a set of text files where each file where the file sizes vary from 1K to 2.5k. Is this possible?
text_splitter = RecursiveCharacterTextSplitter(chunk_size=2500, chunk_overlap=0) texts = text_splitter.split_documents(data)