Workflows are the core of AgentifyMe. They are high-level containers that encapsulate and orchestrate the execution of tasks and agents. They provide a structured way to manage tasks, agents, and tools.
pythonfrom agentifyme import Workflow
@workflow(name="my-workflow", description="My workflow")
def my_workflow():
print("Hello, world!")