From 372171def8cab71b7da08c2e9b45221d5dd73b85 Mon Sep 17 00:00:00 2001 From: JP Hwang Date: Wed, 27 Nov 2024 13:18:27 +0000 Subject: [PATCH] Update alpha docstring --- src/collections/query/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collections/query/types.ts b/src/collections/query/types.ts index 83080d21..fd3e53b0 100644 --- a/src/collections/query/types.ts +++ b/src/collections/query/types.ts @@ -101,7 +101,7 @@ export type Bm25Options = BaseBm25Options | GroupByBm25Options | undefi /** Base options available in the `query.hybrid` method */ export type BaseHybridOptions = SearchOptions & { - /** The weight of the BM25 score. If not specified, the default weight specified by the server is used. */ + /** The weight of the vector search score. If not specified, the default weight specified by the server is used. */ alpha?: number; /** The specific vector to search for or a specific vector subsearch. If not specified, the query is vectorized and used in the similarity search. */ vector?: NearVectorInputType | HybridNearTextSubSearch | HybridNearVectorSubSearch;