# OffloadThresholdNotMet

> **Class** in `deepagents_cli`

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

Offload was a no-op — conversation is within the retention budget.

## Signature

```python
OffloadThresholdNotMet(
    self,
    conversation_tokens: int,
    total_context_tokens: int,
    context_limit: int | None,
    budget_str: str,
)
```

## Constructors

```python
__init__(
    self,
    conversation_tokens: int,
    total_context_tokens: int,
    context_limit: int | None,
    budget_str: str,
) -> None
```

| Name | Type |
|------|------|
| `conversation_tokens` | `int` |
| `total_context_tokens` | `int` |
| `context_limit` | `int \| None` |
| `budget_str` | `str` |


## Properties

- `conversation_tokens`
- `total_context_tokens`
- `context_limit`
- `budget_str`

---

[View source on GitHub](https://github.com/langchain-ai/deepagents/blob/a827cddf72d72e4b17921b8eb445a3bfb0511cb4/libs/cli/deepagents_cli/offload.py#L62)