From eaa6ed85e1a6f6aaadaf1608e03a60b062a38656 Mon Sep 17 00:00:00 2001 From: Richard Beales Date: Sun, 23 Apr 2023 09:07:14 +0100 Subject: [PATCH] Fix to prompt generator - "Ensure the response can beparsed" (#2980) --- autogpt/prompts/generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt/prompts/generator.py b/autogpt/prompts/generator.py index c9a441d8..282b9d72 100644 --- a/autogpt/prompts/generator.py +++ b/autogpt/prompts/generator.py @@ -151,5 +151,5 @@ class PromptGenerator: f"{self._generate_numbered_list(self.performance_evaluation)}\n\n" "You should only respond in JSON format as described below \nResponse" f" Format: \n{formatted_response_format} \nEnsure the response can be" - "parsed by Python json.loads" + " parsed by Python json.loads" )