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§

Source§

readonly hasOutputParser?: boolean

Source§

readonly needsFallback?: boolean

Source§

readonly options?: {
    batching?: {
        batchSize?: number;
        delayBetweenBatches?: number;
    };
    enableStreaming?: boolean;
    maxIterations?: number;
    maxTokensFromMemory?: unknown;
    passthroughBinaryImages?: boolean;
    returnIntermediateSteps?: boolean;
    systemMessage?: string;
}

Default: {}

Source§

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

Default: "auto"

Source§

readonly text?: string

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