langchain.js
    Preparing search index...

    Interface ChatVectorDBQAChainInput

    Interface for the input parameters of the ChatVectorDBQAChain class.

    interface ChatVectorDBQAChainInput {
        callbackManager?: any;
        combineDocumentsChain: BaseChain;
        inputKey?: string;
        k?: number;
        memory?: any;
        outputKey?: string;
        questionGeneratorChain: LLMChain;
        returnSourceDocuments?: boolean;
        vectorstore: VectorStoreInterface;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    callbackManager?: any

    Use callbacks instead

    combineDocumentsChain: BaseChain
    inputKey?: string
    k?: number
    memory?: any
    outputKey?: string
    questionGeneratorChain: LLMChain
    returnSourceDocuments?: boolean
    vectorstore: VectorStoreInterface