From bee1bc8c06f2a2abfe77a266de094ee1728f5595 Mon Sep 17 00:00:00 2001 From: HDKiller Date: Sat, 15 Apr 2023 06:28:14 +0000 Subject: [PATCH] remove "please" from prompt in browser.py --- autogpt/browse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogpt/browse.py b/autogpt/browse.py index 60d33744..00ec7ec3 100644 --- a/autogpt/browse.py +++ b/autogpt/browse.py @@ -145,9 +145,9 @@ def create_message(chunk, question): """Create a message for the user to summarize a chunk of text""" return { "role": "user", - "content": f'"""{chunk}""" Using the above text, please answer the following' + "content": f'"""{chunk}""" Using the above text, answer the following' f' question: "{question}" -- if the question cannot be answered using the' - " text, please summarize the text.", + " text, summarize the text.", }