Renamed to RunnableMultiActionAgent.

Hierarchy

  • RunnableMultiActionAgent
    • RunnableAgent

Constructors

Properties

ToolType: StructuredToolInterface
defaultRunName: string = "RunnableAgent"
runnable: Runnable<any, any>
streamRunnable: boolean = true
stop?: string[]

Accessors

  • get allowedTools(): undefined | string[]
  • Returns undefined | string[]

Methods

  • 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.

    • OptionalcallbackManager: any

      Callback manager.

    • Optionalconfig: any

    Returns Promise<any>

    Actions specifying what tools to use.

  • Prepare the agent for output, if needed

    Parameters

    • _returnValues: AgentFinish
    • _steps: AgentStep[]

    Returns Promise<AgentFinish>

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

    Parameters

    • earlyStoppingMethod: StoppingMethod
    • _steps: AgentStep[]
    • _inputs: ChainValues
    • Optional_callbackManager: any

    Returns Promise<AgentFinish>