# 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/398d6cc59d4cf81ab23c09f037e9f521c3fedcd6/libs/prebuilt/langgraph/prebuilt/interrupt.py#L29)