Python SDK for the Zaby Agentic OS.
pip install zaby-sdkfrom zaby import configure_zaby
configure_zaby(environment="production")from zaby import Zaby
zaby = Zaby(api_key="zaby_pk_...", access_token="...")
app = await zaby.external_apps.create(name="Acme Web", slug="acme-web")from zaby import ZabyRuntime
runtime = ZabyRuntime(token="disposable_token")
run = await runtime.runs.start(input={"message": "Hello"})
async for event in runtime.runs.stream(str(run.run_id)):
print(event)pip install -e ".[test]"
pytest