You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My intention was like below to separate agent and task:
distributor_agent => task_distributor
q_agent => task_q
a_agent => task_a
I tried this code, manager agent ran all the tasks.
I can still get a right answer if I move each task to each agent's prompt. But I believe separating task & agent has a benefit(and I guess that's why how crew ai designed that way?)
Q1 - can I still have multiple tasks when I use manager agent?
Q2 - Is there any complicated use cases of manager agent?
Even the crewai's researcher & writer & manager sample code doesn't run properly when I ran it, the task was done by researcher & manager only.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
crew = Crew(
agents=[distributor_agent, q_agent, a_agent],
tasks=[overall_task, task_distributor, task_q, task_a],
)
My intention was like below to separate agent and task:
distributor_agent => task_distributor
q_agent => task_q
a_agent => task_a
I tried this code, manager agent ran all the tasks.
I can still get a right answer if I move each task to each agent's prompt. But I believe separating task & agent has a benefit(and I guess that's why how crew ai designed that way?)
Q1 - can I still have multiple tasks when I use manager agent?
Q2 - Is there any complicated use cases of manager agent?
Even the crewai's researcher & writer & manager sample code doesn't run properly when I ran it, the task was done by researcher & manager only.
Beta Was this translation helpful? Give feedback.
All reactions