Hi,
I have a question regarding lab L5_tasks_event_planning.
he builds all the tasks populated with different agents. then he defines the crew like the following:
event_management_crew = Crew(
agents=[venue_coordinator,
logistics_manager,
marketing_communications_agent],
tasks=[venue_task,
logistics_task,
marketing_task],
verbose=True
)
why do we still need to write the agents in the crew when in fact they were already introduced while establishing the tasks ?
what advantage or difference does it bring? I executed the crew statement without the agents and still it created the output.
Mehmet