# A classifier that measures the accuracy of the translated text. Given a text pair [text1, text2], the classifier outputs 't' if the translation is faithful and accurate, 'f' otherwise. Endpoint: POST /text/translate/accuracy Version: 2025-08-18T18:01:56Z Security: api_key ## Request fields (application/json): - `text1` (string, required) The text content with UTF-8 text representation - `text2` (string, required) The text content with UTF-8 text representation - `lang1` (string) The language code for the text1. - `lang2` (string) The language code for the text2. - `domain` (any) The content domain to be used for additional context. - `ishtml` (boolean) A boolean flag that should be set to true if text is in HTML markup. - `explain` (boolean) A boolean flag that should be set to true if an explanation for the label is required. - `cache` (boolean) A boolean flag that utilizes a simple caching scheme as an optimization for duplicates in input.. - `random` (number) Controls the amount of randomness in the generated text. Lowering this will result in the output to be more deterministic. - `model` (string) The generative model to use. Enum: "gpt4-o", "gpt4-o-mini", "gpt4", "gpt4-t", "o1", "o1-mini"