Text Post Processing — Unique AI Documentation

Text Post Processing

1 min read

Textprocessors

Text processors are used to modify text in some way e.g. turning a sharp s into an ss when translating to german for swiss german readers.

Existing processors

Currently there are two text processors available

  1. Replace sharp s with ss
  2. American to British

Configuration

Default

By default, no post-processing is applied.

Config with post-processing

List of post-processing steps

[
  {
    "name": "Replace sharp s with ss",
    "active": true,
    "applied_to_language_names": ["German"]
  },
  {
    "name": "American to British",
    "active": true,
    "applied_to_language_names": ["English"]
  }
]

Parameter Description

Parameter Description Default Value
name Name of the processor null
active If the processor is used or not false
applied_to_languages The languages that will be processed by this processor. []