Bow Tie Kreative VIDEO Grammar

Production rules · Generation

GEN-006

Hard rule priority 95 domain: generation ranking

Rationale

Aesthetic quality does not override continuity.

IF — conditions (all must hold)

  • generated.beauty_score gte 0.8
  • generated.continuity_score lt 0.6

THEN — actions

  • set ranking.eligibility 0

This is a hard rule: when it matches it participates in blocking — the pipeline may not proceed until the condition is repaired or a human accepts the risk.

Full record

rules/production_rules.json
{
  "id": "GEN-006",
  "domain": "generation",
  "priority": 95,
  "hard": true,
  "logic": "all",
  "when": [
    {
      "path": "generated.beauty_score",
      "op": "gte",
      "value": 0.8
    },
    {
      "path": "generated.continuity_score",
      "op": "lt",
      "value": 0.6
    }
  ],
  "then": [
    {
      "op": "set",
      "path": "ranking.eligibility",
      "value": 0
    }
  ],
  "rationale": "Aesthetic quality does not override continuity.",
  "tags": [
    "ranking"
  ]
}

This rule as JSON → · Evaluate a context →