From 1a8445f2b3d9c2009c12997128800d2755a8053f Mon Sep 17 00:00:00 2001 From: Shreyas Karnik <311217+shreyaskarnik@users.noreply.github.com> Date: Sat, 9 Dec 2023 22:46:33 +0000 Subject: [PATCH] Fix typo in readme for valid syntax in example code. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f3c37a782..d135caf67d 100644 --- a/README.md +++ b/README.md @@ -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. )