From cb97f5c1010fca4927573281af4116a382a4e804 Mon Sep 17 00:00:00 2001 From: Robin Richtsfeld Date: Thu, 4 May 2023 04:45:00 +0200 Subject: [PATCH] Fix call to `plugin.post_planning` (#3414) Co-authored-by: Nicholas Tindle --- autogpt/agent/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt/agent/agent.py b/autogpt/agent/agent.py index 1c184aff00cc..9130d105c610 100644 --- a/autogpt/agent/agent.py +++ b/autogpt/agent/agent.py @@ -122,7 +122,7 @@ def start_interaction_loop(self): for plugin in cfg.plugins: if not plugin.can_handle_post_planning(): continue - assistant_reply_json = plugin.post_planning(self, assistant_reply_json) + assistant_reply_json = plugin.post_planning(assistant_reply_json) # Print Assistant thoughts if assistant_reply_json != {}: