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.", }