Represents the result of a simple text embedding operation. Not implemented in @memberjunction/core package but defined here and implemented in sub-classes that live exclusively on the server-side

interface SimpleEmbeddingResult {
    modelID: string;
    vector: number[];
}

Properties

Properties

modelID: string
vector: number[]