***

title: description
slug: /reference/typescript/agents/data-map/description
description: Alias for purpose — sets the tool description shown to the AI.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

[ref-datamap]: /docs/server-sdks/reference/typescript/agents/data-map

Alias for [`purpose`](/docs/server-sdks/reference/typescript/agents/data-map/purpose).
Sets the human-readable description of the tool shown to the AI.

## **Parameters**

<ParamField path="description" type="string" required={true} toc={true}>
  A human-readable description of the tool.
</ParamField>

## **Returns**

[`DataMap`][ref-datamap] -- Self for method chaining.

## **Example**

```typescript {4}
import { DataMap } from '@signalwire/sdk';

const dm = new DataMap('get_weather');
dm.description('Look up current weather for a city');
```