another missing comma

This commit is contained in:
Manuel Soria
2023-11-17 15:13:31 -03:00
parent 6031a654a3
commit 7ec8beaf7e

View File

@@ -47,7 +47,7 @@ task2 = Task(description='Write a blog post on AI advancements', agent=writer)
crew = Crew(
agents=[researcher, writer],
tasks=[task1, task2],
verbose=True # Crew verbose more will let you know what tasks arebeing worked on
verbose=True, # Crew verbose more will let you know what tasks arebeing worked on
process=Process.sequential # Sequential process will have tasks executed one after the other and the outcome of the previous one is passed as extra content into this next.
)