Writing Workflows

Writing Workflows


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.

from agentifyme import Workflow

@workflow(name="my-workflow", description="My workflow")
def my_workflow():
    print("Hello, world!")