E2B deployment backend for Agentix.
Status: CLI surface in place; the managed-sandbox integration is still a stub. Tracking parity with
DockerDeployment(live runtime URL,lifecycle()context manager) before promoting to a 1.0 release.
pip install agentix-deployment-e2bSet E2B_API_KEY in the environment.
agentix deploy e2b --image my-agent:0.1.0from agentix import RuntimeClient, SandboxConfig
from agentix.deployment.e2b import E2BDeployment
async with E2BDeployment().lifecycle(
SandboxConfig(image="my-agent:0.1.0")
) as sandbox:
async with RuntimeClient(sandbox.runtime_url) as c:
...MIT — see LICENSE.