Interface for the input parameters of the AutoGPT class.

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

Properties

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

Generated using TypeDoc