(self, *_: Any, **__: Any)
| 39 | self.log.append((self.label, "on_handoff")) |
| 40 | |
| 41 | async def on_tool_start(self, *_: Any, **__: Any) -> None: |
| 42 | self.log.append((self.label, "on_tool_start")) |
| 43 | |
| 44 | async def on_tool_end(self, *_: Any, **__: Any) -> None: |
| 45 | self.log.append((self.label, "on_tool_end")) |
no outgoing calls
no test coverage detected