OptionalmemoryReturn the string type key uniquely identifying this class of chain.
Protected_Invoke the chain with the provided input and returns the output.
Input values for the chain run.
Optionaloptions: anyPromise that resolves with the output of the chain run.
Return a json-like object representing this chain.
StaticdeserializeLoad a chain from a json-like object describing it.
StaticfromStatic method that creates a VectorDBQAChain instance from a BaseLanguageModel and a vector store. It also accepts optional options to customize the chain.
The BaseLanguageModel instance.
The vector store used for similarity search.
Optionaloptions: Partial<Omit<VectorDBQAChainInput, "vectorstore" | "combineDocumentsChain">>Optional options to customize the chain.
A new instance of VectorDBQAChain.
Staticlc_
Class that represents a VectorDBQAChain. It extends the
BaseChainclass and implements theVectorDBQAChainInputinterface. It performs a similarity search using a vector store and combines the search results using a specified combine documents chain.