langchain.js
    Preparing search index...

    Interface RetrievalQAChainInput

    Interface for the input parameters of the RetrievalQAChain class.

    interface RetrievalQAChainInput {
        callbackManager?: any;
        combineDocumentsChain: BaseChain;
        inputKey?: string;
        retriever: BaseRetrieverInterface;
        returnSourceDocuments?: boolean;
    }

    Hierarchy

    Implemented by

    Index

    Properties

    callbackManager?: any

    Use callbacks instead

    combineDocumentsChain: BaseChain
    inputKey?: string
    retriever: BaseRetrieverInterface
    returnSourceDocuments?: boolean