# AgentConfig

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/deploy/config/AgentConfig)

`[agent]` section — core agent identity.

## Signature

```python
AgentConfig(
    self,
    name: str,
    description: str = '',
    model: str = 'anthropic:claude-sonnet-4-6',
)
```

## Constructors

```python
__init__(
    self,
    name: str,
    description: str = '',
    model: str = 'anthropic:claude-sonnet-4-6',
) -> None
```

| Name | Type |
|------|------|
| `name` | `str` |
| `description` | `str` |
| `model` | `str` |


## Properties

- `name`
- `description`
- `model`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/64d45f67c86edb4df2ced0e7b82f1a8fd158ec8c/libs/cli/deepagents_cli/deploy/config.py#L66)