Bow Tie Kreative VIDEO Grammar

Production rules · Transcript

TXT-009

Hard rule priority 88 domain: transcript tone

Rationale

Literal transcription can misrepresent ironic or sarcastic speech.

IF — conditions (all must hold)

  • transcript.irony_or_sarcasm_material eq true

THEN — actions

  • add_flag "NONLITERAL_SPEECH"
  • require_human "verify_intended_stance"

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-009",
  "domain": "transcript",
  "priority": 88,
  "hard": true,
  "logic": "all",
  "when": [
    {
      "path": "transcript.irony_or_sarcasm_material",
      "op": "eq",
      "value": true
    }
  ],
  "then": [
    {
      "op": "add_flag",
      "value": "NONLITERAL_SPEECH"
    },
    {
      "op": "require_human",
      "value": "verify_intended_stance"
    }
  ],
  "rationale": "Literal transcription can misrepresent ironic or sarcastic speech.",
  "tags": [
    "tone"
  ]
}

This rule as JSON → · Evaluate a context →