Skip to content

Commit

Permalink
Merge pull request crewAIInc#7 from shreyaskarnik/main
Browse files Browse the repository at this point in the history
Fix typo in readme for valid syntax in example code.
  • Loading branch information
joaomdmoura authored Dec 18, 2023
2 parents d70cfd6 + 1a8445f commit 4cd146c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,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.
)

Expand Down

0 comments on commit 4cd146c

Please sign in to comment.