Type Alias CreateReactAgentParams

CreateReactAgentParams: {
    llm: BaseLanguageModelInterface;
    prompt: BasePromptTemplate;
    streamRunnable?: boolean;
    tools: ToolInterface[];
}

Params used by the createXmlAgent function.

Type declaration

  • llm: BaseLanguageModelInterface

    LLM to use for the agent.

  • prompt: BasePromptTemplate

    The prompt to use. Must have input keys for tools, tool_names, and agent_scratchpad.

  • OptionalstreamRunnable?: boolean

    Whether to invoke the underlying model in streaming mode, allowing streaming of intermediate steps. Defaults to true.

  • tools: ToolInterface[]

    Tools this agent has access to.