langchain.js
    Preparing search index...

    Interface for the input data required to create an OpenAIAgent.

    interface OpenAIAgentInput {
        allowedTools?: string[];
        llmChain: LLMChain;
        outputParser: undefined | AgentActionOutputParser;
        tools: StructuredToolInterface[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    allowedTools?: string[]
    llmChain: LLMChain
    outputParser: undefined | AgentActionOutputParser
    tools: StructuredToolInterface[]