From bdbb4cf5272671f2bac0d02d4ad7b20a45fabee3 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Mon, 21 Sep 2026 13:20:06 -0700 Subject: [PATCH] test(e2e): send no-cache on rerank bodies like the other request models --- tests/e2e/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/models.py b/tests/e2e/models.py index 066eb74749c..9440505e58c 100644 --- a/tests/e2e/models.py +++ b/tests/e2e/models.py @@ -705,6 +705,7 @@ class RerankBody(BaseModel): query: str documents: list[str] top_n: int + cache: dict[str, bool] | None = {"no-cache": True} class RerankItem(BaseModel):