Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/collections/query/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export type Bm25Options<T> = BaseBm25Options<T> | GroupByBm25Options<T> | undefi

/** Base options available in the `query.hybrid` method */
export type BaseHybridOptions<T> = SearchOptions<T> & {
/** 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;
Expand Down
Loading