From 885d81b354ccf704aa815cdc16f9d2438ea7d2b4 Mon Sep 17 00:00:00 2001 From: HDKiller Date: Sat, 15 Apr 2023 16:55:32 +0000 Subject: [PATCH] remove "please" from prompt in text.py --- autogpt/processing/text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogpt/processing/text.py b/autogpt/processing/text.py index 24e3bb858..e78fef1b0 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.", }