# DeferredAction

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/app/DeferredAction)

An action deferred until the current busy state resolves.

## Signature

```python
DeferredAction(
    self,
    *,
    kind: DeferredActionKind,
    execute: Callable[[], Awaitable[None]],
)
```

## Constructors

```python
__init__(
    self,
    *,
    kind: DeferredActionKind,
    execute: Callable[[], Awaitable[None]],
) -> None
```

| Name | Type |
|------|------|
| `kind` | `DeferredActionKind` |
| `execute` | `Callable[[], Awaitable[None]]` |


## Properties

- `kind`
- `execute`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/a9e6e4f7ad7fe161dd9affc3d74bb19784aca70b/libs/cli/deepagents_cli/app.py#L355)