Skip to content

Commit

Permalink
Fix order of Config.save_task_output args (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
eraviart authored Apr 23, 2023
1 parent 47c7f40 commit fcb9cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AgentLLM.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def initialize_task_list(self):
self.task_list = deque([])

def update_output_list(self, output, task_id=None):
self.CFG.save_task_output(self.agent_name, task_id, output)
self.CFG.save_task_output(self.agent_name, output, task_id)

def display_objective_and_initial_task(self):
self.update_output_list(f"Objective: {self.primary_objective}")
Expand Down

0 comments on commit fcb9cc0

Please sign in to comment.