Skip to content

Basic Example

Before getting started, ensure that you have:

The following example shows how to create a simple Task Agent. to change the priority of each task before moving it to the next stage of the Workflow.

Tip

We also provide more detailed Task Agent examples and editor agent examples.

1. Create Encord Project

Create a Project in Encord containing the following Workflow with an agent stage.

Project Workflow

The purple node in the Workflow is an agent node named pre-label. It has a single pathway called annotate that moves tasks to the next stage in the Workflow.

Copy the Project ID in the top left of the Project page.

Tip

After authenticating, you can check if your existing Project has any agent nodes by running this command:

encord-agents print agent-nodes <your_project_hash>
If the project has agent nodes in the Workflow, you should see a list similar to this:
AgentStage(title="pre-label", uuid="b9c1363c-615f-4125-ae1c-a81e19331c96")
AgentStage(title="evaluate", uuid="28d1bcc9-6a3a-4229-8c06-b498fcaf94a0")

2. Define the Agent

In the directory you created for your agents, create a Python file. In this example we use agent.py.

Copy paste the following template in to the Python file:

agent.py
from encord.objects import LabelRowV2
from encord_agents.tasks import Runner

runner = Runner(project_hash="<your_project_hash>")

@runner.stage(stage="pre-label")
def my_agent_logic(lr: LabelRowV2) -> str:
    # ...
    return "annotate"

if __name__ == "__main__":
    runner.run()

The my_agent_logic function takes a LabelRowV2 instance belonging to a task currently in the "pre-label" agent stage. The agent then returns the name of the pathway the task should follow once completed.

We must define how this data is handled. In this example, we keep it simple by assigning priority based on the file name. If the file name contains "london", it gets assigned a high priority; otherwise, it gets assigned low priority.

@runner.stage(stage="pre-label")
def my_agent_logic(lr: LabelRowV2) -> str:
    lr.set_priority(priority=float("london" in lr.data_title))
    return "annotate"

Too simple?
If the example is too simple, see the task examples to find something more relevant to your use case.

3. Run the Agent

The Agent must be run in order for tasks to be moved on to the next Workflow stage.

Run the agent by executing the following command:

python agent.py