Skip to content

Commit

Permalink
Fix call to plugin.post_planning (Significant-Gravitas#3414)
Browse files Browse the repository at this point in the history
Co-authored-by: Nicholas Tindle <nick@ntindle.com>
  • Loading branch information
2 people authored and Danny committed May 5, 2023
1 parent eb89df1 commit 2a30018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogpt/agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 != {}:
Expand Down

0 comments on commit 2a30018

Please sign in to comment.