@duckduckgo/content-scope-scripts
    Preparing search index...

    Interface ReasoningEffortOption

    A reasoning-effort option for a reasoning-capable model, including its localized display copy and availability.

    interface ReasoningEffortOption {
        description?: string;
        id: string;
        name: string;
        status: "unavailable" | "available";
        upsell?: "subscribe" | "upgrade";
    }
    Index

    Properties

    description?: string

    Optional localized subtitle shown beneath the name.

    id: string
    name: string

    Localized display name for this reasoning-effort option.

    status: "unavailable" | "available"

    Whether this option is selectable ('available') or gated behind a subscription upsell ('unavailable').

    upsell?: "subscribe" | "upgrade"

    For a gated ('unavailable') option, which upsell flow it leads to. Absent for available options.