langchain.js
    Preparing search index...

    Interface ConversationalRetrievalQAChainInput

    Interface for the input parameters of the ConversationalRetrievalQAChain class.

    interface ConversationalRetrievalQAChainInput {
        callbackManager?: any;
        combineDocumentsChain: BaseChain;
        inputKey?: string;
        memory?: any;
        questionGeneratorChain: LLMChain;
        retriever: BaseRetrieverInterface;
        returnGeneratedQuestion?: boolean;
        returnSourceDocuments?: boolean;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    callbackManager?: any

    Use callbacks instead

    combineDocumentsChain: BaseChain
    inputKey?: string
    memory?: any
    questionGeneratorChain: LLMChain
    retriever: BaseRetrieverInterface
    returnGeneratedQuestion?: boolean
    returnSourceDocuments?: boolean