Learn more about Mintlify
Enter your email to receive updates about new features and product releases.
Define steps in your workflow
from agno.workflow import Step
step = Step(
agent=my_agent,
name="Research",
input_schema=ResearchInput,
output_schema=ResearchOutput
)
def process_data(input: dict) -> dict:
return {"processed": input["raw"]}
step = Step(
function=process_data,
name="Process"
)
step = Step(
team=my_team,
name="Collaborate"
)