Interface AgentV2NodeParameters

Source
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"
    | "define";
    text?: string;
}

Properties§

Source§

readonly hasOutputParser?: boolean

Source§

readonly needsFallback?: boolean

Source§

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

Default: {}

Source§

readonly promptType?: "auto" | "define"

Default: "auto"

Source§

readonly text?: string

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