---
title: "Usage"
manual: "AI Cowriter for TYPO3"
version: "main"
permalink: "https://docs.typo3.org/permalink/netresearch/t3-cowriter:usage@main"
source: "Usage/Index.rst"
rendered: "2026-09-24T09:13:18+00:00"
---

# Usage {#usage}

## Using the AI Cowriter {#using-the-ai-cowriter}

Once the extension is installed and configured:

1.  Open any content element with a rich text field in the TYPO3 backend
1.  You will see a new AI Cowriter button in the CKEditor toolbar

![CKEditor toolbar with Cowriter button](../Images/CowriterToolbarButton.png)

1.  Optionally select the text you want to process (or leave empty to use
    the full content element)
1.  Click the Cowriter button — a dialog opens

## Task-based dialog {#task-based-dialog}

![Cowriter task dialog](../Images/CowriterDialogCropped.png)

The Cowriter dialog lets you choose what to do with your content:

-   ****Task selection****

    Choose from predefined tasks like "Improve Text", "Summarize",
    "Extend / Elaborate", "Fix Grammar & Spelling", or translations.
    Each task has a description shown below the dropdown. You can also
    select "Custom instruction" to write a freeform prompt.

-   ****Context scope****

    Control how much context the AI receives:

    -   **Selection** — only the highlighted text (pre-selected when
        you have a selection)
    -   **Full content** — the entire editor content
    -   **Content element** — the full tt_content record
    -   **Page content** — all content on the current page
    -   **Parent page** / **Grandparent page** — include ancestor
        page content for broader context

    Options that require a record context (Content element and above)
    are disabled when the record cannot be detected.

-   ****Reference pages** (optional)**

    Add pages whose content should be included as reference material.
    Search by title or UID, and specify a relation label (e.g.,
    "style guide", "reference material").

-   ****Additional instructions** (optional)**

    Add ad-hoc rules for the current request, e.g., "Write in formal
    tone" or "Keep sentences short".

-   ****Execute and preview****

    Click **Execute** to send the request to the LLM. The result
    appears in a preview area with model and token usage info. You can
    then:

    -   Click **Insert** to replace the content in the editor
    -   Click **Reset** to clear the result and adjust settings
    -   Click **Execute** again to refine the result (the
        previous output becomes the new input)
    -   Click **Cancel** to discard

## Available tasks {#available-tasks}

[Tasks](https://docs.typo3.org/p/netresearch/nr-llm/main/en-us/Configuration/TaskFields.html#configuration-tasks) are configured in the
nr-llm extension (`tx_nrllm_task` table) with
`category = 'content'`. The following default tasks are provided:

| Task | Description |
| --- | --- |
| Improve Text | Enhance readability and quality while preserving meaning |
| Summarize | Create a concise summary of the content |
| Extend / Elaborate | Add depth, detail, and examples |
| Fix Grammar & Spelling | Correct grammar and spelling with minimal changes |
| Translate to English | Translate content to English |
| Translate to German | Translate content to German |

> [!TIP]
> You can add custom tasks by creating new records in
> **Admin Tools** \> **LLM Management** with
> `category = 'content'`. Use `{{input}}` in the prompt template
> as placeholder for the user's content.

## Inline translation {#inline-translation}

The **Translate** dropdown in the CKEditor toolbar lets you translate
selected text without opening the full dialog.

1.  Select the text you want to translate
1.  Click the Translate button (globe icon) in the toolbar
1.  Choose the target language from the dropdown
1.  A notification confirms the translation is in progress
1.  The selected text is replaced with the translation

Supported languages:

-   German, English, French, Spanish, Italian
-   Dutch, Portuguese, Polish, Japanese, Chinese

The translation uses the default
[LLM configuration](https://docs.typo3.org/p/netresearch/nr-llm/main/en-us/Configuration/ConfigFields.html#configuration-llm) from the
nr-llm extension. Administrators can optionally pass a
`configuration` parameter via the API to route translations
through a specific LLM provider (e.g. DeepL or a dedicated
translation model).

> [!NOTE]
> Inline translation requires text to be selected. A warning
> notification appears if no text is selected. For translating
> entire content elements, use the task-based dialog instead.

> [!TIP]
> Translation preserves HTML formatting. If you select bold or
> linked text, the formatting is maintained in the translated
> output.

## Alt text generation {#alt-text-generation}

The **Vision** button (image icon) generates alt text for images using
LLM vision analysis.

1.  Click on an image in the editor to select it
1.  Click the Vision button in the toolbar
1.  A notification confirms the analysis is in progress
1.  The alt text is set on the image automatically

> [!NOTE]
> You must select an image before clicking the Vision button.
> A warning notification appears if no image is selected.

> [!TIP]
> This is useful for accessibility compliance — generate descriptive
> alt text for images without leaving the editor.

## Tasks shortcut {#tasks-shortcut}

The **Tasks** dropdown (document icon) lets you open the Cowriter
dialog with a specific task pre-selected, skipping the task selection
step.

1.  Click the Tasks button (document icon) in the toolbar
1.  Select a task from the dropdown (tasks are loaded from nr-llm)
1.  The Cowriter dialog opens with the chosen task pre-selected
1.  Review, optionally adjust instructions, and execute

Tasks are loaded once when you first open the dropdown and cached for
the duration of the editing session. If you create new tasks in the
LLM module, reload the page to see them in the dropdown.

> [!NOTE]
> If no tasks with `category = 'content'` are configured, a
> notification guides you to the LLM module to create them.

## Model override {#model-override}

You can override the default model for a specific prompt by using the
`#cw:` prefix followed by the model identifier:

```text
#cw:gpt-5.2-thinking Write a detailed technical analysis of our API architecture
```

The model name must match a model available in your configured LLM provider.
Valid model names follow the pattern: alphanumeric characters, hyphens, underscores,
dots, colons, and forward slashes.

> [!TIP]
> This feature is useful for switching to a reasoning model (like `gpt-5.2-thinking`
> or `claude-opus-4-5`) for complex prompts while keeping a faster model as the default.
