VectorStoreRetrieverInput<V>: {
    callbacks?: undefined | Callbacks;
    filter?: undefined | V["FilterType"];
    k?: undefined | number;
    metadata?: undefined | Record<string, unknown>;
    searchType?: undefined | "similarity" | "mmr";
    tags?: undefined | string[];
    vectorStore: V;
    verbose?: undefined | boolean;
}

Type for input when creating a VectorStoreRetriever instance.

Type Parameters