Defines the structure of the embeddings results returned by the Google Vertex AI API. It extends GoogleBasePrediction and contains the embeddings and their statistics.

interface VertexEmbeddingsResponse {
    data: {
        predictions: VertexEmbeddingsResponsePrediction[];
    };
}

Hierarchy (view full)

Properties

Properties

data: {
    predictions: VertexEmbeddingsResponsePrediction[];
}