From 652be38584094efecba925da02fc293ad2b37228 Mon Sep 17 00:00:00 2001 From: Jana Peper Date: Thu, 19 Dec 2024 13:57:46 +0100 Subject: [PATCH] feat: add proofread tasktype Signed-off-by: Jana Peper --- developer_manual/digging_deeper/task_processing.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/developer_manual/digging_deeper/task_processing.rst b/developer_manual/digging_deeper/task_processing.rst index ce558c124..280c14735 100644 --- a/developer_manual/digging_deeper/task_processing.rst +++ b/developer_manual/digging_deeper/task_processing.rst @@ -110,6 +110,11 @@ The following built-in task types are available: * ``tone``: ``Enum`` * Output shape: * ``output``: ``Text`` + * ``'core:text2text:proofread'``: This task type is for proofreading a text, checking it for grammar and spelling mistakes. It is implemented by ``\OCP\TaskProcessing\TaskTypes\TextToTextProofread`` + * Input shape: + * ``input``: ``Text`` + * Output shape: + * ``output``: ``Text`` Task types can be disabled in the AI admin settings so they are not available for the Assistant or other apps even if they are implemented. All implemented Task types are enabled by default.