langchain.js
    Preparing search index...

    Type Alias CreateOpenAIFunctionsAgentParams

    Params used by the createOpenAIFunctionsAgent function.

    type CreateOpenAIFunctionsAgentParams = {
        llm: Toolkit<Toolkit>;
        prompt: Toolkit;
        streamRunnable?: boolean;
        tools: Toolkit[];
    }
    Index

    Properties

    LLM to use as the agent. Should work with OpenAI function calling, so must either be an OpenAI model that supports that or a wrapper of a different model that adds in equivalent support.

    prompt: Toolkit

    The prompt to use, must have an input key for agent_scratchpad.

    streamRunnable?: boolean

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

    tools: Toolkit[]

    Tools this agent has access to.