AlternatingGameEndsOnTag dose not have 'end_tag'
When I try to run "[NegotiationArena] Scenario Creation Tutorial" I got this error at this code block
a1 = ChatGPTAgent( model="gpt-4-1106-preview", agent_name=AGENT_ONE, ) a2 = ChatGPTAgent( model="gpt-4-1106-preview", agent_name=AGENT_TWO, )
c = SimpleGame( players=[a1, a2], iterations=6, player_starting_resources=[ Resources({"X": 25, "Y": 5}), Resources({"X": 0, "Y": 0}), ], player_social_behaviour=[ "", "", ], player_roles=[ f"You are {AGENT_ONE}, start by making a proposal.", f"You are {AGENT_TWO}, start by accepting a trade.", ], log_dir="./.logs/simple_game/", )
c.run()
TypeError Traceback (most recent call last)
TypeError: AlternatingGameEndsOnTag.init() got an unexpected keyword argument 'end_tag'