Test: RERANK_LIMIT 10→15 only, everything else unchanged

This commit is contained in:
q 2026-04-18 21:00:40 +03:00
parent f6d66854b9
commit f6e53758f7

View file

@ -165,7 +165,7 @@ app = FastAPI(title="Search Service", version="0.1.0", lifespan=lifespan)
DENSE_PREFETCH_K = 80 DENSE_PREFETCH_K = 80
SPARSE_PREFETCH_K = 200 SPARSE_PREFETCH_K = 200
RETRIEVE_K = 150 RETRIEVE_K = 150
RERANK_LIMIT = 10 RERANK_LIMIT = 15
async def embed_dense(client: httpx.AsyncClient, text: str) -> list[float]: async def embed_dense(client: httpx.AsyncClient, text: str) -> list[float]: