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()