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;
}Properties§
§§
readonly has Output Parser?: boolean§readonly needs Fallback?: boolean§readonly options?: { ... }§
readonly text?: stringType options: {"rows":2}
readonly tool Description?: stringExplain 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}
Default: {}