interface AgentV3NodeParameters {
hasOutputParser?: boolean;
needsFallback?: boolean;
options?: {
batching?: {
batchSize?: number;
delayBetweenBatches?: number;
};
enableStreaming?: boolean;
maxIterations?: number;
maxTokensFromMemory?: unknown;
passthroughBinaryImages?: boolean;
returnIntermediateSteps?: boolean;
systemMessage?: string;
};
promptType?: "auto"
| "guardrails"
| "define";
text?: string;
}
Default: {}