CreateXmlAgentParams: {
    llm: Toolkit;
    prompt: Toolkit;
    tools: Toolkit[];
    streamRunnable?: boolean;
}

Params used by the createXmlAgent function.

Type declaration

  • llm: Toolkit

    LLM to use for the agent.

  • prompt: Toolkit

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

  • tools: Toolkit[]

    Tools this agent has access to.

  • Optional streamRunnable?: boolean

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

Generated using TypeDoc