Interface for input data for creating a LLMSingleActionAgent.

interface LLMSingleActionAgentInput {
    llmChain: LLMChain<string, any>;
    outputParser: AgentActionOutputParser;
    stop?: string[];
}

Properties

llmChain: LLMChain<string, any>
stop?: string[]

Generated using TypeDoc