Interface AgentV2NodeParameters
Sourceinterface AgentV2NodeParameters {
hasOutputParser?: boolean;
needsFallback?: boolean;
options?:
| {
batching?: {
batchSize?: number;
delayBetweenBatches?: number;
};
enableStreaming?: boolean;
maxIterations?: number;
passthroughBinaryImages?: boolean;
returnIntermediateSteps?: boolean;
systemMessage?: string;
}
| {
batching?: {
batchSize?: number;
delayBetweenBatches?: number;
};
maxIterations?: number;
passthroughBinaryImages?: boolean;
returnIntermediateSteps?: boolean;
systemMessage?: string;
};
promptType?: "auto"
| "define";
text?: string;
}
Default: {}