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.

python
from agentifyme import Workflow @workflow(name="my-workflow", description="My workflow") def my_workflow(): print("Hello, world!")