Interface for the input parameters of the AutoGPT class.

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

Properties

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