Interface AgentToolV2NodeParameters

Source
interface AgentToolV2NodeParameters {
    hasOutputParser?: boolean;
    needsFallback?: boolean;
    options?: {
        batching?: {
            batchSize?: number;
            delayBetweenBatches?: number;
        };
        maxIterations?: number;
        passthroughBinaryImages?: boolean;
        returnIntermediateSteps?: boolean;
        systemMessage?: string;
    };
    text?: string;
    toolDescription?: string;
}

Properties§

Source§

readonly hasOutputParser?: boolean

Source§

readonly needsFallback?: boolean

Source§

readonly options?: {
    batching?: {
        batchSize?: number;
        delayBetweenBatches?: number;
    };
    maxIterations?: number;
    passthroughBinaryImages?: boolean;
    returnIntermediateSteps?: boolean;
    systemMessage?: string;
}

Default: {}

Source§

readonly text?: string

Type options: {"rows":2}

Source§

readonly toolDescription?: string

Explain to the LLM what this tool does, a good, specific description would allow LLMs to produce expected results much more often Default: "AI Agent that can call other tools" Type options: {"rows":2}