Package version:

Interface WebApiVectorizer

Specifies a user-defined vectorizer for generating the vector embedding of a query string. Integration of an external vectorizer is achieved using the custom Web API interface of a skillset.

interface WebApiVectorizer {
    kind: "customWebApi";
    parameters?: WebApiParameters;
    vectorizerName: string;
}

Hierarchy (view full)

Properties

kind

Polymorphic discriminator, which specifies the different types this object can be

parameters?: WebApiParameters

Specifies the properties of the user-defined vectorizer.

vectorizerName: string

The name to associate with this particular vectorization method.