From f6e53758f7c089fa2f19f254ef25c8adc3571c00 Mon Sep 17 00:00:00 2001 From: q Date: Sat, 18 Apr 2026 21:00:40 +0300 Subject: [PATCH] =?UTF-8?q?Test:=20RERANK=5FLIMIT=2010=E2=86=9215=20only,?= =?UTF-8?q?=20everything=20else=20unchanged?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- search/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/main.py b/search/main.py index 763658d..c5f2624 100644 --- a/search/main.py +++ b/search/main.py @@ -165,7 +165,7 @@ app = FastAPI(title="Search Service", version="0.1.0", lifespan=lifespan) DENSE_PREFETCH_K = 80 SPARSE_PREFETCH_K = 200 RETRIEVE_K = 150 -RERANK_LIMIT = 10 +RERANK_LIMIT = 15 async def embed_dense(client: httpx.AsyncClient, text: str) -> list[float]: