interface 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"
| "guardrails"
| "define";
text?: string;
}Properties§
§§
readonly has Output Parser?: boolean§readonly needs Fallback?: boolean§readonly 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;
}§
readonly prompt Type?: "auto" | "guardrails" | "define"Default: "auto"
readonly text?: stringDefault: "={{ $json.guardrailsInput }}" Type options: {"rows":2}
Default: {}