From 4461122a0e023f4c73b9cfea71f30fcd6e6f3d86 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 28 May 2025 18:45:47 +0400 Subject: [PATCH] fix: /api/v1/retrieval/query/collection endpoint --- backend/open_webui/routers/retrieval.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/open_webui/routers/retrieval.py b/backend/open_webui/routers/retrieval.py index 98f79c7fe..07938f22f 100644 --- a/backend/open_webui/routers/retrieval.py +++ b/backend/open_webui/routers/retrieval.py @@ -1835,6 +1835,7 @@ class QueryCollectionsForm(BaseModel): k_reranker: Optional[int] = None r: Optional[float] = None hybrid: Optional[bool] = None + hybrid_bm25_weight: Optional[float] = None @router.post("/query/collection")