langchain.js
    Preparing search index...

    Interface for the fields required to initialize an instance of the CacheBackedEmbeddings class.

    interface CacheBackedEmbeddingsFields {
        documentEmbeddingStore: BaseStore<string, number[]>;
        underlyingEmbeddings: EmbeddingsInterface;
    }

    Hierarchy (View Summary)

    Index

    Properties

    documentEmbeddingStore: BaseStore<string, number[]>
    underlyingEmbeddings: EmbeddingsInterface