langchain.js
    Preparing search index...

    Interface defining the input for creating an agent. It includes the LLMChain instance, an optional output parser, and an optional list of allowed tools.

    interface AgentInput {
        allowedTools?: string[];
        llmChain: LLMChain;
        outputParser: undefined | AgentActionOutputParser;
    }

    Hierarchy (View Summary)

    Index

    Properties

    allowedTools?: string[]
    llmChain: LLMChain
    outputParser: undefined | AgentActionOutputParser