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 <[email protected]>
  • Loading branch information
Androbin and ntindle authored May 4, 2023
1 parent a48f26c commit cb97f5c
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 cb97f5c

Please sign in to comment.