we are creating a product inventory solution where each agent having their own specific tasks.
Agent 1 : List the products from api
Agent 2 : Adding a product to cart using api
Agent 3 : Web search product for best price
Agent 4 : Billing the cart items into database
We are trying to create a manager agent which will execute the task of specific agent based on the user prompt / query. But manager agent always runs the agent tasks sequentially one after another.
please find the crew below -
return Crew(
agents=self.agents,
tasks=self.tasks,
manager_agent=self.manager_agent(),
verbose=True,
process=Process.hierarchical
)
Please help me with the solution.