Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zaby Python SDK

Python SDK for the Zaby Agentic OS.

Install

pip install zaby-sdk

Configure

from zaby import configure_zaby

configure_zaby(environment="production")

Server SDK

from zaby import Zaby

zaby = Zaby(api_key="zaby_pk_...", access_token="...")

app = await zaby.external_apps.create(name="Acme Web", slug="acme-web")

Runtime SDK

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)

Development

pip install -e ".[test]"
pytest

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages