Member Junction
    Preparing search index...

    A configuration preset attached to a mention suggestion (e.g. an agent's Fast / Standard / High Power presets). When a suggestion carries 2+ presets the mention editor renders a preset picker on the inserted chip; the selected preset's ID/Name travel with the chip (data-preset-id / data-preset-name) and survive serialization via getPlainTextWithJsonMentions().

    This is a deliberately generic shape — the composer has no knowledge of what a preset IS. Trigger providers map their domain objects (e.g. MJ: AI Agent Configurations rows) into this shape when building suggestions.

    interface MentionSuggestionPreset {
        Description?: string;
        DisplayName?: string;
        ID: string;
        IsDefault?: boolean;
        Name: string;
    }
    Index

    Properties

    Description?: string

    Optional descriptive text shown under the preset label.

    DisplayName?: string

    Friendly label shown in the preset picker (falls back to Name).

    ID: string

    Stable identifier stored on the chip (data-preset-id).

    IsDefault?: boolean

    The preset preselected on chip insert. First preset wins when none is flagged.

    Name: string

    Machine name stored on the chip (data-preset-name).