Agent for the MRKL chain.

⚠️ Deprecated ⚠️

Use the createStructuredChatAgent method instead.

This feature is deprecated and will be removed in the future.

It is not recommended for use.

Hierarchy (view full)

Constructors

Properties

ToolType: ToolInterface
llmChain: LLMChain<string, LLMType>
outputParser: undefined | AgentActionOutputParser

Accessors

Methods

  • Constructs the agent's scratchpad, which is a string representation of the agent's previous steps.

    Parameters

    • steps: AgentStep[]

      Array of AgentStep instances representing the agent's previous steps.

    Returns Promise<string>

    Promise resolving to a string representing the agent's scratchpad.

  • Decide what to do given some input.

    Parameters

    • steps: AgentStep[]

      Steps the LLM has taken so far, along with observations from each.

    • inputs: ChainValues

      User inputs.

    • Optional callbackManager: CallbackManager

      Callback manager to use for this call.

    Returns Promise<AgentAction | AgentFinish>

    Action specifying what tool to use.

  • Prepare the agent for output, if needed

    Parameters

    • _returnValues: Record<string, any>
    • _steps: AgentStep[]

    Returns Promise<Record<string, any>>

  • Return response when agent has been stopped due to max iterations

    Parameters

    • earlyStoppingMethod: StoppingMethod
    • steps: AgentStep[]
    • inputs: ChainValues
    • Optional callbackManager: CallbackManager

    Returns Promise<AgentFinish>

  • Create prompt in the style of the zero shot agent.

    Parameters

    • tools: ToolInterface[]

      List of tools the agent will have access to, used to format the prompt.

    • Optional args: ChatCreatePromptArgs

      Arguments to create the prompt with.

    Returns ChatPromptTemplate<any, any>

  • Creates a ChatAgent instance using a language model, tools, and optional arguments.

    Parameters

    • llm: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>

      BaseLanguageModelInterface instance to use in the agent.

    • tools: ToolInterface[]

      Array of Tool instances to include in the agent.

    • Optional args: ChatCreatePromptArgs & AgentArgs

      Optional arguments to customize the agent and prompt.

    Returns ChatAgent

    ChatAgent instance

  • Validates that all tools have descriptions. Throws an error if a tool without a description is found.

    Parameters

    • tools: ToolInterface[]

      Array of Tool instances to validate.

    Returns void

    void

Generated using TypeDoc