# DiagnosticSection

> **Class** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/doctor/DiagnosticSection)

A named group of related diagnostic items.

## Signature

```python
DiagnosticSection(
    self,
    title: str,
    items: list[DiagnosticItem] = list(),
)
```

## Constructors

```python
__init__(
    self,
    title: str,
    items: list[DiagnosticItem] = list(),
) -> None
```

| Name | Type |
|------|------|
| `title` | `str` |
| `items` | `list[DiagnosticItem]` |


## Properties

- `title`
- `items`
- `ok`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/e14e0adcbe78565ed3650e7f24b2a775d5437d25/libs/code/deepagents_code/doctor.py#L45)