---
title: "Selection awareness"
description: "Make the AI agent aware of the selected content in the editor."
canonical_url: "https://tiptap.dev/docs/content-ai/capabilities/agent/features/selection-awareness"
---

# Selection awareness

Make the AI agent aware of the selected content in the editor.

Selection awareness allows the AI agent to know the selected content in the editor. It helps the AI agent understand the user's request and make precise edits to the selection only.

To activate selection awareness, set the `addSelection` option to `true`. This will send the selected content as [context](https://tiptap.dev/docs/content-ai/capabilities/agent/features/context.md) to the AI agent.

```ts
provider.addUserMessage('Summarize the selected document', {
  addSelection: true, // Defaults to false
})
```
