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

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

Hierarchy (view full)

Properties

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

Generated using TypeDoc