Represents an instance for generating embeddings using the Google Vertex AI API. It contains the content to be embedded.

interface VertexEmbeddingsInstance {
    content: string;
    taskType?: string;
    title?: string;
}

Properties

content: string
taskType?: string
title?: string