Nicolas Jamal
Nicolas Jamal
@AidanShipperley faced the same issue. Were you able to resolve it?
@AidanShipperley I added exception handling and sleep for 1 second. It worked for me..
Replace the `_act` method inside researcher.py with the following: ```python async def _act(self) -> Message: logger.info(f"{self._setting}: to do {self.rc.todo}({self.rc.todo.name})") todo = self.rc.todo msg = self.rc.memory.get(k=1)[0] if isinstance(msg.instruct_content, Report): instruct_content =...