From 2c4851bd2e57eaacb9906353ef6edae0290769c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Sun, 31 Dec 2023 18:07:50 -0300 Subject: [PATCH] Updating README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4df7baf31..38140acac 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ writer = Agent( ) # Create tasks for your agents -task1 = Task(description='Investigate the latest AI trends', agent=researcher) +task1 = Task(description='Search and investigate the latest AI trends', agent=researcher) task2 = Task(description='Write a blog post on AI advancements', agent=writer) # Instantiate your crew with a sequential process