bugfix in python script sample code (#787)

Add the line:

process = Process.sequential
This commit is contained in:
gpu7
2024-06-30 21:23:06 -06:00
committed by GitHub
parent 29e72b6ff5
commit 64ec4eb1e6

View File

@@ -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!