Bow Tie Kreative VIDEO Grammar

Production rules · Transcript

TXT-014

Soft rule priority 84 domain: transcript language

Rationale

Wrong language identification corrupts transcription and captioning.

IF — conditions (all must hold)

  • transcript.language_confidence lt 0.8

THEN — actions

  • add_flag "LANGUAGE_UNCERTAIN"
  • require_human "verify_language_or_translation"

This is a soft rule: when it matches it flags, proposes or annotates, but never blocks on its own.

Full record

rules/production_rules.json
{
  "id": "TXT-014",
  "domain": "transcript",
  "priority": 84,
  "hard": false,
  "logic": "all",
  "when": [
    {
      "path": "transcript.language_confidence",
      "op": "lt",
      "value": 0.8
    }
  ],
  "then": [
    {
      "op": "add_flag",
      "value": "LANGUAGE_UNCERTAIN"
    },
    {
      "op": "require_human",
      "value": "verify_language_or_translation"
    }
  ],
  "rationale": "Wrong language identification corrupts transcription and captioning.",
  "tags": [
    "language"
  ]
}

This rule as JSON → · Evaluate a context →