# ToolGroup

> **Class** in `deepagents_code`

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

A named group of tools sharing a source.

## Signature

```python
ToolGroup(
    self,
    label: str,
    source: ToolSource,
    tools: tuple[ToolEntry, ...],
)
```

## Constructors

```python
__init__(
    self,
    label: str,
    source: ToolSource,
    tools: tuple[ToolEntry, ...],
) -> None
```

| Name | Type |
|------|------|
| `label` | `str` |
| `source` | `ToolSource` |
| `tools` | `tuple[ToolEntry, ...]` |


## Properties

- `label`
- `source`
- `tools`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/2f56309d821db4a0d06ee03959cf842c91b7f228/libs/code/deepagents_code/tool_catalog.py#L57)