DEFAULTACTION

Defines the default actions to execute when no decision rows are produced during inference. The DEFAULTACTION section provides a deterministic fallback to ensure the model produces a result even when no data contributions yield actionable outcomes.

Properties of DEFAULTACTION

NameTypeDescription
ActionsLIST`1The list of action identifiers to execute when no decision rows match. Actions are evaluated in the order specified.

Syntax

	DEFAULTACTION <Action[, Action...]>

Examples

	

        DEFAULTACTION
            StandardResponse,
            LogOnly

	
MODULE
    MODEL
        RULES
            RULE EscalateHighRiskCustomer
                Priority = 10
                Category = 'Risk'

                WHEN
                    SentimentScore < -8
                    AND IssueSeverityScore >= 3

                THEN
                    Action = Escalate

             DEFAULTACTION
                    StandardResponse