Member Junction
    Preparing search index...

    Interface SimpleEmbeddingResult

    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[];
    }
    Index

    Properties

    Properties

    modelID: string
    vector: number[]