fix: chunk_overlap=100 per assignment spec

This commit is contained in:
2026-05-27 09:23:44 +00:00
parent 25dbe6a8d1
commit b2c437bf4d
+1 -1
View File
@@ -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],