Skip to content

Commit

Permalink
Merge branch 'main' into refactor/structure-custom-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Thytu authored Jan 3, 2025
2 parents ac19289 + cb32d00 commit 67721e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ cython_debug/
*.pickle
*.pkl

.DS_Store
*.dill
*.pkl

# VS Code
*.code-workspace
.DS_Store
2 changes: 1 addition & 1 deletion agentarium/Agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def dump(self) -> dict:
return {
"agent_id": self.agent_id,
"agent_informations": self.agent_informations,
"interactions": [interaction.dump() for interaction in self._interaction_manager._agent_private_interactions[self.agent_id]],
"interactions": [interaction.dump() for interaction in self._interaction_manager.get_agent_interactions(self)],
}

def __str__(self) -> str:
Expand Down

0 comments on commit 67721e2

Please sign in to comment.