Welcome to the Orkestra Python SDK. Build multi-agent workflows, chain logic with handlers, get structured outputs with Pydantic, and deploy workflows as API endpoints.
from orkestra import OrkestraServerserver = OrkestraServer(client)server.add_workflow( endpoint_name="summarize", workflow=wf, summary="Summarize topic", description="Researches a topic then summarizes the findings.",)server.run() # Visit /docs or /redoc