Interface EmbeddingInput

EmbeddingInput represents the input to generate embeddings.

interface EmbeddingInput {
    image: Base64Encoder;
    text: string;
}

Properties

Properties

image represents an image to vectorize.

text: string

text represents text to vectorize.