Skip to content

AI agents

In SERA, there are 3 AI agents:-


Planner Agent

The Planner Agent serves as the strategic brain of SERA. It decomposes complex goals into logical steps that the Executor Agent can implement.

  • Understand the user’s natural language query.
  • Generate a sequence of actionable steps using reasoning and context.
  • Collaborate with the Executor to verify feasibility and execution flow.
  • Revise plans whenever needed.

Executor Agent

The Executor Agent acts as the hands of SERA, performing the actual web automation tasks defined by the Planner.

  • Execute each step from the Planner’s plan using browser automation.
  • Navigates the browser in real time.

Supervisor Agent

It is responsible for validation of the completion of step and termination of the overall process.


SERA uses Autogen(Microsoft’s agent orchestration framework) agents alongwith manual orchestration to encapsulate the three agents.

Key Points:

  • Simplifies multi-agent coordination.
  • Enables scalable deployment of AI-driven automation.