langchain.js
    Preparing search index...

    Interface defining the structure of the inputs for the BabyAGI class. It extends the ChainInputs interface, omitting the 'memory' and 'callbackManager' properties, and adds properties specific to BabyAGI.

    interface BabyAGIInputs {
        creationChain: BaseChain;
        executionChain: BaseChain;
        maxIterations?: number;
        prioritizationChain: BaseChain;
        vectorstore: VectorStoreInterface;
    }

    Hierarchy

    • Omit<ChainInputs, "memory" | "callbackManager">
      • BabyAGIInputs

    Implemented by

    Index

    Properties

    creationChain: BaseChain
    executionChain: BaseChain
    maxIterations?: number
    prioritizationChain: BaseChain
    vectorstore: VectorStoreInterface