Interface Embedding

Embedding represents the result for the embedding call.

interface Embedding {
    created: number;
    data: EmbeddingData[];
    id: string;
    model: string;
    object: string;
    createdDate(): Date;
}

Properties

created: number

created represents the unix timestamp for when the request was received.

EmbeddingData represents the collection of vector points.

id: string

id represents a unique identifier for the result.

model: string

model represents the model used for generating the result.

object: string

object represent the type of the result document.

Methods

  • createdDate converts the created unix timestamp into a JS Date.

    Returns Date