# HumanInterruptConfig

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

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

Configuration that defines what actions are allowed for a human interrupt.

This controls the available interaction options when the graph is paused for human input.

## Signature

```python
HumanInterruptConfig()
```

## Extends

- `TypedDict`

## Constructors

```python
__init__(
    allow_ignore: bool,
    allow_respond: bool,
    allow_edit: bool,
    allow_accept: bool,
)
```

| Name | Type |
|------|------|
| `allow_ignore` | `bool` |
| `allow_respond` | `bool` |
| `allow_edit` | `bool` |
| `allow_accept` | `bool` |


## Properties

- `allow_ignore`
- `allow_respond`
- `allow_edit`
- `allow_accept`

## ⚠️ Deprecated

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

---

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