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