# ActionRequest

> **Class** in `langgraph.prebuilt`

📖 [View in docs](https://reference.langchain.com/python/langgraph.prebuilt/interrupt/ActionRequest)

Represents a request for human action within the graph execution.

Contains the action type and any associated arguments needed for the action.

## Signature

```python
ActionRequest()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    action: str,
    args: dict,
)
```

| Name | Type |
|------|------|
| `action` | `str` |
| `args` | `dict` |


## Properties

- `action`
- `args`

## ⚠️ Deprecated

ActionRequest has been moved to `langchain.agents.interrupt`. Please update your import to `from langchain.agents.interrupt import ActionRequest`.

---

[View source on GitHub](https://github.com/langchain-ai/langgraph/blob/3614e88c58af63f597764218646e85c49952b2da/libs/prebuilt/langgraph/prebuilt/interrupt.py#L29)