diff --git a/vector_store.py b/vector_store.py index c2307c9..5401641 100644 --- a/vector_store.py +++ b/vector_store.py @@ -53,7 +53,7 @@ def get_vector_store() -> QdrantVectorStore: def chunk_document(content: str, title: str) -> list[Document]: splitter = RecursiveCharacterTextSplitter( chunk_size=500, - chunk_overlap=50, + chunk_overlap=100, ) documents = splitter.create_documents( texts=[content],