From d7e96f2658c824406d7135c5eb2b1f0e734bb6b6 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 18 May 2026 09:17:53 -0400 Subject: [PATCH] fix: typo --- haiku_rag_slim/haiku/rag/client/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haiku_rag_slim/haiku/rag/client/search.py b/haiku_rag_slim/haiku/rag/client/search.py index 7d5592d8..c0e71228 100644 --- a/haiku_rag_slim/haiku/rag/client/search.py +++ b/haiku_rag_slim/haiku/rag/client/search.py @@ -27,7 +27,7 @@ async def search( Image queries require a multimodal embedder and run vector-only. limit: Maximum number of results to return. Defaults to config.search.limit. search_type: "vector", "fts", or "hybrid". - Applicable onlly for text queries, where the default is "hybrid". + Applicable only for text queries, where the default is "hybrid". filter: Optional SQL WHERE clause to filter documents before searching chunks. include_images: When True, populate ``SearchResult.image_data`` with base64 picture bytes for picture-labeled chunks.