Interface EmbeddingData

EmbeddingData represents the vector data points.

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

Properties

embedding: number[]
index: number

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

status: string

status represents if the response for this choice was successful or not.