Update Tasks.md (#240)

Fix example code of missing comma.

Co-authored-by: João Moura <joaomdmoura@gmail.com>
This commit is contained in:
sebestyenmiklos1
2024-04-01 01:40:51 +02:00
committed by GitHub
parent 4f3144f718
commit cb63c7360b

View File

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