diff --git a/autogpt/processing/text.py b/autogpt/processing/text.py index 24e3bb85..e78fef1b 100644 --- a/autogpt/processing/text.py +++ b/autogpt/processing/text.py @@ -126,7 +126,7 @@ def create_message(chunk: str, question: str) -> dict[str, str]: """ 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.", + " summarize the text.", }