All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.semantickernel.data.vectorsearch.VectorizableTextSearch Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.data.vectorsearch;

import com.microsoft.semantickernel.data.vectorstorage.options.VectorSearchOptions;
import reactor.core.publisher.Mono;

/**
 * A vectorizable text search.
 *
 * @param  The record type.
 */
public interface VectorizableTextSearch {
    /**
     * Vectorizable text search. This method searches for records that are similar to the given text.
     *
     * @param searchText The text to search with.
     * @param options The options to use for the search.
     * @return VectorSearchResults.
     */
    Mono> searchAsync(String searchText,
        VectorSearchOptions options);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy