VectorizableTextSearch<Record> Interface

Type Parameters

Record

The record type.

public interface VectorizableTextSearch<Record>

A vectorizable text search.

Method Summary

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

Vectorizable text search.

Method Details

searchAsync

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

Applies to