Interface EmbeddingData

EmbeddingData represents the vector data points.

interface EmbeddingData {
    embedding: number[];
    index: number;
    object: string;
}

Properties

embedding: number[]
index: number

index represents the index position in the collection for this choice.

object: string

object represent the type of the result document.