Interface AgentV3NodeParameters

Source
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;
}

Properties§

§readonly hasOutputParser?: boolean
§readonly needsFallback?: boolean
§readonly options?: { ... }

Default: {}

§readonly promptType?: "auto" | "guardrails" | "define"

Default: "auto"

§readonly text?: string

Default: "={{ $json.guardrailsInput }}" Type options: {"rows":2}