# OffloadThresholdNotMet

> **Class** in `deepagents_code`

📖 [View in docs](https://reference.langchain.com/python/deepagents-code/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/a98f0dfa8d534d8a1885b524632400e52db22ac6/libs/code/deepagents_code/offload.py#L62)