Metadata-Version: 2.4
Name: langchain-e2b-selfhost
Version: 0.0.1
Summary: Self-hosted E2B sandbox integration for Deep Agents
Project-URL: Homepage, https://github.com/langchain-ai/deepagents/tree/main/libs/partners/e2b-selfhost
Project-URL: Repository, https://github.com/langchain-ai/deepagents
Project-URL: Documentation, https://github.com/langchain-ai/deepagents/tree/main/libs/partners/e2b-selfhost
License: MIT
License-File: LICENSE
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: <4.0,>=3.11
Requires-Dist: langchain-e2b<0.1.0,>=0.0.1
Description-Content-Type: text/markdown

# langchain-e2b-selfhost

Self-hosted E2B sandbox integration package for Deep Agents.

## Install

```bash
pip install langchain-e2b-selfhost
```

## Usage

```python
from e2b import Sandbox

from langchain_e2b_selfhost import E2BSelfHostedSandbox

sandbox = Sandbox.create()
backend = E2BSelfHostedSandbox(sandbox=sandbox)
result = backend.execute("echo hello")
print(result.output)
```

This package re-exports the production `E2BSandbox` implementation from `langchain-e2b` under the self-hosted package name.
