mwg API
    Preparing search index...

    Interface AIAgentDefinition

    interface AIAgentDefinition {
        algorithm?: "rules" | "alpha_beta";
        behaviors: readonly AIBehavior[];
        depth?: number;
        id: string;
        maxNodes?: number;
        scope?: "actor" | "controller";
    }
    Index
    algorithm?: "rules" | "alpha_beta"
    behaviors: readonly AIBehavior[]
    depth?: number
    id: string
    maxNodes?: number
    scope?: "actor" | "controller"