From bf98791330b0d59815cc614a64874b6b54558e28 Mon Sep 17 00:00:00 2001 From: GyDi Date: Sun, 16 Apr 2023 15:50:26 +0800 Subject: [PATCH] fix: add necessary space to the prompt --- autogpt/promptgenerator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt/promptgenerator.py b/autogpt/promptgenerator.py index 82dba8e0..4f518615 100644 --- a/autogpt/promptgenerator.py +++ b/autogpt/promptgenerator.py @@ -132,5 +132,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" )