From c01abc956740afb31f4cc3ae501fcfe6d7098ad9 Mon Sep 17 00:00:00 2001 From: LiuYongFeng Date: Fri, 22 Dec 2023 11:35:06 +0800 Subject: [PATCH] Update README.md Fix the 'SyntaxError: invalid syntax. Perhaps you forgot a comma?' error in this code --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9cf645c5..0708c243f 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ researcher = Agent( role='Researcher', goal='Discover new insights', backstory="You're a world class researcher working on a major data science company", - verbose=True + verbose=True, allow_delegation=False # llm=OpenAI(temperature=0.7, model_name="gpt-4"). It uses langchain.chat_models, default is GPT4 ) @@ -46,7 +46,7 @@ writer = Agent( role='Writer', goal='Create engaging content', backstory="You're a famous technical writer, specialized on writing data related content", - verbose=True + verbose=True, allow_delegation=False )