diff --git a/src/collections/query/types.ts b/src/collections/query/types.ts index b00fa7c8..48fed7d6 100644 --- a/src/collections/query/types.ts +++ b/src/collections/query/types.ts @@ -103,7 +103,7 @@ export type Bm25Options = BaseBm25Options | GroupByBm25Options | undefi /** Options available to the hybrid search type only */ export type HybridSearchOptions = { - /** 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 type of fusion to apply. If not specified, the default fusion type specified by the server is used. */ fusionType?: 'Ranked' | 'RelativeScore';