***

title: description
slug: /reference/python/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/python/agents/data-map

[purpose]: /docs/server-sdks/reference/python/agents/data-map/purpose

Alias for [`purpose()`][purpose].
Sets the human-readable description of the tool shown to the AI.

## **Parameters**

<ParamField path="description" type="str" required={true} toc={true}>
  Human-readable description of what this function does.
</ParamField>

## **Returns**

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

## **Example**

```python {4}
from signalwire import DataMap

weather = DataMap("get_weather")
weather.description("Get the current weather for a given city")
```