Skip to content

Python — tape-py

The reference SDK. Install:

pip install -e tape/sdk/python

The public surface is small and curated through tape.__init__:

import tape
from tape.adk import durable_app, TapePlugin, TapeSessionService
from tape.connectors.http import HTTPConnector

app, runner = durable_app(
    name="treasury",
    agent=root_agent,
    budget=tape.Budget(usd_cap=50, token_cap=2_000_000),
)

All API pages below are generated from the SDK's own Google-style docstrings via mkdocstrings — code is the source of truth.