Interface VectorizedSearch<Record>
-
- Type Parameters:
Record- The record type.
- All Known Subinterfaces:
VectorStoreRecordCollection<Key,Record>
- All Known Implementing Classes:
VolatileVectorStoreRecordCollection
public interface VectorizedSearch<Record>A vectorized search.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<VectorSearchResults<Record>>searchAsync(List<Float> vector, VectorSearchOptions options)Vectorized search.
-
-
-
Method Detail
-
searchAsync
reactor.core.publisher.Mono<VectorSearchResults<Record>> searchAsync(List<Float> vector, VectorSearchOptions options)
Vectorized search. This method searches for records that are similar to the given vector.- Parameters:
vector- The vector to search with.options- The options to use for the search.- Returns:
- Vector search results.
-
-