langchain.js
    Preparing search index...

    Interface for the input parameters of the AutoGPT class.

    interface AutoGPTInput {
        aiName: string;
        aiRole: string;
        humanInTheLoop?: boolean;
        maxIterations?: number;
        memory: VectorStoreRetrieverInterface;
        outputParser?: AutoGPTOutputParser;
    }
    Index

    Properties

    aiName: string
    aiRole: string
    humanInTheLoop?: boolean
    maxIterations?: number
    memory: VectorStoreRetrieverInterface
    outputParser?: AutoGPTOutputParser