langchain.js
    Preparing search index...

    Interface TimeWeightedVectorStoreRetrieverFields

    Interface for the fields required to initialize a TimeWeightedVectorStoreRetriever instance.

    interface TimeWeightedVectorStoreRetrieverFields {
        decayRate?: number;
        defaultSalience?: number;
        k?: number;
        memoryStream?: DocumentInterface[];
        otherScoreKeys?: string[];
        searchKwargs?: number;
        vectorStore: VectorStoreInterface;
    }

    Hierarchy (View Summary)

    Index

    Properties

    decayRate?: number
    defaultSalience?: number
    k?: number
    memoryStream?: DocumentInterface[]
    otherScoreKeys?: string[]
    searchKwargs?: number
    vectorStore: VectorStoreInterface