Type Alias ChatConversationalAgentInput

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

Type that extends the AgentInput interface for the ChatConversationalAgent class, making the outputParser property optional.