From 6031a654a3f4d39dbbe31ab4a029bc057d13bf04 Mon Sep 17 00:00:00 2001 From: Manuel Soria Date: Fri, 17 Nov 2023 15:11:31 -0300 Subject: [PATCH 1/2] fix typo in quickstart snippet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a2d7e097..8acfa0bae 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ researcher = Agent( writer = Agent( role='Writer', goal='Create engaging content', - backstory="You're a famous technical writer, specialized on writing data related content" + backstory="You're a famous technical writer, specialized on writing data related content", verbose=True ) From 7ec8beaf7ee27b5590e440b520c0eaf14b225ddb Mon Sep 17 00:00:00 2001 From: Manuel Soria Date: Fri, 17 Nov 2023 15:13:31 -0300 Subject: [PATCH 2/2] another missing comma --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8acfa0bae..cf20bd463 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,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 arebeing worked on + verbose=True, # Crew verbose more will let you know what tasks arebeing 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. )