@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;
        isAvailable: boolean;
        name: string;
        upsell?: "subscribe" | "upgrade";
    }
    Index
    description?: string

    Optional localized subtitle shown beneath the name.

    id: string
    isAvailable: boolean

    Whether this option is selectable (true) or gated behind a subscription upsell (false).

    name: string

    Localized display name for this reasoning-effort option.

    upsell?: "subscribe" | "upgrade"

    For a gated (isAvailable: false) option, which upsell flow it leads to. Absent for available options.