Skip to main content

Documentation Index

Fetch the complete documentation index at: https://ockam-agents-image.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

flow = Flow()

flow.add(START, agent)
flow.add(agent, evaluator)
flow.add(evaluator, {"rejected": agent, "accepted": END})

flow = await Flow.start(node, flow)
output = await flow.send(input)