# OutputChunk

> **Class** in `langsmith`

📖 [View in docs](https://reference.langchain.com/python/langsmith/sandbox/_models/OutputChunk)

A single chunk of streaming output from command execution.

## Signature

```python
OutputChunk(
    self,
    stream: str,
    data: str,
    offset: int,
)
```

## Constructors

```python
__init__(
    self,
    stream: str,
    data: str,
    offset: int,
) -> None
```

| Name | Type |
|------|------|
| `stream` | `str` |
| `data` | `str` |
| `offset` | `int` |


## Properties

- `stream`
- `data`
- `offset`

---

[View source on GitHub](https://github.com/langchain-ai/langsmith-sdk/blob/6a74bf5af9e542d8065af8edca54b2448f430916/python/langsmith/sandbox/_models.py#L509)