Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 856 Bytes

File metadata and controls

38 lines (27 loc) · 856 Bytes

agentix-deployment-daytona

Daytona 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.

Install

pip install agentix-deployment-daytona

Set DAYTONA_API_KEY in the environment.

Use

agentix deploy daytona --image my-agent:0.1.0
from agentix import RuntimeClient, SandboxConfig
from agentix.deployment.daytona import DaytonaDeployment

async with DaytonaDeployment().lifecycle(
    SandboxConfig(image="my-agent:0.1.0")
) as sandbox:
    async with RuntimeClient(sandbox.runtime_url) as c:
        ...

License

MIT — see LICENSE.