Bow Tie Kreative VIDEO Grammar

Production rules · Transcript

TXT-005

Hard rule priority 90 domain: transcript speaker

Rationale

Speaker attribution must be verified when diarization is weak.

IF — conditions (all must hold)

  • transcript.speaker_confidence lt 0.7

THEN — actions

  • add_flag "LOW_SPEAKER_CONFIDENCE"
  • require_human "verify_speaker_attribution"

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": "TXT-005",
  "domain": "transcript",
  "priority": 90,
  "hard": true,
  "logic": "all",
  "when": [
    {
      "path": "transcript.speaker_confidence",
      "op": "lt",
      "value": 0.7
    }
  ],
  "then": [
    {
      "op": "add_flag",
      "value": "LOW_SPEAKER_CONFIDENCE"
    },
    {
      "op": "require_human",
      "value": "verify_speaker_attribution"
    }
  ],
  "rationale": "Speaker attribution must be verified when diarization is weak.",
  "tags": [
    "speaker"
  ]
}

This rule as JSON → · Evaluate a context →