Orkestra
Orkestra Server
Expose workflows as HTTP endpoints with auto-generated Swagger and ReDoc docs.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
from orkestra import Orkestra, OrkestraServer
client = Orkestra()
wf = client.Workflow().add(client.Agent(...))
server = OrkestraServer(client)
server.add_workflow(
endpoint_name="summarize",
workflow=wf,
summary="Summarize Topic",
description="Researches a topic and summarizes the findings.",
)
server.run() # Visit /docs or /redoc
server.add_workflow(
endpoint_name="summarize_auto",
workflow=wf,
)