ποΈPlanner
What is Planner?
Planner is one of the important component of any Agent framework, which enables the agent to divide a task into multiple subtasks based on the requirement. We call this step as Task Decomposition.
The Planner
in the OpenAGI
contains essential modules and components that handle task planning and decomposition. These components are designed to work together to break down complex tasks into manageable sub-tasks, which are then executed by Admin.
Below is a detailed explanation of the attributes and functionality of the modules within the Planner
.
Attributes
Code Snippet
The primary component, TaskPlanner
, allows for the decomposition of tasks into smaller sub-tasks and the planning of their execution. This modular approach facilitates efficient task management and execution within the OpenAGI framework.
Below we have shown how one can initiate and run using query.
Last updated