# ModelStats

> **Class** in `deepagents_cli`

📖 [View in docs](https://reference.langchain.com/python/deepagents-cli/_session_stats/ModelStats)

Token stats for a single model within a session.

## Signature

```python
ModelStats(
    self,
    request_count: int = 0,
    input_tokens: int = 0,
    output_tokens: int = 0,
)
```

## Constructors

```python
__init__(
    self,
    request_count: int = 0,
    input_tokens: int = 0,
    output_tokens: int = 0,
) -> None
```

| Name | Type |
|------|------|
| `request_count` | `int` |
| `input_tokens` | `int` |
| `output_tokens` | `int` |


## Properties

- `request_count`
- `input_tokens`
- `output_tokens`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/829909166606f8a9d9571b00da725845bad08da7/libs/cli/deepagents_cli/_session_stats.py#L18)