Interface InitializeAgentExecutorOptionsStructured

interface InitializeAgentExecutorOptionsStructured {
    agentType: "structured-chat-zero-shot-react-description" | "openai-functions";
    agentArgs?: StructuredChatCreatePromptArgs & AgentArgs | OpenAIAgentCreatePromptArgs & Pick<AgentArgs, "callbacks">;
    callbackManager?: any;
    earlyStoppingMethod?: StoppingMethod;
    handleParsingErrors?: string | boolean | ((e: any) => string);
    maxIterations?: number;
    memory?: any;
    returnIntermediateSteps?: boolean;
}

Properties

agentType: "structured-chat-zero-shot-react-description" | "openai-functions"
callbackManager?: any

Use callbacks instead

earlyStoppingMethod?: StoppingMethod
handleParsingErrors?: string | boolean | ((e: any) => string)
maxIterations?: number
memory?: any
returnIntermediateSteps?: boolean