Adding verbose option to README.md

This commit is contained in:
Joao Moura
2023-11-14 13:37:09 -03:00
parent 682d87e93e
commit 699820287f

View File

@@ -26,12 +26,14 @@ from crewai import Agent, Task, Crew, Process
researcher = Agent( researcher = Agent(
role='Researcher', role='Researcher',
goal='Discover new insights', goal='Discover new insights',
backstory="You're a world cvlass researcher working on a amjor data science company" backstory="You're a world class researcher working on a amjor data science company",
verbose=True
) )
writer = Agent( writer = Agent(
role='Writer', role='Writer',
goal='Create engaging content', goal='Create engaging content',
backstory="You're a famous technical writer, specialized on writing data related content" backstory="You're a famous technical writer, specialized on writing data related content"
verbose=True
) )
# Create tasks for your agents # Create tasks for your agents