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