From 64ec4eb1e63aa92fa5fbd02b1bbb2f60c8cd6c4d Mon Sep 17 00:00:00 2001 From: gpu7 <147001868+gpu7@users.noreply.github.com> Date: Sun, 30 Jun 2024 21:23:06 -0600 Subject: [PATCH] bugfix in python script sample code (#787) Add the line: process = Process.sequential --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bf10e2a48..a59fe544b 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,7 @@ crew = Crew( agents=[researcher, writer], tasks=[task1, task2], verbose=2, # You can set it to 1 or 2 to different logging levels + process = Process.sequential ) # Get your crew to work!