(self)
| 51 | is_join: bool = False |
| 52 | |
| 53 | async def __call__(self) -> Any: |
| 54 | log("running task") |
| 55 | x = await self.tool(*self.args) |
| 56 | log("done task") |
| 57 | return x |
| 58 | |
| 59 | def get_though_action_observation( |
| 60 | self, include_action=True, include_thought=True, include_action_idx=False |