Framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks.
What I am expecting is the out put of task1 and task2 is the 2 numerical values and manger agent can get the response from task_1 and task_2 and generate the final answer (another numerical value based on two indidual task output) using some calculations.
But what I could see from the console that task_1 and task_2 is getting executed and numerical values are generating. But the manager agent is not involving next and the final numerical value is not generating(even I put allow_delegation=True for manager agent) .
What is wrong in my configuration?
I have the crew in the following format Agents
Tasks
crew file
What I am expecting is the out put of task1 and task2 is the 2 numerical values and manger agent can get the response from task_1 and task_2 and generate the final answer (another numerical value based on two indidual task output) using some calculations. But what I could see from the console that task_1 and task_2 is getting executed and numerical values are generating. But the manager agent is not involving next and the final numerical value is not generating(even I put allow_delegation=True for manager agent) . What is wrong in my configuration?