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