From cb63c7360b08bf81d04e9307648b821b967bd4c1 Mon Sep 17 00:00:00 2001 From: sebestyenmiklos1 <155777017+sebestyenmiklos1@users.noreply.github.com> Date: Mon, 1 Apr 2024 01:40:51 +0200 Subject: [PATCH] Update Tasks.md (#240) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix example code of missing comma. Co-authored-by: João Moura --- docs/core-concepts/Tasks.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/core-concepts/Tasks.md b/docs/core-concepts/Tasks.md index e22d37bf6..1d455b8f3 100644 --- a/docs/core-concepts/Tasks.md +++ b/docs/core-concepts/Tasks.md @@ -54,12 +54,12 @@ from crewai import Agent, Task, Crew from crewai_tools import SerperDevTool research_agent = Agent( - role='Researcher', - goal='Find and summarize the latest AI news', - backstory="""You're a researcher at a large company. - You're responsible for analyzing data and providing insights - to the business.""" - verbose=True + role='Researcher', + goal='Find and summarize the latest AI news', + backstory="""You're a researcher at a large company. + You're responsible for analyzing data and providing insights + to the business.""", + verbose=True ) search_tool = SerperDevTool()