(self, *_: Any, **__: Any)
| 30 | self.log.append((self.label, "on_llm_end")) |
| 31 | |
| 32 | async def on_agent_start(self, *_: Any, **__: Any) -> None: |
| 33 | self.log.append((self.label, "on_agent_start")) |
| 34 | |
| 35 | async def on_agent_end(self, *_: Any, **__: Any) -> None: |
| 36 | self.log.append((self.label, "on_agent_end")) |
no outgoing calls
no test coverage detected