mwg API
    Preparing search index...

    Interface AIBehavior

    interface AIBehavior {
        decide: (context: AIDecisionContext) => AIAction | null;
        id: string;
        when?: (context: AIDecisionContext) => boolean;
    }
    Index
    decide: (context: AIDecisionContext) => AIAction | null
    id: string
    when?: (context: AIDecisionContext) => boolean