Parameters for the cutoff feature.

interface CutoffParams {
    debug: boolean;
    disable_neg: boolean;
    enabled: boolean;
    inpt: "Lerp" | "SLerp";
    padding: string | number;
    strong: boolean;
    targets: string;
    weight: number;
}

Properties

debug: boolean

Whether to enable debug mode for the cutoff.

disable_neg: boolean

Whether to disable negative cutoff.

enabled: boolean

Whether the cutoff feature is enabled.

inpt: "Lerp" | "SLerp"

Input options for the cutoff. Valid values are "Lerp" or "SLerp".

padding: string | number

The padding token for the cutoff (can be an ID or a single token).

strong: boolean

Whether to use strong cutoff.

targets: string

The target for the cutoff.

weight: number

The weight for the cutoff.