You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've spun up my world using poetry run world --turbo and after letting the world run for a while all agents seem to stop and I get this error message:
Traceback (most recent call last):
File "/Users/mohayat/projects/GPTeam/src/main.py", line 46, in run_world_async
await world.run()
File "/Users/mohayat/projects/GPTeam/src/world/base.py", line 113, in run
await asyncio.gather(*tasks)
File "/Users/mohayat/projects/GPTeam/src/world/base.py", line 101, in run_agent_loop
await self.run_next_agent()
File "/Users/mohayat/projects/GPTeam/src/world/base.py", line 96, in run_next_agent
await agent.run_for_one_step()
File "/Users/mohayat/projects/GPTeam/src/agent/base.py", line 1072, in run_for_one_step
await self._do_first_plan()
File "/Users/mohayat/projects/GPTeam/src/agent/base.py", line 973, in _do_first_plan
await self._act(current_plan)
File "/Users/mohayat/projects/GPTeam/src/agent/base.py", line 876, in _act
if plan.related_message
^^^^^^^^^^^^^^^^^^^^
AttributeError: 'LLMSinglePlan' object has no attribute 'related_message'
I've tried making my changes locally but it keeps running into the same issue. Any advice?
The text was updated successfully, but these errors were encountered:
this fix got rid of the error on my end, but I still run into the encoding errors you mentioned in the other thread, trying to get to the bottom of that.
I've spun up my world using
poetry run world --turbo
and after letting the world run for a while all agents seem to stop and I get this error message:I've tried making my changes locally but it keeps running into the same issue. Any advice?
The text was updated successfully, but these errors were encountered: