langchain.js
    Preparing search index...

    Interface LLMSingleActionAgentInput

    Interface for input data for creating a LLMSingleActionAgent.

    interface LLMSingleActionAgentInput {
        llmChain: LLMChain;
        outputParser: AgentActionOutputParser;
        stop?: string[];
    }
    Index

    Properties

    llmChain: LLMChain
    stop?: string[]