Fix typo in readme for valid syntax in example code.

This commit is contained in:
Shreyas Karnik
2023-12-09 22:46:33 +00:00
parent 0b9ad08155
commit 1a8445f2b3

View File

@@ -55,7 +55,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 are being worked on
verbose=True, # Crew verbose more will let you know what tasks are being 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.
)