Type Alias StructuredChatAgentInput

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

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