Updated Creating a Crew and kick it off (markdown)

João Moura
2023-11-14 13:33:41 -03:00
parent 07ea232659
commit 4b63d507d5

@@ -11,16 +11,16 @@ from crewai import Agent
# Create a researcher agent # Create a researcher agent
researcher = Agent( researcher = Agent(
role='Researcher', role='Senior Researcher',
goal='Discover groundbreaking technologies', goal='Discover groundbreaking technologies',
backstory='A curious mind fascinated by cutting-edge innovation and the potential to change the world.' backstory='A curious mind fascinated by cutting-edge innovation and the potential to change the world, you know everything about tech.'
) )
# Create a writer agent # Create a writer agent
writer = Agent( writer = Agent(
role='Writer', role='Writer',
goal='Craft compelling stories about tech discoveries', goal='Craft compelling stories about tech discoveries',
backstory='A creative soul who translates complex tech jargon into engaging narratives for the masses.' backstory='A creative soul who translates complex tech jargon into engaging narratives for the masses, you write using simple words in a friendly and inviting tone that does not sounds like AI.'
) )
``` ```