From c0506c49aac065975b6ad02c663a30f81fc243ba Mon Sep 17 00:00:00 2001 From: q Date: Sat, 18 Apr 2026 19:57:31 +0300 Subject: [PATCH] Revert CHUNK_SIZE to 256/128 baseline (score 0.5094) --- index/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index/main.py b/index/main.py index f310c34..d6083ea 100644 --- a/index/main.py +++ b/index/main.py @@ -73,8 +73,8 @@ class SparseVector(BaseModel): values: list[float] -CHUNK_SIZE = 512 -OVERLAP_SIZE = 192 +CHUNK_SIZE = 256 +OVERLAP_SIZE = 128 SPARSE_MODEL_NAME = "Qdrant/bm25" FASTEMBED_CACHE_PATH = "/models/fastembed"