Langfuse JS/TS SDKs
    Preparing search index...

    Interface PricingTierUsageCondition

    Condition that sums usage details whose keys match a regex.

    interface PricingTierUsageCondition {
        caseSensitive: boolean;
        operator: PricingTierOperator;
        usageDetailPattern: string;
        value: number;
    }
    Index

    Properties

    caseSensitive: boolean

    Whether the usage-detail regex is case-sensitive.

    usageDetailPattern: string

    Regex pattern matched against usage detail keys.

    value: number

    Numeric threshold for the summed matching usage values.