langchain.js
    Preparing search index...

    Type Alias SerializedVectorDBQAChain

    Represents the serialized form of a VectorDBQAChain. It includes properties such as _type, k, and combine_documents_chain.

    Use newer serialization methods.

    type SerializedVectorDBQAChain = {
        _type: "vector_db_qa";
        combine_documents_chain: SerializedBaseChain;
        k: number;
    }
    Index

    Properties

    _type: "vector_db_qa"
    combine_documents_chain: SerializedBaseChain
    k: number