VectorizedSearch<Record> Interface

Type Parameters

Record

The record type.

public interface VectorizedSearch<Record>

A vectorized search.

Method Summary

Modifier and Type Method and Description
abstract reactor.core.publisher.Mono<VectorSearchResults<Record>> searchAsync(List<Float> vector, VectorSearchOptions options)

Vectorized search.

Method Details

searchAsync

public abstract Mono> searchAsync(List 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.

Applies to