Type Alias StructuredChatAgentInput

StructuredChatAgentInput: {
    allowedTools?: undefined | string[];
    llmChain: LLMChain<string, LLMType>;
    outputParser: undefined | AgentActionOutputParser;
}

Type for input data for creating a StructuredChatAgent, with the 'outputParser' property made optional.