Interface VectorizableTextSearch<Record>
-
- Type Parameters:
Record- The record type.
public interface VectorizableTextSearch<Record>A vectorizable text search.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<VectorSearchResults<Record>>searchAsync(String searchText, VectorSearchOptions options)Vectorizable text search.
-
-
-
Method Detail
-
searchAsync
reactor.core.publisher.Mono<VectorSearchResults<Record>> searchAsync(String searchText, VectorSearchOptions options)
Vectorizable text search. This method searches for records that are similar to the given text.- Parameters:
searchText- The text to search with.options- The options to use for the search.- Returns:
- VectorSearchResults.
-
-