> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baobun.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Response

> Manage and customize content used by other modules.

<Warning>
  `<>` means an argument is required, `[]` means it's optional
</Warning>

### Viewing content

View an existing custom content.

<CodeGroup>
  ```js Syntax theme={null}
  /content view <response_name>
  ```
</CodeGroup>

* `response_name` (text): required <br />
  The name of the custom content you want to view.

### Creating content

Create a new custom content.

<CodeGroup>
  ```js Syntax theme={null}
  /content create <response_name> <content_type>
  ```
</CodeGroup>

* `response_name` (text): required <br />
  The name you want to assign to the new custom content.
* `content_type` (text): required <br />
  The type of content to create.

### Removing content

Remove an existing custom content.

<CodeGroup>
  ```js Syntax theme={null}
  /content remove <response_name>
  ```
</CodeGroup>

* `response_name` (text): required <br />
  The name of the content you want to remove.

### Changing content type

Change the type of an existing custom content.

<CodeGroup>
  ```js Syntax theme={null}
  /content type <response_name> <content_type>
  ```
</CodeGroup>

* `response_name` (text): required <br />
  The name of the content you want to change.
* `content_type` (text): required <br />
  The content type you want to switch to.

### Setting content message

Set or update the message for a custom content.

<CodeGroup>
  ```js Syntax theme={null}
  /content message <response_name> [message]
  ```
</CodeGroup>

* `response_name` (text): required <br />
  The name of the content you want to set a message for.
* `message` (text): optional <br />
  The message you want to assign to the content.

### Customizing content embed

Customize the embed used for a custom content.

<CodeGroup>
  ```js Syntax theme={null}
  /content embed <response_name>
  ```
</CodeGroup>

* `response_name` (text): required <br />
  The name of the content you want to customize the embed for.
